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-06 02:01:44 +02:00 committed by GitHub
parent 5f13dcad78
commit 4082fed85a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;
}