"...resnet50_tensorflow.git" did not exist on "b6fbd2d45cf43fc96fea6af3ca81591676feb9c6"
Commit 19d207df authored by Alan Turner's avatar Alan Turner
Browse files

Correct namespace for instances

parent ffc5c906
...@@ -49,7 +49,7 @@ std::vector<std::string> Problem::GetInstances(const std::string& arch) const ...@@ -49,7 +49,7 @@ std::vector<std::string> Problem::GetInstances(const std::string& arch) const
const bool quantize = ADataType == DataType::Int8 and BDataType == DataType::Int8; const bool quantize = ADataType == DataType::Int8 and BDataType == DataType::Int8;
if (get_xdlop_archs().find(arch) != get_xdlop_archs().end()) if (get_xdlop_archs().find(arch) != get_xdlop_archs().end())
{ {
ck::instance::gemm_add_add_fastgelu_instances all_instances{}; ck::host::instance::gemm_add_add_fastgelu_instances all_instances{};
if(TransA and TransB) if(TransA and TransB)
instances = all_instances.get_col_col_instances(quantize); instances = all_instances.get_col_col_instances(quantize);
else if(TransA and not TransB) else if(TransA and not TransB)
...@@ -139,7 +139,7 @@ Solution Problem::MakeSolution(std::size_t idx, const std::string& arch) const ...@@ -139,7 +139,7 @@ Solution Problem::MakeSolution(std::size_t idx, const std::string& arch) const
std::string Problem::GetIncludeHeader() const std::string Problem::GetIncludeHeader() const
{ {
return ck::instance::gemm_add_add_fastgelu_instances{}.get_include_header(); return ck::host::instance::gemm_add_add_fastgelu_instances{}.get_include_header();
} }
std::vector<Solution> Problem::GetSolutions(const std::string& arch) const std::vector<Solution> Problem::GetSolutions(const std::string& arch) const
......
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