Skip to content

Commit 57986b2

Browse files
committed
chore: Bumping version to v0.1.0
Signed-off-by: Naren Dasan <[email protected]> Signed-off-by: Naren Dasan <[email protected]>
1 parent 2075165 commit 57986b2

File tree

4 files changed

+74
-3
lines changed

4 files changed

+74
-3
lines changed

CHANGELOG.md

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,4 +232,74 @@ Signed-off-by: Naren Dasan <[email protected]>
232232
Signed-off-by: Naren Dasan <[email protected]>
233233

234234

235+
# v0.1.0 (2020-10-23)
236+
237+
238+
### Bug Fixes
239+
240+
* added some fixes, trt/jit output still mismatches ([723ac1d](https://github.com/NVIDIA/TRTorch/commit/723ac1d))
241+
* added test cases to explicitly check hidden/cell state outputs ([d7c3164](https://github.com/NVIDIA/TRTorch/commit/d7c3164))
242+
* cleaned up logic, added case where bias doesn't exist for LSTM cell converter ([a3e1093](https://github.com/NVIDIA/TRTorch/commit/a3e1093))
243+
* **//core/conversion/evaluator:** Custom to IValue that handles int[] ([68c934a](https://github.com/NVIDIA/TRTorch/commit/68c934a))
244+
* **//docker:** Workaround only shared libraries being available in ([50c7eda](https://github.com/NVIDIA/TRTorch/commit/50c7eda))
245+
* **//py:** Fix long description section of setup.py ([efd2099](https://github.com/NVIDIA/TRTorch/commit/efd2099))
246+
* **//tests:** Add stride to complete tensors ([af5d28e](https://github.com/NVIDIA/TRTorch/commit/af5d28e))
247+
* **//tests/accuracy:** Fix int8 accuracy test for new PTQ api ([a53bea7](https://github.com/NVIDIA/TRTorch/commit/a53bea7))
248+
* **//tests/core/converters/activations:** Complete tensors in prelu test ([0e90f78](https://github.com/NVIDIA/TRTorch/commit/0e90f78))
249+
* **docsrc:** Update docsrc container for bazel 3.4.1 ([4eb53b5](https://github.com/NVIDIA/TRTorch/commit/4eb53b5))
250+
251+
252+
* fix(Windows)!: Fix dependency resolution for local builds ([858d8c3](https://github.com/NVIDIA/TRTorch/commit/858d8c3))
253+
* chore!: Update dependencies to PyTorch 1.6.0 ([8eda27d](https://github.com/NVIDIA/TRTorch/commit/8eda27d))
254+
* chore!: Bumping version numbers to 0.1.0 ([b84c90b](https://github.com/NVIDIA/TRTorch/commit/b84c90b))
255+
* refactor(//core)!: Introducing a binding convention that will address ([5a105c6](https://github.com/NVIDIA/TRTorch/commit/5a105c6))
256+
* refactor!: Renaming extra info to compile spec to be more consistent ([b8fa228](https://github.com/NVIDIA/TRTorch/commit/b8fa228))
257+
258+
259+
### Features
260+
261+
* **//core/conversion/converters:** LSTMCell converter ([8c61248](https://github.com/NVIDIA/TRTorch/commit/8c61248))
262+
* **//core/conversion/var:** created ITensorOrFreeze() method, to replace functionality of Var::ITensor() ([2ccf8d0](https://github.com/NVIDIA/TRTorch/commit/2ccf8d0))
263+
* **//core/converters:** Add power layer conversion support and minor README edits ([a801506](https://github.com/NVIDIA/TRTorch/commit/a801506))
264+
* **//core/lowering:** Add functionalization pass to replace implace ([90a9ed6](https://github.com/NVIDIA/TRTorch/commit/90a9ed6)), closes [#30](https://github.com/NVIDIA/TRTorch/issues/30)
265+
* **//docker:** Adding CUDA11 based container for Ampere support ([970d775](https://github.com/NVIDIA/TRTorch/commit/970d775))
266+
* started working on lstm_cell converter ([546d790](https://github.com/NVIDIA/TRTorch/commit/546d790))
267+
* **//py:** Initial compiliant implementation of the to_backend api for ([59113cf](https://github.com/NVIDIA/TRTorch/commit/59113cf))
268+
* **//third_party/tensorrt:** Add back TensorRT static lib in a cross ([d3c2e7e](https://github.com/NVIDIA/TRTorch/commit/d3c2e7e))
269+
* **aten::prelu:** Basic prelu support ([8bc4369](https://github.com/NVIDIA/TRTorch/commit/8bc4369))
270+
* **aten::prelu:** Implement the multi-channel version of prelu and ([c066581](https://github.com/NVIDIA/TRTorch/commit/c066581))
271+
* finished logic for LSTM cell, now to test ([a88cfaf](https://github.com/NVIDIA/TRTorch/commit/a88cfaf))
272+
273+
274+
### BREAKING CHANGES
275+
276+
* Users on Windows trying to use cuDNN 8 must manually
277+
configure third_party/cudnn/local/BUILD to use cuDNN 8.
278+
279+
Signed-off-by: Naren Dasan <[email protected]>
280+
Signed-off-by: Naren Dasan <[email protected]>
281+
* Support for Python 3.5 is being dropped with this
282+
update
283+
284+
Signed-off-by: Naren Dasan <[email protected]>
285+
Signed-off-by: Naren Dasan <[email protected]>
286+
* Version is being bumped to version 0.1.0a0 to target
287+
PyTorch 1.6.0
288+
289+
Signed-off-by: Naren Dasan <[email protected]>
290+
Signed-off-by: Naren Dasan <[email protected]>
291+
* This changes the "ABI" of compiled TRTorch programs and
292+
the runtime and breaks backwards compatability between the runtime in
293+
0.1.0+ and programs compiled pre-0.1.0
294+
295+
Signed-off-by: Naren Dasan <[email protected]>
296+
Signed-off-by: Naren Dasan <[email protected]>
297+
* This changes the top level api for setting the
298+
specification for compilation, a simple find and replace should allow
299+
users to port forward
300+
301+
Signed-off-by: Naren Dasan <[email protected]>
302+
Signed-off-by: Naren Dasan <[email protected]>
303+
304+
235305

docsrc/RELEASE_CHECKLIST.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ will result in a minor version bump and sigificant bug fixes will result in a pa
3232
- Reset `docsrc/conf.py` version
3333
- `make html`
3434
- Generate changelog
35-
- `conventional-changelog -p angular -s CHANGELOG.md -t <last version tag> -a`
35+
- `conventional-changelog -p angular -s -i CHANGELOG.md -t <last version tag> -a`
3636
4. Once PR is merged tag commit and start creating release on GitHub
3737
- Paste in Milestone information and Changelog information into release notes
3838
- Generate libtrtorch.tar.gz for the following platforms:
3939
- x86_64 cxx11-abi
4040
- x86_64 pre-cxx11-abi
4141
- TODO: Add cxx11-abi build for aarch64 when a manylinux container for aarch64 exists
42-
- Generate Python packages for Python 3.5/3.6/3.7/3.8 for x86_64
42+
- Generate Python packages for Python 3.6/3.7/3.8 for x86_64
4343
- TODO: Build a manylinux container for aarch64
4444
- `docker run -it -v$(pwd)/..:/workspace/TRTorch build_trtorch_wheel /bin/bash /workspace/TRTorch/py/build_whl.sh` generates all wheels
4545
- To build container `docker build -t build_trtorch_wheel .`

docsrc/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@
124124
'master_doc': True,
125125
"version_info": {
126126
"master": "https://nvidia.github.io/TRTorch/",
127+
"v0.1.0": "https://nvidia.github.io/TRTorch/v0.1.0/",
127128
"v0.0.3": "https://nvidia.github.io/TRTorch/v0.0.3/",
128129
"v0.0.2": "https://nvidia.github.io/TRTorch/v0.0.2/",
129130
"v0.0.1": "https://nvidia.github.io/TRTorch/v0.0.1/",

py/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
dir_path = os.path.dirname(os.path.realpath(__file__))
1818

19-
__version__ = '0.1.0a0'
19+
__version__ = '0.1.0'
2020

2121
CXX11_ABI = False
2222

0 commit comments

Comments
 (0)