Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into cderb/gtest_package
Browse files Browse the repository at this point in the history
  • Loading branch information
cderb committed Dec 14, 2023
2 parents 0f54296 + 709e289 commit a6cbc3b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions src/solver/conv_hip_implicit_gemm_3d_grouped_bwd_xdlops.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,9 @@ struct CKArgs
Do = ProblemInterpreter::GetOutputDepthDo(problem);
Z = ProblemInterpreter::GetFilterDepthZ(problem);

input = {G, N, C, Di, Hi, Wi};
output = {G, N, K, Do, Ho, Wo};
// On a backward pass, out is in and in is out and this is silly
output = {G, N, C, Di, Hi, Wi};
input = {G, N, K, Do, Ho, Wo};
weight = {G, K, C, Z, Y, X};

// miopen strides to CK strides
Expand Down
5 changes: 3 additions & 2 deletions src/solver/conv_hip_implicit_gemm_3d_grouped_wrw_xdlops.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,9 @@ struct CKArgs
Do = ProblemInterpreter::GetOutputDepthDo(problem);
Z = ProblemInterpreter::GetFilterDepthZ(problem);

input = {G, N, C, Di, Hi, Wi};
output = {G, N, K, Do, Ho, Wo};
// On a backward pass, out is in and in is out and this is silly
output = {G, N, C, Di, Hi, Wi};
input = {G, N, K, Do, Ho, Wo};
weight = {G, K, C, Z, Y, X};

// miopen strides to CK strides
Expand Down

0 comments on commit a6cbc3b

Please sign in to comment.