Unverified Commit dfc18d6c authored by Umang Yadav's avatar Umang Yadav Committed by GitHub
Browse files

ad fp8 warnings (#2531)

parent 6a72e8fc
...@@ -625,7 +625,11 @@ shape::type_t get_type(int dtype) ...@@ -625,7 +625,11 @@ shape::type_t get_type(int dtype)
case 11: return shape::double_type; case 11: return shape::double_type;
case 12: return shape::uint32_type; case 12: return shape::uint32_type;
case 13: return shape::uint64_type; case 13: return shape::uint64_type;
case 18: return shape::fp8e4m3fnuz_type; case 18: {
std::cout << "[Warning] : MIGraphX has BETA support for FP8. Using FP8 may result in "
"incorrect final outputs\n";
return shape::fp8e4m3fnuz_type;
}
case 14: case 14:
case 15: case 15:
case 16: case 16:
......
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