Skip to content

Commit

Permalink
Fix error of consider applicability
Browse files Browse the repository at this point in the history
  • Loading branch information
junliume committed Jul 3, 2024
1 parent 7ba3488 commit b5b429e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions client_example/25_wrapper/wrapper_basic_gemm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,10 +205,10 @@ void PerformGemm(const ck::index_t M,

int main(int argc, char* argv[])
{
bool is_supported = ck::is_gfx11_supported();
bool is_supported = ck::is_xdl_supported();
if(!is_supported)
{
std::cout << "WARNING: wmma example not supported on the platform " << ck::get_device_name()
std::cout << "WARNING: xdl example not supported on the platform " << ck::get_device_name()
<< std::endl;
return 0;
}
Expand Down
4 changes: 2 additions & 2 deletions client_example/25_wrapper/wrapper_optimized_gemm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -297,10 +297,10 @@ void PerformGemm(const ck::index_t M,

int main(int argc, char* argv[])
{
bool is_supported = ck::is_gfx11_supported();
bool is_supported = ck::is_xdl_supported();
if(!is_supported)
{
std::cout << "WARNING: wmma example not supported on the platform " << ck::get_device_name()
std::cout << "WARNING: xdl example not supported on the platform " << ck::get_device_name()
<< std::endl;
return 0;
}
Expand Down

0 comments on commit b5b429e

Please sign in to comment.