-
Notifications
You must be signed in to change notification settings - Fork 228
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TensorOps kernels refactoring #3346
base: develop
Are you sure you want to change the base?
Conversation
const void* alpha0_, | ||
const void* alpha1_, | ||
const void* beta_, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Check this conversation
https://github.com/ROCm/MIOpen/pull/3346/files#r1824480257
Probably alpha0/1
must not be a part of the PD, ideally beta
as well, but right now it has to be there..
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would a bool marking if alpha0/... has a "default" value meaning no additional work required suffice?
size_t Aoffset; | ||
size_t Boffset; | ||
size_t Coffset; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need to handle this internally? IIRC it should be possible to externally pass any subtensor via changing pointer+descriptor. If so this is a duplicated functionality
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that the main point is the pointer is void *
and actual type is an miopen_Type_t
enum. That's why you can't just add them without special helpers.
const void* alpha0_, | ||
const void* alpha1_, | ||
const void* beta_, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would a bool marking if alpha0/... has a "default" value meaning no additional work required suffice?
…arate some of them into unique solvers and tidy the code
Please provide a comparison of the average only CPU time (new solver vs old api) measurements for 100 calls with same problem and the costs associated with the first call of the unique problem configuration. |
Here is a comparison of average host time between old and new structure
New structure is faster on average for 20ms for first runs and it is slower for 0.1ms for other 100 calls or 0.001ms per call |
The results are very strange; we need to obtain the experiment protocol. How was the program executed, and what was used for measurement? |
I have talked with @CAHEK7 and he suggested to remove compilation time from first run time and to enable kernel profiling so here are new results that I have got
This is part of code that I changed in tensor_ops test for this performance testing ` handle.EnableProfiling(true);
I was switching between OpTensor and OpTensor2 to run tests for old and new structure, also only test case for one kernel was running each time. |
…tentially boost performance on host side
This is draft PR for refactoring tensor ops kernels to solver structure, so far only Op1dTensorGeneric kernel is switched