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-6
Original file line number
Diff line number
Diff line change
@@ -193,27 +193,29 @@ We provide a variety of training materials and examples to quickly learn the Mat
193
193
- Finally, for new MatX developers, browsing the [example applications](examples) can provide familarity with the API and best practices.
194
194
195
195
## Release Major Features
196
-
*v0.8.0*:
197
-
- Features
196
+
**v0.8.0**:
197
+
-*Features*
198
198
* Updated cuTENSOR and cuTensorNet versions
199
199
* Added configurable print formatting
200
200
* ARM FFT support via NVPL
201
201
* New operators: abs2(), outer(), isnan(), isinf()
202
202
* Many more unit tests for CPU tests
203
203
- Bug fixes for matmul on Hopper, 2D FFTs, and more
204
-
*v0.7.0*:
205
-
- Features
204
+
205
+
**v0.7.0**:
206
+
-*Features*
206
207
* Automatic documentation generation
207
208
* Use CCCL instead of CUB/libcudac++
208
209
* New operators: `polyval`, `matvec`
209
210
* Improved caching and teardown of transforms
210
211
* Optimized polyphase resampler
211
212
* Negative slice indexing
212
213
- Many new bug fixes and error checking
213
-
*v0.6.0*:
214
+
215
+
**v0.6.0**:
214
216
- Breaking changes
215
217
* This marks the first release of using "transforms as operators". This allows transforms to be used in any operator expression, whereas the previous release required them to be on separate lines. For an example, please see: https://nvidia.github.io/MatX/basics/fusion.html. This also causes a breaking change with transform usage. Converting to the new format is as simple as moving the function parameters. For example: `matmul(C, A, B, stream);` becomes `(C = matmul(A,B)).run(stream);`.
216
-
- Features
218
+
-*Features*
217
219
* Polyphase channelizer
218
220
* Many new operators, including upsample, downsample, pwelch, overlap, at, etc
219
221
* Added more lvalue semantics for operators based on view manipulation
0 commit comments