We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5542876 commit 73bff10Copy full SHA for 73bff10
paddle/fluid/framework/paddle2cinn/transform_type.cc
@@ -60,6 +60,9 @@ ::phi::DataType TransToPaddleDataType(const cinn_type_t& type) {
60
SET_TYPE_CASE_ITEM(cinn_uint64_t, UINT64)
61
SET_TYPE_CASE_ITEM(cinn_float32_t, FLOAT32)
62
SET_TYPE_CASE_ITEM(cinn_float64_t, FLOAT64)
63
+#ifdef CINN_COMMON_FLOAT16_H
64
+ SET_TYPE_CASE_ITEM(cinn_float16_t, FLOAT16)
65
+#endif // CINN_COMMON_FLOAT16_H
66
67
PADDLE_THROW(platform::errors::Unimplemented("Input type not supported yet"));
68
return ::phi::DataType::UNDEFINED;
0 commit comments