Add missing int64 and uint64 overloads for conj (#1127)

Signed-off-by: Krzysztof Lecki <klecki@nvidia.com>
This commit is contained in:
Krzysztof Lecki
2023-10-05 20:01:44 -04:00
committed by GitHub
parent 5f13dcad78
commit 4082fed85a
+8
View File
@@ -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;
}