We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db47b5c commit 1555949Copy full SHA for 1555949
cubool/include/cubool/cubool.h
@@ -926,13 +926,13 @@ CUBOOL_EXPORT CUBOOL_API cuBool_Status cuBool_Kronecker(
926
);
927
928
/**
929
- * Performs result = left * ~right, where
+ * Performs result = matrix * ~mask, where
930
* '*' is boolean semiring 'and' operation
931
* '~' is operation for invert matrix (0 swaps to 1 and 1 to 0)
932
*
933
* @note To perform this operation matrices must be compatible
934
- * dim(left) = M x T
935
- * dim(right) = T x N
+ * dim(matrix) = M x T
+ * dim(mask) = T x N
936
* dim(result) = M x N
937
938
* @note Pass `CUBOOL_HINT_TIME_CHECK` hint to measure operation time
0 commit comments