Refactor the design of DeviceGemmMultipleDMultipleR_Xdl_CShuffle (#378)

This commit is contained in:
Po Yen Chen
2022-08-24 23:12:54 +08:00
committed by GitHub
parent fa2d894be1
commit 88e43744d8
7 changed files with 123 additions and 261 deletions

View File

@@ -79,7 +79,7 @@ struct SquaredAdd
static_assert(is_same<T, float>::value || is_same<T, double>::value ||
is_same<T, half_t>::value || is_same<T, int32_t>::value ||
is_same<T, int8_t>::value,
"The data type is not supported by the Max accumulator!");
"The data type is not supported by the SquaredAdd accumulator!");
a = a + b * b;
}