We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentbd1b38e commitf61d810Copy full SHA for f61d810
arrayfire/blas.py
@@ -209,10 +209,10 @@ def gemm(lhs, rhs, alpha=1.0, beta=0.0, lhs_opts=MATPROP.NONE, rhs_opts=MATPROP.
209
210
This provides a general interface to the BLAS level 3 general matrix multiply (GEMM), which is generally defined as:
211
212
- C =α ∗ opA(A) opB(B)+ β∗C
+ C =alpha * opA(A) opB(B) + beta *C
213
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
+ where alpha and beta are both scalars; A and B are the matrix multiply operands;
+ and opA and opB are noop (if AF_MAT_NONE) or transpose (if AF_MAT_TRANS) operations
216
on A or B before the actual GEMM operation.
217
Batched GEMM is supported if at least either A or B have more than two dimensions
218
(see af::matmul for more details on broadcasting).