mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-14 10:09:41 +00:00
Remove unsupported (fp8) type from Add memory operation. (#1521)
The dynamic buffer doesn't have support for fp8 in `Update` operation thus fp8 is not supporting `InMemoryDataOperation::Add`
[ROCm/composable_kernel commit: 0c39954da9]
This commit is contained in:
@@ -516,7 +516,7 @@ struct InMemoryDataOperationSupportedOnDataType<InMemoryDataOperationEnum::Add,
|
||||
static constexpr bool value =
|
||||
is_same<DataType, float>::value || is_same<DataType, double>::value ||
|
||||
is_same<DataType, half_t>::value || is_same<DataType, int8_t>::value ||
|
||||
is_same<DataType, int32_t>::value || is_same<DataType, f8_t>::value;
|
||||
is_same<DataType, int32_t>::value;
|
||||
};
|
||||
|
||||
} // namespace reduce
|
||||
|
||||
Reference in New Issue
Block a user