You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-21Lines changed: 8 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,27 +11,14 @@ an OpenCL™ library implementing Sparse linear algebra routines. This proj
11
11
a collaboration between [AMD Inc.](http://www.amd.com/) and
12
12
[Vratis Ltd.](http://www.vratis.com/).
13
13
14
-
### What's new in clSPARSE **v0.10**
15
-
**This release introduces breaking API changes from the prior version**. clSPARSE is still in a beta phase, and we may need to change the API at times to increase maintainability or fix design issues. A few changes are introduced to more closely follow the recently published [Cpp Core Guidelines](http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines.html), a strong candidate to be the coding guidelines to be used in clSPARSE. Changes are noted below.
16
-
- The API to create meta data for a csr encoded sparse matrix has changed. This is an attempt to hide the implementation details of how meta data is stored from the user. This allows the library freedom to change and iterate meta data without breaking clients.
17
-
-`clsparseCsrMetaCompute()` renamed to `clsparseCsrMetaCreate()`, to more intuitively pair with the
18
-
- New API `clsparseCsrMetaDelete()`
19
-
- A few routines changed pure 'out' parameters to be returned on the stack as structs<sup>[1](#return-tuple)</sup>
20
-
-`clsparseCreateControl()`
21
-
-`clsparseGetEvent()`
22
-
-`clsparseCreateSolverControl()`
23
-
-`clsparseCsrMetaSize()`
24
-
- A new index type has been introduced `clsparseIdx_t` to abstract the size of an index from the library interface; the only choice currently is 4 bytes. If users use this datatype for indices in their code, changing to 8-byte indices in the future should only be a recompile.
25
-
- The names of member variables in our public structs have been renamed for consistency. Before, our member variables was not consistent with camel case and underscore naming. Member variables are now standardized to use underscores, but we keep camel casing for function and struct names<sup>[2](#consistent-naming)</sup>
26
-
-`colIndices` to `col_indices`
27
-
-`rowIndices` to `row_indices`
28
-
-`rowOffsets` to `row_pointer` (renamed to pointer to remove confusion with buffer offsets for cl1.2)
29
-
-`offValues` to `off_values`
30
-
-`offColInd` to `off_col_indices`
31
-
-`offRowOff` to `off_row_pointer`
32
-
-`offValues` to `off_values`
33
-
- All samples have been changed to compile with the above changes.
34
-
14
+
### What's new in clSPARSE **v0.10.1**
15
+
- bug fix release
16
+
- Fixes for travis builds
17
+
- Fix to the matrix market reader in the cuSPARSE benchmark to synchronize with the regular MM reader
18
+
- Replace cl.hpp with cl2.hpp (thanks to arrayfire)
19
+
- Fixes for the Nvidia platform; tested 352.79
20
+
- Fixed buffer overruns in CSR-Adaptive kernels
21
+
- Fix invalid memory access on Nvidia GPUs in CSR-Adaptive SpMV kernel
0 commit comments