File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ sudo mkdir -p "$NEUROPOD_BASE_DIR"
4242# Find URLs of backends you want to install from the releases page (https://github.com/uber/neuropod/releases) and install them
4343# by untarring them in your NEUROPOD_BASE_DIR directory.
4444# For example, to install a GPU enabled Torch 1.7 backend for CUDA 10.1, run
45- curl -L https://github.com/uber/neuropod/releases/download/v0.3.0-rc5 /libneuropod-gpu-cuda-10.1-linux-v0.3.0-rc5 -torchscript-1.7.0-backend.tar.gz | sudo tar -xz -C " $NEUROPOD_BASE_DIR "
45+ curl -L https://github.com/uber/neuropod/releases/download/v0.3.0-rc6 /libneuropod-gpu-cuda-10.1-linux-v0.3.0-rc6 -torchscript-1.7.0-backend.tar.gz | sudo tar -xz -C " $NEUROPOD_BASE_DIR "
4646```
4747
4848Multiple backends can be installed for a given framework and Neuropod will select the correct one when loading a model.
Original file line number Diff line number Diff line change 1- NEUROPOD_VERSION = "0.3.0rc5 "
1+ NEUROPOD_VERSION = "0.3.0rc6 "
Original file line number Diff line number Diff line change @@ -32,13 +32,13 @@ namespace neuropod
3232
3333// These are allowed to be 4 bits each
3434#define NEUROPOD_RELEASE_LEVEL NEUROPOD_RELEASE_LEVEL_RELEASE_CANDIDATE
35- #define NEUROPOD_RELEASE_SERIAL 5
35+ #define NEUROPOD_RELEASE_SERIAL 6
3636
3737static_assert (NEUROPOD_RELEASE_LEVEL < 16 , " NEUROPOD_RELEASE_LEVEL must be in the range 0 to 15 (4 bits)" );
3838static_assert (NEUROPOD_RELEASE_SERIAL < 16 , " NEUROPOD_RELEASE_SERIAL must be in the range 0 to 15 (4 bits)" );
3939
4040// The version as a string
41- #define NEUROPOD_VERSION " 0.3.0rc5 "
41+ #define NEUROPOD_VERSION " 0.3.0rc6 "
4242
4343// Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
4444// Use this for numeric comparisons
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ def has_ext_modules(foo):
1919
2020setup (
2121 name = "neuropod" ,
22- version = "0.3.0rc5 " ,
22+ version = "0.3.0rc6 " ,
2323 install_requires = REQUIRED_PACKAGES ,
2424 packages = find_packages (),
2525 package_data = {
You can’t perform that action at this time.
0 commit comments