Skip to content

Commit f61d810

Browse files
committed
Fix non-ASCII character(alpha,beta) usage in doc strings of gemm
1 parent bd1b38e commit f61d810

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

arrayfire/blas.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -209,10 +209,10 @@ def gemm(lhs, rhs, alpha=1.0, beta=0.0, lhs_opts=MATPROP.NONE, rhs_opts=MATPROP.
209209
210210
This provides a general interface to the BLAS level 3 general matrix multiply (GEMM), which is generally defined as:
211211
212-
C = α ∗ opA(A) opB(B)+ β∗C
212+
C = alpha * opA(A) opB(B) + beta * C
213213
214-
where α (alpha) and β (beta) are both scalars; A and B are the matrix multiply operands;
215-
and opA and opB are noop (if AF_MAT_NONE) or transpose (if AF_MAT_TRANS) operations
214+
where alpha and beta are both scalars; A and B are the matrix multiply operands;
215+
and opA and opB are noop (if AF_MAT_NONE) or transpose (if AF_MAT_TRANS) operations
216216
on A or B before the actual GEMM operation.
217217
Batched GEMM is supported if at least either A or B have more than two dimensions
218218
(see af::matmul for more details on broadcasting).

0 commit comments

Comments
 (0)