Change output gemm type to AccDataType in two stage conv bwd wei (#1283)

[ROCm/composable_kernel commit: 8346af9c68]
This commit is contained in:
Bartłomiej Kocot
2024-05-10 10:57:42 +02:00
committed by GitHub
parent 675a16e3b8
commit 70f51bb03f
3 changed files with 19 additions and 9 deletions

View File

@@ -264,5 +264,7 @@ TYPED_TEST(TestGroupedConvndBwdWeight3d, Test3D)
{3, 1, 1, 64, 3, {3, 3, 3}, {32, 32, 32}, {1, 1, 1}, {1, 1, 1}, {1, 1, 1}, {1, 1, 1}});
this->conv_params.push_back(
{3, 1, 1, 1, 1, {3, 3, 3}, {32, 32, 32}, {1, 1, 1}, {1, 1, 1}, {1, 1, 1}, {1, 1, 1}});
this->conv_params.push_back(
{3, 1, 1, 4, 4, {3, 3, 3}, {14, 28, 28}, {1, 1, 1}, {1, 1, 1}, {1, 1, 1}, {1, 1, 1}});
this->Run();
}