-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5cababb
commit b85e09f
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ where | |
2. Allocate device memory and offload input data to device. | ||
3. Initialize rocSPARSE by creating a handle. | ||
4. Prepare utility variables for rocSPARSE gebsrmv invocation. | ||
5. Call gebsrmv to perform $y = alpha * A * x + beta * y$. | ||
5. Call gebsrmv to perform $y = \alpha * A * x + beta * y$. | ||
Check failure on line 27 in Libraries/rocSPARSE/level_2/gebsrmv/README.md GitHub Actions / Documentation / MarkdownSpaces inside emphasis markers
Check failure on line 27 in Libraries/rocSPARSE/level_2/gebsrmv/README.md GitHub Actions / Documentation / MarkdownSpaces inside emphasis markers
|
||
6. Copy solution to host from device. | ||
7. Clear rocSPARSE allocations on device and device arrays. | ||
8. Print results to standard output. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ This example illustrates the use of the `rocSPARSE` sampled dense-dense matrix m | |
|
||
The operation solves the following equation for C: | ||
|
||
$\C := \alpha(\cdot A' * \cdot B') * sppat(\cdot C) + \beta C $ | ||
$ C := \alpha (\cdot A' * \cdot B') * sppat(\cdot C) + \beta C $ | ||
Check failure on line 9 in Libraries/rocSPARSE/level_3/sddmm/README.md GitHub Actions / Documentation / MarkdownSpaces inside emphasis markers
Check failure on line 9 in Libraries/rocSPARSE/level_3/sddmm/README.md GitHub Actions / Documentation / MarkdownSpaces inside emphasis markers
|
||
|
||
where | ||
|
||
|