From 1f7b5f3eb6b4b625dbc09510a497b71a22aa62c9 Mon Sep 17 00:00:00 2001 From: Gigon Bae Date: Tue, 10 Aug 2021 17:52:05 -0700 Subject: [PATCH] PyPI v21.08.01 release --- README.md | 3 +-- python/cucim/CHANGELOG.md | 8 ++++++++ python/cucim/README.md | 8 +++++++- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 14c8e7e85..884a81f6c 100644 --- a/README.md +++ b/README.md @@ -22,8 +22,6 @@ `` should be 11.0+ (e.g., `11.0`, `11.2`, etc.) -**NOTE:** The first cuCIM conda package (v0.19.0) would be available on 4/19/2021. - #### Conda (nightlies) > conda create -n cucim -c rapidsai-nightly -c conda-forge cucim cudatoolkit=`` @@ -53,6 +51,7 @@ docker rm -v ${tmp_id} ``` ## Build/Install from Source + See build [instructions](CONTRIBUTING.md#setting-up-your-build-environment). ## Contributing Guide diff --git a/python/cucim/CHANGELOG.md b/python/cucim/CHANGELOG.md index 185797ff2..4fab12030 100644 --- a/python/cucim/CHANGELOG.md +++ b/python/cucim/CHANGELOG.md @@ -1,6 +1,14 @@ # Changelog +## [21.08.01](https://github.com/rapidsai/cucim/wiki/release_notes_v21.08.01) + +- [New] Add skimage.morphology.thin ([#27](https://github.com/rapidsai/cucim/pull/27)) +- [Bug] Fix missing `__array_interface__` for associated_image(): ([#48](https://github.com/rapidsai/cucim/pull/48), [#65](https://github.com/rapidsai/cucim/pull/65)) +- [Testing] Added unit and performance tests for TIFF loaders ([#62](https://github.com/rapidsai/cucim/pull/62)) +- [Bug] Fix Windows int-type Bug: ([#72](https://github.com/rapidsai/cucim/pull/72)) +- [Update] Use more descriptive ElementwiseKernel names in cucim.skimage: ([#75](https://github.com/rapidsai/cucim/pull/75)) + ## [21.06.00](https://github.com/rapidsai/cucim/wiki/release_notes_v21.06.00) - Implement cache mechanism diff --git a/python/cucim/README.md b/python/cucim/README.md index c33e62787..304888251 100644 --- a/python/cucim/README.md +++ b/python/cucim/README.md @@ -8,6 +8,8 @@ - [GTC 2021 cuCIM: A GPU Image I/O and Processing Toolkit [S32194]](https://www.nvidia.com/en-us/gtc/catalog/?search=cuCIM#/) - [video](https://gtc21.event.nvidia.com/media/cuCIM%3A%20A%20GPU%20Image%20I_O%20and%20Processing%20Toolkit%20%5BS32194%5D/1_fwfxd0iu) +- [SciPy 2021 cuCIM - A GPU image I/O and processing library](https://www.scipy2021.scipy.org/) + - [video](https://youtu.be/G46kOOM9xbQ) ## Quick Start @@ -21,7 +23,7 @@ pip install scipy scikit-image cupy-cuda110==9.0.0b3 ``` ### Jupyter Notebooks -Please check out our [Welcome](https://github.com/rapidsai/cucim/blob/branch-0.20/notebooks/Welcome.ipynb) notebook. +Please check out our [Welcome](https://github.com/rapidsai/cucim/blob/branch-21.08/notebooks/Welcome.ipynb) notebook. ### Open Image @@ -90,6 +92,10 @@ visualize(region) #Image.fromarray(np.asarray(region)) ``` +### Using Cache + +Please look at this [notebook](https://nbviewer.jupyter.org/github/rapidsai/cucim/blob/v21.08.01/notebooks/Using_Cache.ipynb). + ### Using scikit-image API Import `cucim.skimage` instead of `skimage`.