Fix typo in functional.h (#2571)

This commit is contained in:
zkyue
2025-08-20 10:22:31 +08:00
committed by GitHub
parent 42e7c546c4
commit 931359cec1

View File

@ -655,7 +655,7 @@ struct and_popc_add {
}
};
/// Fused multiply-add
/// Fused and-add
template <typename T>
struct and_add {
CUTLASS_HOST_DEVICE
@ -677,7 +677,7 @@ struct xor_popc_add {
}
};
/// Fused multiply-add
/// Fused xor-add
template <typename T>
struct xor_add {
CUTLASS_HOST_DEVICE
@ -699,7 +699,7 @@ struct or_popc_add {
};
/// Fused multiply-add
/// Fused or-add
template <typename T>
struct or_add {
CUTLASS_HOST_DEVICE