Skip to content

Commit eefb82c

Browse files
committed
prepare for release
1 parent 54b9db1 commit eefb82c

File tree

5 files changed

+19
-7
lines changed

5 files changed

+19
-7
lines changed

CHANGELOG.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
Release history
22
===============
33

4+
`v0.14.3` - 2022-08-13
5+
----------------------
6+
7+
**NOTE:** NVIDIA driver r515 or above is required.
8+
9+
Changed
10+
~~~~~~~
11+
12+
- updated to use OptiX 7.5 (performance improvements are in, new features in the next release),
13+
- PTX replaced with IR format, generated with CUDA 11.7
14+
- several multi-gpu improvements and fixes
15+
416
`v0.14.2` - 2021-10-10
517
----------------------
618

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ include plotoptix/bin/*.so
88
include plotoptix/bin/*.dll
99
include plotoptix/bin/*.xml
1010
include plotoptix/bin/*.config
11-
include plotoptix/bin/cuda/*.ptx
11+
include plotoptix/bin/cuda/*.ir

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ No need to write shaders, intersection algorithms, handle 3D scene technicalitie
4141

4242
Check `examples on GitHub <https://github.com/rnd-team-dev/plotoptix/tree/master/examples>`__ for practical code samples and `documentation pages <https://plotoptix.rnd.team>`__ for a complete API reference.
4343

44-
PlotOptiX is a set of CUDA shaders by `R&D Team <https://rnd.team>`_ wrapped in C#/C++ libraries with a Python API. PlotOptiX is based on `NVIDIA OptiX 7.3 <https://developer.nvidia.com/optix>`_ framework and makes use of RTX-capable GPU's.
44+
PlotOptiX is a set of CUDA shaders by `R&D Team <https://rnd.team>`_ wrapped in C#/C++ libraries with a Python API. PlotOptiX is based on `NVIDIA OptiX 7.5 <https://developer.nvidia.com/optix>`_ framework and makes use of RTX-capable GPU's.
4545

4646
You can quickly display data in a simple plot:
4747

@@ -74,7 +74,7 @@ System Requirements
7474
-------------------
7575

7676
- a `CUDA-enabled GPU <https://developer.nvidia.com/cuda-gpus>`__ with compute capability 5.0 (Maxwell) to latest (Ampere);
77-
- NVIDIA driver >= r465;
77+
- NVIDIA driver >= r515;
7878
- **Python 3 64-bit**
7979
- Windows:
8080
- `.NET Framework <https://dotnet.microsoft.com/download/dotnet-framework>`__ >= 4.6.1 (present in normally updated Windows)
@@ -93,7 +93,7 @@ What's Included
9393
Installation
9494
============
9595

96-
**Note**, at this point, PlotOptiX binaries are tested in: Windows 10, Ubuntu 18.04, CentOS 7.
96+
**Note**, at this point, PlotOptiX binaries are tested in: Windows 10/11, Ubuntu 18.04, CentOS 7.
9797

9898
PlotOptiX was also successfully tested on the `Google Cloud Platform <https://cloud.google.com/>`__, using Compute Engine instance with 2x V100 GPU's and Ubuntu 18.04 image.
9999
Here are the `installation steps <https://github.com/rnd-team-dev/plotoptix/blob/master/gcp_install_gpu.txt>`__ so you can save some precious seconds (FFmpeg not included).

plotoptix/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212

1313
__author__ = "Robert Sulej, R&D Team <dev@rnd.team>"
1414
__status__ = "beta"
15-
__version__ = "0.14.2"
16-
__date__ = "10 October 2021"
15+
__version__ = "0.14.3"
16+
__date__ = "13 August 2022"
1717

1818
import logging
1919

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def get_tag(self):
148148

149149

150150
setup(name='plotoptix',
151-
version='0.14.2',
151+
version='0.14.3',
152152
url='https://rnd.team/plotoptix',
153153
project_urls={
154154
'Documentation': 'https://plotoptix.rnd.team',

0 commit comments

Comments
 (0)