Skip to content

Commit d1d5305

Browse files
authored
Update URL references following the organization name change (2.0) (ivy-llc#28775)
1 parent 9a24f65 commit d1d5305

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/binaries.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- name: Checkout 🛎️Binaries
99
uses: actions/checkout@v4
1010
with:
11-
repository: Transpile-AI/binaries
11+
repository: ivy-llc/binaries
1212
token: ${{ secrets.DEV_BOT_GENERAL_PAT }}
1313
path: binaries
1414

CITATION.cff

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ identifiers:
2020
- type: doi
2121
value: 10.48550/arXiv.2102.02886
2222
description: 'arXiv preprint '
23-
repository-code: 'https://github.com/Transpile-AI/ivy'
23+
repository-code: 'https://github.com/ivy-llc/ivy'
2424
url: 'https://unify.ai/'
2525
repository: 'https://github.com/unifyai/'
2626
abstract: 'We introduce Ivy, a templated Deep Learning (DL) framework which abstracts existing DL frameworks. Ivy unifies the core functions of these frameworks to exhibit consistent call signatures, syntax and input-output behaviour. New high-level framework-agnostic functions and classes, which are usable alongside framework-specific code, can then be implemented as compositions of the unified low-level Ivy functions. Ivy currently supports TensorFlow, PyTorch, MXNet, Jax and NumPy. We also release four pure-Ivy libraries for mechanics, 3D vision, robotics, and differentiable environments. Through our evaluations, we show that Ivy can significantly reduce lines of code with a runtime overhead of less than 1% in most cases. We welcome developers to join the Ivy community by writing their own functions, layers and libraries in Ivy, maximizing their audience and helping to accelerate DL research through inter-framework codebases.'

docker/DockerfileAppleSilicon

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ RUN apt-get update && \
187187
pip3 install setuptools==58.5.3
188188

189189
# Install Ivy Upstream
190-
RUN git clone --progress --recurse-submodules https://github.com/Transpile-AI/ivy --depth 1 && \
190+
RUN git clone --progress --recurse-submodules https://github.com/ivy-llc/ivy --depth 1 && \
191191
cd ivy && \
192192
cd ivy_tests/array_api_testing/test_array_api && \
193193
pip3 install --no-cache-dir -r requirements.txt

ivy/utils/binaries.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def check_for_binaries():
4646
"system or that newer binaries were available. In the latter "
4747
"case, calling ivy.utils.cleanup_and_fetch_binaries() should "
4848
"fetch the binaries binaries. Feel free to create an issue on "
49-
"https://github.com/Transpile-AI/ivy.git in "
49+
"https://github.com/ivy-llc/ivy.git in "
5050
"case of the former\n"
5151
)
5252
logging.warning(
@@ -103,7 +103,7 @@ def cleanup_and_fetch_binaries(clean=True):
103103
search_path = f"{module}/{file_name}"
104104
try:
105105
response = request.urlopen(
106-
"https://github.com/Transpile-AI/binaries/raw/"
106+
"https://github.com/ivy-llc/binaries/raw/"
107107
f"{version}/{search_path}",
108108
timeout=40,
109109
)

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def _strip(line):
7878
search_path = f"{module}/{file_name}"
7979
try:
8080
response = request.urlopen(
81-
f"https://github.com/Transpile-AI/binaries/raw/{version}/{search_path}",
81+
f"https://github.com/ivy-llc/binaries/raw/{version}/{search_path}",
8282
timeout=40,
8383
)
8484
os.makedirs(os.path.dirname(path), exist_ok=True)
@@ -126,7 +126,7 @@ def _strip(line):
126126
url="https://ivy.dev",
127127
project_urls={
128128
"Docs": "https://ivy.dev/docs/",
129-
"Source": "https://github.com/Transpile-AI/ivy",
129+
"Source": "https://github.com/ivy-llc/ivy",
130130
},
131131
include_package_data=True,
132132
packages=setuptools.find_packages(),

0 commit comments

Comments
 (0)