"docs/vscode:/vscode.git/clone" did not exist on "b91d5ddd1abac40e6988cba9d4538f97d201ef84"
Commit b155a0ac authored by Paul's avatar Paul
Browse files

Move solution to common.hpp

parent e42607a5
...@@ -10,6 +10,13 @@ ...@@ -10,6 +10,13 @@
namespace ck { namespace ck {
namespace host { namespace host {
struct Solution
{
std::string template_str;
std::size_t block_size;
std::size_t grid_size;
};
enum class DataType { enum class DataType {
Half, Half,
Float, Float,
......
...@@ -15,14 +15,6 @@ namespace ck { ...@@ -15,14 +15,6 @@ namespace ck {
namespace host { namespace host {
namespace device_gemm_multiple_d { namespace device_gemm_multiple_d {
struct Solution
{
std::string template_str;
std::size_t block_size;
std::size_t grid_size;
};
struct Problem struct Problem
{ {
std::size_t M = 0; std::size_t M = 0;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment