Skip to content

Commit

Permalink
Bump version to 0.4.0, update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mmacklin committed Aug 9, 2022
1 parent 2c87cfd commit 90903eb
Show file tree
Hide file tree
Showing 13 changed files with 22 additions and 17 deletions.
17 changes: 11 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
# CHANGELOG

## [0.3.3] - 2022-08-01

- Fixed FP16 conversions on older hardware
- Reduced PTX target architecture to avoid issues with older drivers, see `wp.config.ptx_target_arch`
## [0.4.0] - 2022-08-09

- Fix for FP16 conversions on GPUs without hardware support
- Fix for `runtime = None` errors when reloading the Warp module
- Fix for PTX architecture version when running with older drivers, see `wp.config.ptx_target_arch`
- Fix for USD imports from `__init__.py`, defer them to individual functions that need them
- Fix for robustness issues with sign determination for `wp.mesh_query_point()`
- Fix for `wp.HashGrid` memory leak when creating/destroying grids
- Add CUDA version checks for toolkit and driver
- Add support for cross-module `@wp.struct` references
- Support running even if CUDA initialization failed, use `wp.is_cuda_available()` to check availability
- Remove USD imports from `__init__.py`, defer them to individual functions that need them
- Added CUDA version checks for toolkit and driver
- Statically linking with the CUDA runtime library to avoid deployment issues


### Breaking Changes

Expand Down
2 changes: 1 addition & 1 deletion VERSION.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.2
0.4.0
2 changes: 1 addition & 1 deletion docs/_build/html/genindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@


<div class="version">
0.3.2
0.4.0
</div>


Expand Down
2 changes: 1 addition & 1 deletion docs/_build/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@


<div class="version">
0.3.2
0.4.0
</div>


Expand Down
2 changes: 1 addition & 1 deletion docs/_build/html/modules/functions.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@


<div class="version">
0.3.2
0.4.0
</div>


Expand Down
2 changes: 1 addition & 1 deletion docs/_build/html/modules/introduction.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@


<div class="version">
0.3.2
0.4.0
</div>


Expand Down
2 changes: 1 addition & 1 deletion docs/_build/html/modules/runtime.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@


<div class="version">
0.3.2
0.4.0
</div>


Expand Down
Binary file modified docs/_build/html/objects.inv
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/_build/html/search.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@


<div class="version">
0.3.2
0.4.0
</div>


Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
copyright = '2022, NVIDIA'
author = 'NVIDIA'

version = '0.3.2'
version = '0.4.0'

# -- General configuration ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion exts/omni.warp/config/extension.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[package]
# Semantic Versioning is used: https://semver.org/
version = "0.3.2"
version = "0.4.0"
authors = ["Miles Macklin"]
title = "Warp"
description="A Python framework for high-performance simulation and graphics programming"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setuptools.setup(
name="warp-lang",
version="0.3.2",
version="0.4.0",
author="NVIDIA",
author_email="[email protected]",
description="A Python framework for high-performance simulation and graphics programming",
Expand Down
2 changes: 1 addition & 1 deletion warp/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import os

version = "0.3.2"
version = "0.4"

cuda_path = None # path to local CUDA toolchain, if None at init time warp will attempt to find the SDK using CUDA_PATH env var

Expand Down

0 comments on commit 90903eb

Please sign in to comment.