Commit 855297ae authored by Boris Bonev's avatar Boris Bonev
Browse files

Added unittest badge to readme

parent 170dee9c
name: Run Unit Tests name: Unit tests
on: [push] on: [push]
...@@ -13,16 +13,6 @@ jobs: ...@@ -13,16 +13,6 @@ jobs:
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
python-version: 3.9 python-version: 3.9
# - name: Install torch-harmonics
# run: |
# CWD=`pwd`
# echo 'Cloning repos in ${CWD}'
# mkdir git_repos
# cd git_repos
# git clone git@github.com:NVIDIA/torch-harmonics.git
# cd torch-harmonics
# python -m pip install -e .
# cd ../..
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip setuptools wheel python -m pip install --upgrade pip setuptools wheel
......
...@@ -31,6 +31,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ...@@ -31,6 +31,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
<p align="center"> <p align="center">
<img src="https://raw.githubusercontent.com/NVIDIA/torch-harmonics/main/images/logo/logo.png" width="568"> <img src="https://raw.githubusercontent.com/NVIDIA/torch-harmonics/main/images/logo/logo.png" width="568">
<br> <br>
<a href="https://github.com/NVIDIA/torch-harmonics/actions/workflows/tests.yml"><img src="https://github.com/NVIDIA/torch-harmonics/actions/workflows/tests.yml/badge.svg"></a>
<a href="https://pypi.org/project/torch_harmonics/"><img src="https://img.shields.io/pypi/v/torch_harmonics"></a> <a href="https://pypi.org/project/torch_harmonics/"><img src="https://img.shields.io/pypi/v/torch_harmonics"></a>
</p> </p>
...@@ -159,7 +160,7 @@ sht = th.RealSHT(nlat, nlon, grid="equiangular").to(device).float() ...@@ -159,7 +160,7 @@ sht = th.RealSHT(nlat, nlon, grid="equiangular").to(device).float()
coeffs = sht(signal) coeffs = sht(signal)
``` ```
`torch_harmonics` also implements a distributed variant of the SHT located in `torch-harmonics.distributed`. To enable scalable model-parallelism, `torch-harmonics` implements a distributed variant of the SHT located in `torch_harmonics.distributed`.
### Cite us ### Cite us
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment