diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 29f16ac1112d7..b6afe1e78c79e 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -17,7 +17,7 @@ "post_create": "bash .devcontainer/post_create_commands.sh", "bashrc": "echo \"alias python=python3\" >> ~/.bashrc" }, - "initializeCommand": "docker pull unifyai/ivy:latest", + "initializeCommand": "docker pull transpileai/ivy:latest", // Use 'forwardPorts' to make a list of ports inside the container available locally. // "forwardPorts": [], diff --git a/.devcontainer/image_gpu/devcontainer.json b/.devcontainer/image_gpu/devcontainer.json index ca899e132de7b..1430548e1801d 100644 --- a/.devcontainer/image_gpu/devcontainer.json +++ b/.devcontainer/image_gpu/devcontainer.json @@ -19,7 +19,7 @@ "post_create": "bash .devcontainer/post_create_commands.sh", "bashrc": "echo \"alias python=python3\" >> ~/.bashrc" }, - "initializeCommand": "docker pull unifyai/ivy:latest", + "initializeCommand": "docker pull transpileai/ivy:latest", // Use 'forwardPorts' to make a list of ports inside the container available locally. // "forwardPorts": [], diff --git a/.github/workflows/commit-tests.yml b/.github/workflows/commit-tests.yml index 23943e1488a56..ef7599f0d20a5 100644 --- a/.github/workflows/commit-tests.yml +++ b/.github/workflows/commit-tests.yml @@ -53,7 +53,7 @@ jobs: run: | pip3 install pymongo cd ivy - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest python3 scripts/run_tests_from_diff.py + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest python3 scripts/run_tests_from_diff.py continue-on-error: true - name: Check on failures diff --git a/.github/workflows/dockerfile-gpu-push.yml b/.github/workflows/dockerfile-gpu-push.yml index df978d2ee95a9..44df605b720de 100644 --- a/.github/workflows/dockerfile-gpu-push.yml +++ b/.github/workflows/dockerfile-gpu-push.yml @@ -22,5 +22,5 @@ jobs: - name: Build and push GPU image run: | - docker build --progress=plain --no-cache -t unifyai/ivy:latest-gpu -f docker/DockerfileGPU . - docker push unifyai/ivy:latest-gpu + docker build --progress=plain --no-cache -t transpileai/ivy:latest-gpu -f docker/DockerfileGPU . + docker push transpileai/ivy:latest-gpu diff --git a/.github/workflows/dockerfile-image.yml b/.github/workflows/dockerfile-image.yml index 9399579c53d4b..242a58332ccaa 100644 --- a/.github/workflows/dockerfile-image.yml +++ b/.github/workflows/dockerfile-image.yml @@ -18,4 +18,4 @@ jobs: - uses: actions/checkout@v3 - name: Build Dockerfile run: | - docker build . --file docker/Dockerfile --tag unifyai/ivy:$(date +%s) + docker build . --file docker/Dockerfile --tag transpileai/ivy:$(date +%s) diff --git a/.github/workflows/dockerfile-multiversion-push.yml b/.github/workflows/dockerfile-multiversion-push.yml index 79920c208d7d8..2c9a141080475 100644 --- a/.github/workflows/dockerfile-multiversion-push.yml +++ b/.github/workflows/dockerfile-multiversion-push.yml @@ -22,5 +22,5 @@ jobs: - name: Build and push Dockerfile run: | - docker build --progress=plain --no-cache -t unifyai/multiversion:latest -f docker/DockerfileMultiversion . + docker build --progress=plain --no-cache -t transpileai/multiversion:latest -f docker/DockerfileMultiversion . docker push unifyai/multiversion:latest diff --git a/.github/workflows/dockerfile-push.yml b/.github/workflows/dockerfile-push.yml index 201165db3963a..beaf37d2d2598 100644 --- a/.github/workflows/dockerfile-push.yml +++ b/.github/workflows/dockerfile-push.yml @@ -27,5 +27,5 @@ jobs: - name: Build and push Dockerfile run: | - docker build . --file docker/Dockerfile --tag unifyai/ivy:latest - docker push unifyai/ivy:latest + docker build . --file docker/Dockerfile --tag transpileai/ivy:latest + docker push transpileai/ivy:latest diff --git a/.github/workflows/duplication.yml b/.github/workflows/duplication.yml index 1f069a1c666e1..625f0042b4be4 100644 --- a/.github/workflows/duplication.yml +++ b/.github/workflows/duplication.yml @@ -21,7 +21,7 @@ jobs: id: tests run: | cd ivy - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest python3 scripts/duplicate.py + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest python3 scripts/duplicate.py continue-on-error: true - name: Check on failures diff --git a/.github/workflows/test-docstrings.yml b/.github/workflows/test-docstrings.yml index 3750fb961a3b3..a368dde604097 100644 --- a/.github/workflows/test-docstrings.yml +++ b/.github/workflows/test-docstrings.yml @@ -20,4 +20,4 @@ jobs: - name: Run Docstring Tests run: | cd ivy - docker run --rm -i -v "$(pwd)":/ivy unifyai/ivy:latest python3 -m pytest ivy_tests/test_docstrings.py -p no:warnings + docker run --rm -i -v "$(pwd)":/ivy transpileai/ivy:latest python3 -m pytest ivy_tests/test_docstrings.py -p no:warnings diff --git a/.github/workflows/update-test-dashboard.yml b/.github/workflows/update-test-dashboard.yml index 189a89be08155..337b2f1862d92 100644 --- a/.github/workflows/update-test-dashboard.yml +++ b/.github/workflows/update-test-dashboard.yml @@ -47,9 +47,9 @@ jobs: pip3 install pytest-json-report echo "html_url: ${{ steps.jobs.outputs.html_url }}" if [ "${{ steps.jobs.outputs.html_url }}" = "null" ]; then - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest scripts/update_test_dashboard/update_torch_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest scripts/update_test_dashboard/update_torch_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} else - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest scripts/update_test_dashboard/update_torch_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest scripts/update_test_dashboard/update_torch_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} fi update-frontends-torch-nn-functional: @@ -89,9 +89,9 @@ jobs: pip3 install pytest-json-report echo "html_url: ${{ steps.jobs.outputs.html_url }}" if [ "${{ steps.jobs.outputs.html_url }}" = "null" ]; then - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest scripts/update_test_dashboard/update_torch_nn_functional_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest scripts/update_test_dashboard/update_torch_nn_functional_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} else - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest scripts/update_test_dashboard/update_torch_nn_functional_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest scripts/update_test_dashboard/update_torch_nn_functional_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} fi update-frontends-tensorflow: @@ -130,9 +130,9 @@ jobs: pip3 install pytest-json-report echo "html_url: ${{ steps.jobs.outputs.html_url }}" if [ "${{ steps.jobs.outputs.html_url }}" = "null" ]; then - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest scripts/update_test_dashboard/update_tensorflow_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest scripts/update_test_dashboard/update_tensorflow_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} else - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest scripts/update_test_dashboard/update_tensorflow_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest scripts/update_test_dashboard/update_tensorflow_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} fi update-frontends-tensorflow-keras: @@ -169,9 +169,9 @@ jobs: pip3 install pytest-json-report echo "html_url: ${{ steps.jobs.outputs.html_url }}" if [ "${{ steps.jobs.outputs.html_url }}" = "null" ]; then - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest scripts/update_test_dashboard/update_tensorflow_keras_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest scripts/update_test_dashboard/update_tensorflow_keras_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} else - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest scripts/update_test_dashboard/update_tensorflow_keras_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest scripts/update_test_dashboard/update_tensorflow_keras_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} fi update-frontends-jax: @@ -208,9 +208,9 @@ jobs: pip3 install pytest-json-report echo "html_url: ${{ steps.jobs.outputs.html_url }}" if [ "${{ steps.jobs.outputs.html_url }}" = "null" ]; then - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest scripts/update_test_dashboard/update_jax_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest scripts/update_test_dashboard/update_jax_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} else - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest scripts/update_test_dashboard/update_jax_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest scripts/update_test_dashboard/update_jax_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} fi update-frontends-jax-lax: @@ -247,9 +247,9 @@ jobs: pip3 install pytest-json-report echo "html_url: ${{ steps.jobs.outputs.html_url }}" if [ "${{ steps.jobs.outputs.html_url }}" = "null" ]; then - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest scripts/update_test_dashboard/update_jax_lax_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest scripts/update_test_dashboard/update_jax_lax_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} else - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest scripts/update_test_dashboard/update_jax_lax_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest scripts/update_test_dashboard/update_jax_lax_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} fi update-frontends-jax-nn: @@ -286,9 +286,9 @@ jobs: pip3 install pytest-json-report echo "html_url: ${{ steps.jobs.outputs.html_url }}" if [ "${{ steps.jobs.outputs.html_url }}" = "null" ]; then - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest scripts/update_test_dashboard/update_jax_nn_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest scripts/update_test_dashboard/update_jax_nn_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} else - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest scripts/update_test_dashboard/update_jax_nn_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest scripts/update_test_dashboard/update_jax_nn_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} fi update-frontends-jax-numpy: @@ -327,9 +327,9 @@ jobs: pip3 install pytest-json-report echo "html_url: ${{ steps.jobs.outputs.html_url }}" if [ "${{ steps.jobs.outputs.html_url }}" = "null" ]; then - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest scripts/update_test_dashboard/update_jax_numpy_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest scripts/update_test_dashboard/update_jax_numpy_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} else - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest scripts/update_test_dashboard/update_jax_numpy_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest scripts/update_test_dashboard/update_jax_numpy_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} fi update-frontends-numpy: @@ -368,9 +368,9 @@ jobs: pip3 install pytest-json-report echo "html_url: ${{ steps.jobs.outputs.html_url }}" if [ "${{ steps.jobs.outputs.html_url }}" = "null" ]; then - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest scripts/update_test_dashboard/update_numpy_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest scripts/update_test_dashboard/update_numpy_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} else - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest scripts/update_test_dashboard/update_numpy_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest scripts/update_test_dashboard/update_numpy_frontends.sh ${{ matrix.submodule }} ${{ matrix.backend }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} fi update-ivy-core: @@ -409,9 +409,9 @@ jobs: pip3 install pytest-json-report echo "html_url: ${{ steps.jobs.outputs.html_url }}" if [ "${{ steps.jobs.outputs.html_url }}" = "null" ]; then - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest scripts/update_test_dashboard/update_ivy_core.sh ${{ matrix.submodule }} ${{ matrix.backend }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest scripts/update_test_dashboard/update_ivy_core.sh ${{ matrix.submodule }} ${{ matrix.backend }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} else - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest scripts/update_test_dashboard/update_ivy_core.sh ${{ matrix.submodule }} ${{ matrix.backend }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest scripts/update_test_dashboard/update_ivy_core.sh ${{ matrix.submodule }} ${{ matrix.backend }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} fi update-ivy-experimental-core: @@ -450,9 +450,9 @@ jobs: pip3 install pytest-json-report echo "html_url: ${{ steps.jobs.outputs.html_url }}" if [ "${{ steps.jobs.outputs.html_url }}" = "null" ]; then - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest scripts/update_test_dashboard/update_ivy_experimental_core.sh ${{ matrix.submodule }} ${{ matrix.backend }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest scripts/update_test_dashboard/update_ivy_experimental_core.sh ${{ matrix.submodule }} ${{ matrix.backend }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} else - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest scripts/update_test_dashboard/update_ivy_experimental_core.sh ${{ matrix.submodule }} ${{ matrix.backend }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest scripts/update_test_dashboard/update_ivy_experimental_core.sh ${{ matrix.submodule }} ${{ matrix.backend }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} fi update-ivy-experimental-nn: @@ -489,9 +489,9 @@ jobs: pip3 install pytest-json-report echo "html_url: ${{ steps.jobs.outputs.html_url }}" if [ "${{ steps.jobs.outputs.html_url }}" = "null" ]; then - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest scripts/update_test_dashboard/update_ivy_experimental_nn.sh ${{ matrix.submodule }} ${{ matrix.backend }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest scripts/update_test_dashboard/update_ivy_experimental_nn.sh ${{ matrix.submodule }} ${{ matrix.backend }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} else - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest scripts/update_test_dashboard/update_ivy_experimental_nn.sh ${{ matrix.submodule }} ${{ matrix.backend }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest scripts/update_test_dashboard/update_ivy_experimental_nn.sh ${{ matrix.submodule }} ${{ matrix.backend }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} fi update-ivy-nn: @@ -528,7 +528,7 @@ jobs: pip3 install pytest-json-report echo "html_url: ${{ steps.jobs.outputs.html_url }}" if [ "${{ steps.jobs.outputs.html_url }}" = "null" ]; then - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest scripts/update_test_dashboard/update_ivy_nn.sh ${{ matrix.submodule }} ${{ matrix.backend }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest scripts/update_test_dashboard/update_ivy_nn.sh ${{ matrix.submodule }} ${{ matrix.backend }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} else - docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest scripts/update_test_dashboard/update_ivy_nn.sh ${{ matrix.submodule }} ${{ matrix.backend }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} + docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest scripts/update_test_dashboard/update_ivy_nn.sh ${{ matrix.submodule }} ${{ matrix.backend }} ${{ steps.jobs.outputs.html_url }} ${{ secrets.IVY_DASHBOARD_DB_KEY }} fi diff --git a/docker/DockerfileApplied b/docker/DockerfileApplied index 290c251054668..c1f484342bca2 100644 --- a/docker/DockerfileApplied +++ b/docker/DockerfileApplied @@ -2,7 +2,7 @@ FROM ubuntu:20.04 WORKDIR /ivy ARG CLI -FROM unifyai/ivy:latest as base +FROM transpileai/ivy:latest as base COPY requirements/optional_applied.txt . RUN pip3 install --no-cache-dir -r optional_applied.txt diff --git a/docker/build_applied_dockerfile.sh b/docker/build_applied_dockerfile.sh index c6098626c8883..3fda50613781c 100644 --- a/docker/build_applied_dockerfile.sh +++ b/docker/build_applied_dockerfile.sh @@ -1,3 +1,3 @@ #!/bin/bash -docker build -t unifyai/ivy:latest --no-cache -f DockerfileApplied .. +docker build -t transpileai/ivy:latest --no-cache -f DockerfileApplied .. diff --git a/docker/build_gpu_dockerfile.sh b/docker/build_gpu_dockerfile.sh index ec946c8b97e89..3d49e4c89192c 100644 --- a/docker/build_gpu_dockerfile.sh +++ b/docker/build_gpu_dockerfile.sh @@ -1 +1 @@ -docker build --progress=plain --no-cache -t unifyai/ivy:latest-gpu -f DockerfileGPU .. +docker build --progress=plain --no-cache -t transpileai/ivy:latest-gpu -f DockerfileGPU .. diff --git a/docker/rebuild_all_dockerfiles.sh b/docker/rebuild_all_dockerfiles.sh index 386faff74fae5..19bbce0fba88f 100755 --- a/docker/rebuild_all_dockerfiles.sh +++ b/docker/rebuild_all_dockerfiles.sh @@ -1,4 +1,4 @@ #!/bin/bash -docker build -t unifyai/ivy:latest --no-cache -f Dockerfile .. -docker build -t unifyai/ivy:latest-gpu --no-cache -f DockerfileGPU .. +docker build -t transpileai/ivy:latest --no-cache -f Dockerfile .. +docker build -t transpileai/ivy:latest-gpu --no-cache -f DockerfileGPU .. diff --git a/scripts/determine_tests/array_api_det_coverage.py b/scripts/determine_tests/array_api_det_coverage.py index 0315a04139e79..cfae03436d82c 100644 --- a/scripts/determine_tests/array_api_det_coverage.py +++ b/scripts/determine_tests/array_api_det_coverage.py @@ -88,7 +88,7 @@ def main(): test_name, backend = test_backend.split(",") command = ( f"docker run --rm --env IVY_BACKEND={backend} --env " - 'ARRAY_API_TESTS_MODULE="ivy" -v "$(pwd)":/ivy unifyai/ivy:latest ' + 'ARRAY_API_TESTS_MODULE="ivy" -v "$(pwd)":/ivy transpileai/ivy:latest ' 'timeout 30m /bin/bash -c "coverage run --source=ivy,ivy_tests -m pytest ' f'{test_name} -k \\"{k_flag[backend]}\\" --disable-warnings --tb=short ' "--hypothesis-max-examples 5 -vv > coverage_output;coverage annotate > " diff --git a/scripts/determine_tests/determine_test_coverage.py b/scripts/determine_tests/determine_test_coverage.py index 098e0a61b9fb7..4fda545315f25 100644 --- a/scripts/determine_tests/determine_test_coverage.py +++ b/scripts/determine_tests/determine_test_coverage.py @@ -38,7 +38,7 @@ for test_backend in tqdm(test_names[start:end]): test_name, backend = test_backend.split(",") command = ( - f'docker run -v "$(pwd)":/ivy unifyai/ivy:latest timeout 30m /bin/bash -c "coverage run --source=ivy,' # noqa + f'docker run -v "$(pwd)":/ivy transpileai/ivy:latest timeout 30m /bin/bash -c "coverage run --source=ivy,' # noqa f"ivy_tests -m pytest {test_name} --num-examples 5 --backend {backend} --disable-warnings > coverage_output;coverage " # noqa f'annotate > coverage_output" ' ) diff --git a/scripts/determine_tests/determine_tests.py b/scripts/determine_tests/determine_tests.py index ef60b4d28c335..399ed9c3fbe98 100644 --- a/scripts/determine_tests/determine_tests.py +++ b/scripts/determine_tests/determine_tests.py @@ -147,7 +147,7 @@ def main(): print("Computing Coverage:", test_backend) test_name, backend = test_backend.split(",") command = ( - f'docker run -v "$(pwd)":/ivy unifyai/ivy:latest /bin/bash -c "coverage run --source=ivy,' # noqa + f'docker run -v "$(pwd)":/ivy transpileai/ivy:latest /bin/bash -c "coverage run --source=ivy,' # noqa f"ivy_tests -m pytest {test_name} --backend {backend} --disable-warnings > coverage_output;coverage " # noqa f'annotate > coverage_output" ' ) diff --git a/scripts/run_tests/array_api_run_tests.py b/scripts/run_tests/array_api_run_tests.py index 6417b24e46444..ee145bedeb498 100644 --- a/scripts/run_tests/array_api_run_tests.py +++ b/scripts/run_tests/array_api_run_tests.py @@ -85,7 +85,7 @@ def main(): test, backend = line.split(",") backend = backend.strip("\n") coll, submod, test_fn = get_submodule(test) - command = f'docker run --rm --env IVY_BACKEND={backend} --env ARRAY_API_TESTS_MODULE="ivy" --env REDIS_URL={redis_url} --env REDIS_PASSWD={redis_pass} -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest timeout 30m python3 -m pytest {test} -k "{k_flag[backend]}" --tb=short -vv' # noqa + command = f'docker run --rm --env IVY_BACKEND={backend} --env ARRAY_API_TESTS_MODULE="ivy" --env REDIS_URL={redis_url} --env REDIS_PASSWD={redis_pass} -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest timeout 30m python3 -m pytest {test} -k "{k_flag[backend]}" --tb=short -vv' # noqa print(f"\n{'*' * 100}") print(f"{line[:-1]}") print(f"{'*' * 100}\n") diff --git a/scripts/run_tests/array_api_run_tests_pr.py b/scripts/run_tests/array_api_run_tests_pr.py index 72c774b85a0e6..0248aa8705eda 100644 --- a/scripts/run_tests/array_api_run_tests_pr.py +++ b/scripts/run_tests/array_api_run_tests_pr.py @@ -26,7 +26,7 @@ def main(): for line in f: test, backend = line.split(",") backend = backend.strip("\n") - command = f'docker run --rm --env IVY_BACKEND={backend} --env ARRAY_API_TESTS_MODULE="ivy" -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest timeout 30m python3 -m pytest {test} -k "{k_flag[backend]}" --tb=short -vv' # noqa + command = f'docker run --rm --env IVY_BACKEND={backend} --env ARRAY_API_TESTS_MODULE="ivy" -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest timeout 30m python3 -m pytest {test} -k "{k_flag[backend]}" --tb=short -vv' # noqa print(f"\n{'*' * 100}") print(f"{line[:-1]}") print(f"{'*' * 100}\n") diff --git a/scripts/run_tests/run_tests.py b/scripts/run_tests/run_tests.py index f60131c799651..62e7b06e02277 100644 --- a/scripts/run_tests/run_tests.py +++ b/scripts/run_tests/run_tests.py @@ -62,7 +62,7 @@ # pull gpu image for gpu testing if device == "gpu": - os.system("docker pull unifyai/ivy:latest-gpu") + os.system("docker pull transpileai/ivy:latest-gpu") # read the tests to be run with open("tests_to_run", "r") as f: @@ -119,7 +119,7 @@ image = "unifyai/ivy:latest-gpu" device_str = " --device=gpu:0" device_access_str = " --gpus all" - os.system("docker pull unifyai/ivy:latest-gpu") + os.system("docker pull transpileai/ivy:latest-gpu") os.system( f"docker run{device_access_str} --name test-container -v " diff --git a/scripts/run_tests/run_tests_pr.py b/scripts/run_tests/run_tests_pr.py index fc7a08e43208f..9106d13f5630d 100644 --- a/scripts/run_tests/run_tests_pr.py +++ b/scripts/run_tests/run_tests_pr.py @@ -14,7 +14,7 @@ print(f"{'*' * 100}\n") sys.stdout.flush() ret = os.system( - f'docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest python3 -m pytest --tb=short {test_path} --skip-trace-testing --skip-trace-testing-each --backend {backend}' # noqa + f'docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest python3 -m pytest --tb=short {test_path} --skip-trace-testing --skip-trace-testing-each --backend {backend}' # noqa ) if ret != 0: failed = True diff --git a/scripts/shell/run_tests.sh b/scripts/shell/run_tests.sh index 1f75956bbbcca..3d5137b916c48 100755 --- a/scripts/shell/run_tests.sh +++ b/scripts/shell/run_tests.sh @@ -1,2 +1,2 @@ #!/bin/bash -e -docker run --rm -it -v "$(pwd)":/ivy unifyai/ivy:latest python3 -m pytest ivy_tests/ +docker run --rm -it -v "$(pwd)":/ivy transpileai/ivy:latest python3 -m pytest ivy_tests/ diff --git a/scripts/shell/test_array_api.sh b/scripts/shell/test_array_api.sh index dbcf90e66d2b5..a9be851d330e1 100755 --- a/scripts/shell/test_array_api.sh +++ b/scripts/shell/test_array_api.sh @@ -8,4 +8,4 @@ fi mkdir -p .hypothesis # shellcheck disable=SC2046 -docker run --rm --env IVY_BACKEND="$1" --env ARRAY_API_TESTS_MODULE="ivy" --env REDIS_URL="$3" --env REDIS_PASSWD="$4" -v $(pwd):/ivy -v $(pwd)/.hypothesis:/.hypothesis unifyai/ivy:latest python3 -m pytest ivy_tests/array_api_testing/test_array_api/array_api_tests/"$2".py -k "$ARRAY_API_TESTS_K_FLAG" --tb=short -vv +docker run --rm --env IVY_BACKEND="$1" --env ARRAY_API_TESTS_MODULE="ivy" --env REDIS_URL="$3" --env REDIS_PASSWD="$4" -v $(pwd):/ivy -v $(pwd)/.hypothesis:/.hypothesis transpileai/ivy:latest python3 -m pytest ivy_tests/array_api_testing/test_array_api/array_api_tests/"$2".py -k "$ARRAY_API_TESTS_K_FLAG" --tb=short -vv diff --git a/scripts/shell/test_dependencies.sh b/scripts/shell/test_dependencies.sh index 6302c7ccfd4e2..4e73e3fb2ce4f 100755 --- a/scripts/shell/test_dependencies.sh +++ b/scripts/shell/test_dependencies.sh @@ -1,4 +1,4 @@ #!/bin/bash # shellcheck disable=SC2046 -docker run --rm -v "$(pwd)":/ivy unifyai/ivy:latest python3 ivy/test_dependencies.py -fp ivy/requirements.txt,ivy/optional.txt +docker run --rm -v "$(pwd)":/ivy transpileai/ivy:latest python3 ivy/test_dependencies.py -fp ivy/requirements.txt,ivy/optional.txt diff --git a/scripts/shell/test_experimental_core.sh b/scripts/shell/test_experimental_core.sh index e4e5de0997dfd..f2eb0f1a52d43 100755 --- a/scripts/shell/test_experimental_core.sh +++ b/scripts/shell/test_experimental_core.sh @@ -1,2 +1,2 @@ #!/bin/bash -e -docker run --rm --env REDIS_URL="$3" --env REDIS_PASSWD="$4" -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest python3 -m pytest --backend "$1" ivy_tests/test_ivy/test_functional/test_experimental/test_core/"$2".py --tb=short +docker run --rm --env REDIS_URL="$3" --env REDIS_PASSWD="$4" -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest python3 -m pytest --backend "$1" ivy_tests/test_ivy/test_functional/test_experimental/test_core/"$2".py --tb=short diff --git a/scripts/shell/test_experimental_nn.sh b/scripts/shell/test_experimental_nn.sh index 52d758d04e178..fa854f62a5ca5 100755 --- a/scripts/shell/test_experimental_nn.sh +++ b/scripts/shell/test_experimental_nn.sh @@ -1,2 +1,2 @@ #!/bin/bash -e -docker run --rm --env REDIS_URL="$3" --env REDIS_PASSWD="$4" -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest python3 -m pytest --backend "$1" ivy_tests/test_ivy/test_functional/test_experimental/test_nn/"$2".py --tb=short +docker run --rm --env REDIS_URL="$3" --env REDIS_PASSWD="$4" -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest python3 -m pytest --backend "$1" ivy_tests/test_ivy/test_functional/test_experimental/test_nn/"$2".py --tb=short diff --git a/scripts/shell/test_ivy_core.sh b/scripts/shell/test_ivy_core.sh index 179de1a1b5643..a2c15cb72fae4 100755 --- a/scripts/shell/test_ivy_core.sh +++ b/scripts/shell/test_ivy_core.sh @@ -1,2 +1,2 @@ #!/bin/bash -e -docker run --rm --env REDIS_URL="$3" --env REDIS_PASSWD="$4" -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest python3 -m pytest --backend "$1" ivy_tests/test_ivy/test_functional/test_core/"$2".py --tb=short +docker run --rm --env REDIS_URL="$3" --env REDIS_PASSWD="$4" -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest python3 -m pytest --backend "$1" ivy_tests/test_ivy/test_functional/test_core/"$2".py --tb=short diff --git a/scripts/shell/test_ivy_nn.sh b/scripts/shell/test_ivy_nn.sh index 152560f306a52..cb578ff85276f 100755 --- a/scripts/shell/test_ivy_nn.sh +++ b/scripts/shell/test_ivy_nn.sh @@ -1,2 +1,2 @@ #!/bin/bash -e -docker run --rm --env REDIS_URL="$3" --env REDIS_PASSWD="$4" -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest python3 -m pytest --backend "$1" ivy_tests/test_ivy/test_functional/test_nn/"$2".py --tb=short +docker run --rm --env REDIS_URL="$3" --env REDIS_PASSWD="$4" -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest python3 -m pytest --backend "$1" ivy_tests/test_ivy/test_functional/test_nn/"$2".py --tb=short diff --git a/scripts/shell/test_ivy_stateful.sh b/scripts/shell/test_ivy_stateful.sh index c946bc98af09d..20a4863ed9675 100755 --- a/scripts/shell/test_ivy_stateful.sh +++ b/scripts/shell/test_ivy_stateful.sh @@ -1,2 +1,2 @@ #!/bin/bash -e -docker run --rm --env REDIS_URL="$3" --env REDIS_PASSWD="$4" -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest python3 -m pytest --backend "$1" ivy_tests/test_ivy/test_stateful/"$2".py --tb=line +docker run --rm --env REDIS_URL="$3" --env REDIS_PASSWD="$4" -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis transpileai/ivy:latest python3 -m pytest --backend "$1" ivy_tests/test_ivy/test_stateful/"$2".py --tb=line diff --git a/scripts/shell/test_jax_frontend.sh b/scripts/shell/test_jax_frontend.sh index 9a3c0b8a02ded..6b6fbda810259 100755 --- a/scripts/shell/test_jax_frontend.sh +++ b/scripts/shell/test_jax_frontend.sh @@ -1,2 +1,2 @@ #!/bin/bash -e -docker run --rm --env REDIS_URL="$3" --env REDIS_PASSWD="$4" -v `pwd`:/ivy -v `pwd`/.hypothesis:/.hypothesis unifyai/ivy:latest python3 -m pytest --backend "$1" ivy_tests/test_ivy/test_frontends/test_jax/"$2".py --tb=short +docker run --rm --env REDIS_URL="$3" --env REDIS_PASSWD="$4" -v `pwd`:/ivy -v `pwd`/.hypothesis:/.hypothesis transpileai/ivy:latest python3 -m pytest --backend "$1" ivy_tests/test_ivy/test_frontends/test_jax/"$2".py --tb=short diff --git a/scripts/shell/test_numpy_frontend.sh b/scripts/shell/test_numpy_frontend.sh index 310c671025f8d..67cab85adc997 100755 --- a/scripts/shell/test_numpy_frontend.sh +++ b/scripts/shell/test_numpy_frontend.sh @@ -1,2 +1,2 @@ #!/bin/bash -e -docker run --rm --env REDIS_URL="$3" --env REDIS_PASSWD="$4" -v `pwd`:/ivy -v `pwd`/.hypothesis:/.hypothesis unifyai/ivy:latest python3 -m pytest --backend "$1" ivy_tests/test_ivy/test_frontends/test_numpy/"$2" --tb=short +docker run --rm --env REDIS_URL="$3" --env REDIS_PASSWD="$4" -v `pwd`:/ivy -v `pwd`/.hypothesis:/.hypothesis transpileai/ivy:latest python3 -m pytest --backend "$1" ivy_tests/test_ivy/test_frontends/test_numpy/"$2" --tb=short diff --git a/scripts/shell/test_tensorflow_frontend.sh b/scripts/shell/test_tensorflow_frontend.sh index 9eee8ee3374cb..848f2477272dc 100755 --- a/scripts/shell/test_tensorflow_frontend.sh +++ b/scripts/shell/test_tensorflow_frontend.sh @@ -1,2 +1,2 @@ #!/bin/bash -e -docker run --rm --env REDIS_URL="$3" --env REDIS_PASSWD="$4" -v `pwd`:/ivy -v `pwd`/.hypothesis:/.hypothesis unifyai/ivy:latest python3 -m pytest --backend "$1" ivy_tests/test_ivy/test_frontends/test_tensorflow/"$2".py --tb=short +docker run --rm --env REDIS_URL="$3" --env REDIS_PASSWD="$4" -v `pwd`:/ivy -v `pwd`/.hypothesis:/.hypothesis transpileai/ivy:latest python3 -m pytest --backend "$1" ivy_tests/test_ivy/test_frontends/test_tensorflow/"$2".py --tb=short diff --git a/scripts/shell/test_torch_frontend.sh b/scripts/shell/test_torch_frontend.sh index 6dcac9d99eb42..940dbd84bd5d6 100755 --- a/scripts/shell/test_torch_frontend.sh +++ b/scripts/shell/test_torch_frontend.sh @@ -1,2 +1,2 @@ #!/bin/bash -e -docker run --rm --env REDIS_URL="$3" --env REDIS_PASSWD="$4" -v `pwd`:/ivy -v `pwd`/.hypothesis:/.hypothesis unifyai/ivy:latest python3 -m pytest --backend "$1" ivy_tests/test_ivy/test_frontends/test_torch/"$2".py --tb=short +docker run --rm --env REDIS_URL="$3" --env REDIS_PASSWD="$4" -v `pwd`:/ivy -v `pwd`/.hypothesis:/.hypothesis transpileai/ivy:latest python3 -m pytest --backend "$1" ivy_tests/test_ivy/test_frontends/test_torch/"$2".py --tb=short