You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use cudnnFindConvolutionForwardAlgorithmEx -> miopenFindConvolutionForwardAlgorithm, where an additional bool arg is to be added at the end as a const true, as a case study.
The text was updated successfully, but these errors were encountered:
emankov
changed the title
[HIPIFY][feature] Add a new function call transformation "additional const by value arg"
[HIPIFY][feature] Add a new function call transformation type "additional const by value arg"
Apr 1, 2023
emankov
added a commit
to emankov/HIPIFY
that referenced
this issue
Apr 2, 2023
…Part 10
+ Add a new function call transformation type "additional const by value arg":
the arg is added at ArgNum (starting from 0), if ArgNum >= `ArgNumCount` the arg is added at the end as the last function arg
+ Added a const argument `true` for `bool exhaustiveSearch` as the last argument in the `miopenFindConvolutionForwardAlgorithm` function calls
+ Updated the synthetic test `cudnn2miopen.cu` accordingly
Use
cudnnFindConvolutionForwardAlgorithmEx
->miopenFindConvolutionForwardAlgorithm
, where an additional bool arg is to be added at the end as a consttrue
, as a case study.The text was updated successfully, but these errors were encountered: