@@ -6408,22 +6408,22 @@ __ESIMD_API
6408
6408
// / efficient scatter is generated. If the stored vector is too long
6409
6409
// / for 1 flat-store GPU instruction, then a series of flat-store and/or
6410
6410
// / scatters may be generated.
6411
- // / @tparam Tx Element type.
6411
+ // / @tparam T Element type.
6412
6412
// / @tparam N Number of elements to store.
6413
- // / @tparam AccessorTy Accessor type (auto-deduced).
6413
+ // / @tparam AccessorT Accessor type (auto-deduced).
6414
6414
// / @param acc The local accessor to store to.
6415
6415
// / @param offset The byte-offset to store at.
6416
6416
// / @param vals The vector to store.
6417
6417
// / @param Flags Specifies the alignment.
6418
6418
// /
6419
- template <typename Tx , int N, typename AccessorTy , typename Flags>
6419
+ template <typename T , int N, typename AccessorT , typename Flags>
6420
6420
__ESIMD_API
6421
6421
std::enable_if_t <detail::is_local_accessor_with_v<
6422
- AccessorTy , detail::accessor_mode_cap::can_write> &&
6422
+ AccessorT , detail::accessor_mode_cap::can_write> &&
6423
6423
is_simd_flag_type_v<Flags>>
6424
- block_store (AccessorTy acc, uint32_t offset, simd<Tx , N> vals, Flags) {
6425
- slm_block_store<Tx , N, Flags>(
6426
- offset + __ESIMD_DNS::localAccessorToOffset (acc), vals );
6424
+ block_store (AccessorT acc, uint32_t offset, simd<T , N> vals, Flags flags ) {
6425
+ slm_block_store<T , N>(offset + __ESIMD_DNS::localAccessorToOffset (acc), vals,
6426
+ flags );
6427
6427
}
6428
6428
6429
6429
// / Variant of gather that uses local accessor as a parameter
0 commit comments