-
Notifications
You must be signed in to change notification settings - Fork 232
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? |
@randyspauldingamd @BrianHarrisonAMD I guess it's a final review round. |
I think we need to coordinate these changes with #3402 to ensure const is correct after both are merged. |
If you were asking for feedback, I'd be fine with a follow-up (in a timely fashion). @novakovicdj, are you going to be joining our scrum anytime soon? If not, perhaps we could ask @DrizztDoUrden to add a ticket and coordinate with you. |
Yea I think it depends on what @DrizztDoUrden would like to do. |
It can be fixed later. It's quite big and require extra effort for the maintenance. |
Probably not in a short-term perspective, there is some bureaucracy involved. |
Greetings @novakovicdj! Can you update this branch with develop and resolve the conflicts? |
Hi @BrianHarrisonAMD @BradPepersAMD, |
Ill kick off another CI run, and we can merge once it passes. |
Looks like it failed, but seems unrelated. |
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.
lgtm
This is draft PR for refactoring tensor ops kernels to solver structure, so far only Op1dTensorGeneric kernel is switched