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:
Adam Osewski
2024-09-20 09:40:45 +02:00
committed by GitHub
parent 7073145a85
commit bb7364d3c9

View File

@@ -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