"vscode:/vscode.git/clone" did not exist on "32b5948f4e9dbfc65317bd85775306ba4d6c011b"
Commit fa7e0c51 authored by illsilin's avatar illsilin
Browse files

fix the logic

parent 4f6593af
...@@ -595,8 +595,8 @@ struct DeviceContractionMultipleD_Xdl_CShuffle ...@@ -595,8 +595,8 @@ struct DeviceContractionMultipleD_Xdl_CShuffle
return false; return false;
} }
if((ck::get_device_name() != "gfx90a" || ck::get_device_name() != "gfx940" || if(ck::get_device_name() != "gfx90a" && ck::get_device_name() != "gfx940" &&
ck::get_device_name() != "gfx941" || ck::get_device_name() != "gfx942") && ck::get_device_name() != "gfx941" && ck::get_device_name() != "gfx942" &&
std::is_same<ADataType, double>::value) std::is_same<ADataType, double>::value)
{ {
return false; return false;
......
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