From e33fa024a7ef1a0b2da12a21bdc706aa5a1fd036 Mon Sep 17 00:00:00 2001 From: Kenzo Lobos-Tsunekawa Date: Fri, 21 Feb 2025 13:56:56 +0900 Subject: [PATCH] chore: updated spconv repo link Signed-off-by: Kenzo Lobos-Tsunekawa --- ansible/roles/spconv/README.md | 4 ++-- ansible/roles/spconv/tasks/main.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ansible/roles/spconv/README.md b/ansible/roles/spconv/README.md index ff3c968f0b..a53ea48e67 100644 --- a/ansible/roles/spconv/README.md +++ b/ansible/roles/spconv/README.md @@ -1,11 +1,11 @@ # spconv This role install the `cumm` and `spconv` libraries needed to perform sparse convolutions. -The [original implementation](https://github.com/traveller59/spconv) did not provide a shared library, which is pre-generated c++ code and pre-compiled libraries were prepared [separatedly](https://github.com/knzo25/spconv_cpp). +The [original implementation](https://github.com/traveller59/spconv) did not provide a shared library, which is pre-generated c++ code and pre-compiled libraries were prepared [separatedly](https://github.com/autowarefoundation/spconv_cpp). ## Manual Installation -For manual installation, please follow the instructions in [this](https://github.com/knzo25/spconv_cpp) repository. +For manual installation, please follow the instructions in [this](https://github.com/autowarefoundation/spconv_cpp) repository. ## Run the playbook diff --git a/ansible/roles/spconv/tasks/main.yaml b/ansible/roles/spconv/tasks/main.yaml index 806dfa550e..f7c0c72276 100644 --- a/ansible/roles/spconv/tasks/main.yaml +++ b/ansible/roles/spconv/tasks/main.yaml @@ -6,7 +6,7 @@ - name: Download the cumm package ansible.builtin.get_url: mode: "0644" - url: https://github.com/knzo25/spconv_cpp/releases/download/spconv_v{{ spconv_version }}%2Bcumm_v{{ cumm_version }}/cumm_{{ cumm_version }}_{{ normalized_arch }}.deb + url: https://github.com/autowarefoundation/spconv_cpp/releases/download/spconv_v{{ spconv_version }}%2Bcumm_v{{ cumm_version }}/cumm_{{ cumm_version }}_{{ normalized_arch }}.deb dest: /tmp/cumm.deb - name: Install the cumm package @@ -18,7 +18,7 @@ - name: Download the spconv package ansible.builtin.get_url: mode: "0644" - url: https://github.com/knzo25/spconv_cpp/releases/download/spconv_v{{ spconv_version }}%2Bcumm_v{{ cumm_version }}/spconv_{{ spconv_version }}_{{ normalized_arch }}.deb + url: https://github.com/autowarefoundation/spconv_cpp/releases/download/spconv_v{{ spconv_version }}%2Bcumm_v{{ cumm_version }}/spconv_{{ spconv_version }}_{{ normalized_arch }}.deb dest: /tmp/spconv.deb - name: Install the spconv package