Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitf61d810

Browse files
committed
Fix non-ASCII character(alpha,beta) usage in doc strings of gemm
1 parentbd1b38e commitf61d810

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)

[8]ページ先頭

©2009-2025 Movatter.jp