[ROCm/composable_kernel commit: cb95421311]
This commit is contained in:
Chao Liu
2021-08-06 22:17:51 +00:00
parent 3bbe4dae99
commit 23239fa618
7 changed files with 20 additions and 13 deletions

View File

@@ -1,7 +1,8 @@
#ifndef CONVOLUTION_PROBLEM_DESCRIPTOR
#define CONVOLUTION_PROBLEM_DESCRIPTOR
namespace ck_driver {
namespace ck {
namespace driver {
struct ConvolutionProblemDescriptor
{
@@ -75,5 +76,6 @@ struct ConvolutionProblemDescriptor
std::size_t CalculateFlop() const { return 2L * N * K * C * Y * X * Ho * Wo; }
};
} // namespace ck_driver
} // namespace driver
} // namespace ck
#endif