Skip to content

Commit 602f559

Browse files
[WIN] Fix C7555 build error
C7555: use of designated initializers requires at least '/std:c++20' Signed-off-by: Whitney Tsang <[email protected]>
1 parent 38ee029 commit 602f559

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/Dialect/TritonGPU/Transforms/Pipeliner/LowerLoops.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -592,8 +592,8 @@ scf::ForOp lowerLoads(scf::ForOp forOp, CoarseSchedule &schedule) {
592592
// Allocate additional buffer required by the wgmma pipelining.
593593
stageDiff += 1;
594594
}
595-
asyncLoads[&op] = {.stageDiff = stageDiff,
596-
.sharedEncoding = sharedEncoding};
595+
asyncLoads[&op] =
596+
AsyncLoad{stageDiff, nullptr, nullptr, nullptr, sharedEncoding};
597597
} else if (stageDiff > 1) {
598598
// Distance-1 loads can in most cases be pipelined in registers without
599599
// any performance degradation, as the schedule will usually reorder the

0 commit comments

Comments
 (0)