Skip to content

Commit 147d0f6

Browse files
committed
Do not use std::remove_cvref_t, does not exist in C++17, use custom one.
1 parent 4df4747 commit 147d0f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v7r3.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ struct ThreadwiseTensorSliceTransfer_v7r3
286286

287287
static_for<0, nDst, 1>{}([&](auto i) {
288288
using elm_vector_t = typename remove_cvref_t<decltype(elm_vectors[i])>::type;
289-
using scalar_t = std::remove_cvref_t<
289+
using scalar_t = typename remove_cvref_t<
290290
decltype(elm_vectors(i).template AsType<elm_vector_t>()[I0])>;
291291

292292
// This is a bit ugly but necessary to be able to compile f8 instances for grouped

0 commit comments

Comments
 (0)