Skip to content

Commit 7719779

Browse files
authored
Update README.md
1 parent b9d6086 commit 7719779

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

README.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -193,27 +193,29 @@ We provide a variety of training materials and examples to quickly learn the Mat
193193
- Finally, for new MatX developers, browsing the [example applications](examples) can provide familarity with the API and best practices.
194194

195195
## Release Major Features
196-
*v0.8.0*:
197-
- Features
196+
**v0.8.0**:
197+
- *Features*
198198
* Updated cuTENSOR and cuTensorNet versions
199199
* Added configurable print formatting
200200
* ARM FFT support via NVPL
201201
* New operators: abs2(), outer(), isnan(), isinf()
202202
* Many more unit tests for CPU tests
203203
- Bug fixes for matmul on Hopper, 2D FFTs, and more
204-
*v0.7.0*:
205-
- Features
204+
205+
**v0.7.0**:
206+
- *Features*
206207
* Automatic documentation generation
207208
* Use CCCL instead of CUB/libcudac++
208209
* New operators: `polyval`, `matvec`
209210
* Improved caching and teardown of transforms
210211
* Optimized polyphase resampler
211212
* Negative slice indexing
212213
- Many new bug fixes and error checking
213-
*v0.6.0*:
214+
215+
**v0.6.0**:
214216
- Breaking changes
215217
* 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*
217219
* Polyphase channelizer
218220
* Many new operators, including upsample, downsample, pwelch, overlap, at, etc
219221
* Added more lvalue semantics for operators based on view manipulation

0 commit comments

Comments
 (0)