Skip to content

Commit

Permalink
Update include/cutlass/vector_types.h
Browse files Browse the repository at this point in the history
Co-authored-by: Mehdi Goli <[email protected]>
  • Loading branch information
aacostadiaz and mehdi-goli authored May 29, 2024
1 parent 0b6f085 commit ab9a595
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions include/cutlass/vector_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,7 @@ namespace cutlass {

CUTLASS_HOST_DEVICE
int4 make_int4(int x, int y, int z, int w) {
int4 t;
t.x = x;
t.y = y;
t.z = z;
t.w = w;
return t;
return int4 {x,y,z,w};
}
}
#else
Expand Down

0 comments on commit ab9a595

Please sign in to comment.