File tree Expand file tree Collapse file tree 3 files changed +21
-9
lines changed
source/elements/oneMKL/source/domains/spblas/operations Expand file tree Collapse file tree 3 files changed +21
-9
lines changed Original file line number Diff line number Diff line change @@ -297,8 +297,11 @@ spmm
297
297
298
298
alpha
299
299
Host or USM pointer representing :math: `\alpha `. The USM allocation can be
300
- on the host or device. Must be a host pointer if SYCL buffers are used.
301
- Must be of the same type than the handles' data type.
300
+ on the host or device. The requirements are:
301
+
302
+ * Must use the same kind of memory as ``beta ``.
303
+ * Must be a host pointer if SYCL buffers are used.
304
+ * Must be of the same type as the handles' data type.
302
305
303
306
A_view
304
307
Specifies which part of the handle should be read as described by
@@ -312,8 +315,11 @@ spmm
312
315
313
316
beta
314
317
Host or USM pointer representing :math: `\beta `. The USM allocation can be
315
- on the host or device. Must be a host pointer if SYCL buffers are used.
316
- Must be of the same type than the handles' data type.
318
+ on the host or device. The requirements are:
319
+
320
+ * Must use the same kind of memory as ``alpha ``.
321
+ * Must be a host pointer if SYCL buffers are used.
322
+ * Must be of the same type as the handles' data type.
317
323
318
324
C_handle
319
325
Dense matrix handle object representing :math: `C`.
Original file line number Diff line number Diff line change @@ -287,8 +287,11 @@ spmv
287
287
288
288
alpha
289
289
Host or USM pointer representing :math: `\alpha `. The USM allocation can be
290
- on the host or device. Must be a host pointer if SYCL buffers are used.
291
- Must be of the same type than the handles' data type.
290
+ on the host or device. The requirements are:
291
+
292
+ * Must use the same kind of memory as ``beta ``.
293
+ * Must be a host pointer if SYCL buffers are used.
294
+ * Must be of the same type as the handles' data type.
292
295
293
296
A_view
294
297
Specifies which part of the handle should be read as described by
@@ -302,8 +305,11 @@ spmv
302
305
303
306
beta
304
307
Host or USM pointer representing :math: `\beta `. The USM allocation can be
305
- on the host or device. Must be a host pointer if SYCL buffers are used.
306
- Must be of the same type than the handles' data type.
308
+ on the host or device. The requirements are:
309
+
310
+ * Must use the same kind of memory as ``alpha ``.
311
+ * Must be a host pointer if SYCL buffers are used.
312
+ * Must be of the same type as the handles' data type.
307
313
308
314
y_handle
309
315
Dense vector handle object representing :math: `y`.
Original file line number Diff line number Diff line change 279
279
alpha
280
280
Host or USM pointer representing :math: `\alpha `. The USM allocation can be
281
281
on the host or device. Must be a host pointer if SYCL buffers are used.
282
- Must be of the same type than the handles' data type.
282
+ Must be of the same type as the handles' data type.
283
283
284
284
A_view
285
285
Specifies which part of the handle should be read as described by
You can’t perform that action at this time.
0 commit comments