Skip to content

Commit

Permalink
Add missing int64 and uint64 overloads for conj (#1127)
Browse files Browse the repository at this point in the history
Signed-off-by: Krzysztof Lecki <[email protected]>
  • Loading branch information
klecki authored and ttl10101 committed Feb 7, 2024
1 parent 50a9095 commit af0a5c8
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions include/cutlass/complex.h
Original file line number Diff line number Diff line change
Expand Up @@ -462,6 +462,14 @@ CUTLASS_HOST_DEVICE uint32_t conj(uint32_t const& z) {
return z;
}

CUTLASS_HOST_DEVICE int64_t conj(int64_t const& z) {
return z;
}

CUTLASS_HOST_DEVICE uint64_t conj(uint64_t const& z) {
return z;
}

CUTLASS_HOST_DEVICE int4b_t conj(int4b_t const& z) {
return z;
}
Expand Down

0 comments on commit af0a5c8

Please sign in to comment.