Skip to content

Commit ad627a9

Browse files
committed
fix: change names in docs
1 parent 4a14d4d commit ad627a9

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/clang-format.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ jobs:
2121
- 'cubool'
2222
steps:
2323
- uses: actions/checkout@v4
24+
2425
- name: Run clang-format style check
2526
uses: jidicula/clang-format-action@v4.15.0
2627
with:
2728
clang-format-version: '20'
28-
check-path: ${{ matrix.path }}
29+
check-path: ${{ matrix.path }}

cubool/include/cubool/cubool.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -882,13 +882,13 @@ CUBOOL_EXPORT CUBOOL_API cuBool_Status cuBool_Kronecker(
882882
cuBool_Hints hints);
883883

884884
/**
885-
* Performs result = left * ~right, where
885+
* Performs result = matrix * ~mask, where
886886
* '*' is boolean semiring 'and' operation
887887
* '~' is operation for invert matrix (0 swaps to 1 and 1 to 0)
888888
*
889889
* @note To perform this operation matrices must be compatible
890-
* dim(left) = M x T
891-
* dim(right) = T x N
890+
* dim(matrix) = M x T
891+
* dim(mask) = T x N
892892
* dim(result) = M x N
893893
*
894894
* @note Pass `CUBOOL_HINT_TIME_CHECK` hint to measure operation time

0 commit comments

Comments
 (0)