Skip to content

Commit 20fdafc

Browse files
authored
[oneMKL: BLAS] bug fix for ldc parameter (#425)
1 parent 7ee8f11 commit 20fdafc

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

source/elements/oneMKL/source/domains/blas/gemm.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ gemm (Buffer Version)
238238
ldc
239239
The leading dimension of ``C``. It must be positive and at least
240240
``m`` if column major layout is used to store matrices or at
241-
least ``n`` if column major layout is used to store matrices.
241+
least ``n`` if row major layout is used to store matrices.
242242

243243
.. container:: section
244244

@@ -448,7 +448,7 @@ gemm (USM Version)
448448
ldc
449449
The leading dimension of ``C``. It must be positive and at least
450450
``m`` if column major layout is used to store matrices or at
451-
least ``n`` if column major layout is used to store matrices.
451+
least ``n`` if row major layout is used to store matrices.
452452

453453
dependencies
454454
List of events to wait for before starting computation, if any.

source/elements/oneMKL/source/domains/blas/gemm_batch.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ of matrices in ``a``, ``b`` and ``c`` buffers is given by the ``batch_size`` par
193193
ldc
194194
The leading dimension of the matrices ``C``. It must be positive and at least
195195
``m`` if column major layout is used to store matrices or at
196-
least ``n`` if column major layout is used to store matrices.
196+
least ``n`` if row major layout is used to store matrices.
197197

198198
stridec
199199
Stride between different ``C`` matrices. Must be at least
@@ -670,7 +670,7 @@ in ``a``, ``b`` and ``c`` are given by the ``batch_size`` parameter.
670670
ldc
671671
The leading dimension of the matrices ``C``. It must be positive and at least
672672
``m`` if column major layout is used to store matrices or at
673-
least ``n`` if column major layout is used to store matrices.
673+
least ``n`` if row major layout is used to store matrices.
674674

675675
stridec
676676
Stride between different ``C`` matrices.

source/elements/oneMKL/source/domains/blas/gemm_bias.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ gemm_bias (Buffer Version)
252252
ldc
253253
The leading dimension of ``C``. It must be positive and at least
254254
``m`` if column major layout is used to store matrices or at
255-
least ``n`` if column major layout is used to store matrices.
255+
least ``n`` if row major layout is used to store matrices.
256256

257257
co
258258
Buffer holding the offset values for matrix ``C``.
@@ -491,7 +491,7 @@ gemm_bias (USM Version)
491491
ldc
492492
The leading dimension of ``C``. It must be positive and at least
493493
``m`` if column major layout is used to store matrices or at
494-
least ``n`` if column major layout is used to store matrices.
494+
least ``n`` if row major layout is used to store matrices.
495495

496496
co
497497
Pointer to offset values for matrix ``C``.

0 commit comments

Comments
 (0)