|  | 
| 39 | 39 |       package-name: ${{ matrix.package-name }} | 
| 40 | 40 |       trigger-event: ${{ github.event_name }} | 
| 41 | 41 | 
 | 
| 42 |  | -  # tests-py-torchscript-fe: | 
| 43 |  | -  #   name: Test torchscript frontend [Python] | 
| 44 |  | -  #   needs: [generate-matrix, build] | 
| 45 |  | -  #   strategy: | 
| 46 |  | -  #     fail-fast: false | 
| 47 |  | -  #     matrix: | 
| 48 |  | -  #       include: | 
| 49 |  | -  #         - repository: pytorch/tensorrt | 
| 50 |  | -  #           package-name: torch_tensorrt | 
| 51 |  | -  #           pre-script: packaging/pre_build_script.sh | 
| 52 |  | -  #   uses: pytorch/tensorrt/.github/workflows/windows-test.yml@main | 
| 53 |  | -  #   with: | 
| 54 |  | -  #     job-name: tests-py-torchscript-fe | 
| 55 |  | -  #     repository: "pytorch/tensorrt" | 
| 56 |  | -  #     ref: "" | 
| 57 |  | -  #     test-infra-repository: pytorch/test-infra | 
| 58 |  | -  #     test-infra-ref: main | 
| 59 |  | -  #     build-matrix: ${{ needs.generate-matrix.outputs.matrix }} | 
| 60 |  | -  #     pre-script: ${{ matrix.pre-script }} | 
| 61 |  | -  #     script: | | 
| 62 |  | -  #       export USE_HOST_DEPS=1 | 
| 63 |  | -  #       export LD_LIBRARY_PATH=/usr/lib64:$LD_LIBRARY_PATH | 
| 64 |  | -  #       pushd . | 
| 65 |  | -  #       cd tests/modules | 
| 66 |  | -  #       ${CONDA_RUN} python -m pip install --pre -r requirements.txt --use-deprecated=legacy-resolver | 
| 67 |  | -  #       ${CONDA_RUN} python hub.py | 
| 68 |  | -  #       popd | 
| 69 |  | -  #       pushd . | 
| 70 |  | -  #       cd tests/py/ts | 
| 71 |  | -  #       ${CONDA_RUN} python -m pip install --pre pytest timm transformers parameterized expecttest==0.1.6 --use-deprecated=legacy-resolver | 
| 72 |  | -  #       ${CONDA_RUN} python -m pytest --junitxml=${RUNNER_TEST_RESULTS_DIR}/ts_api_test_results.xml api/ | 
| 73 |  | -  #       ${CONDA_RUN} python -m pytest --junitxml=${RUNNER_TEST_RESULTS_DIR}/ts_models_test_results.xml models/ | 
| 74 |  | -  #       ${CONDA_RUN} python -m pytest --junitxml=${RUNNER_TEST_RESULTS_DIR}/ts_integrations_test_results.xml integrations/ | 
| 75 |  | -  #       popd | 
| 76 |  | - | 
| 77 | 42 |   tests-py-dynamo-converters: | 
| 78 | 43 |     name: Test dynamo converters [Python] | 
| 79 | 44 |     needs: [generate-matrix, build] | 
| @@ -127,32 +92,6 @@ jobs: | 
| 127 | 92 |         ${CONDA_RUN} python -m pytest --junitxml=${RUNNER_TEST_RESULTS_DIR}/dyn_models_export.xml --ir dynamo models/test_dyn_models.py | 
| 128 | 93 |         popd | 
| 129 | 94 | 
 | 
| 130 |  | -  tests-py-dynamo-serde: | 
| 131 |  | -    name: Test dynamo export serde [Python] | 
| 132 |  | -    needs: [generate-matrix, build] | 
| 133 |  | -    strategy: | 
| 134 |  | -      fail-fast: false | 
| 135 |  | -      matrix: | 
| 136 |  | -        include: | 
| 137 |  | -          - repository: pytorch/tensorrt | 
| 138 |  | -            package-name: torch_tensorrt | 
| 139 |  | -    uses: ./.github/workflows/windows-test.yml | 
| 140 |  | -    with: | 
| 141 |  | -      job-name: tests-py-dynamo-serde | 
| 142 |  | -      repository: "pytorch/tensorrt" | 
| 143 |  | -      ref: "" | 
| 144 |  | -      test-infra-repository: pytorch/test-infra | 
| 145 |  | -      test-infra-ref: main | 
| 146 |  | -      build-matrix: ${{ needs.generate-matrix.outputs.matrix }} | 
| 147 |  | -      pre-script: packaging/driver_upgrade.bat | 
| 148 |  | -      script: | | 
| 149 |  | -        export USE_HOST_DEPS=1 | 
| 150 |  | -        pushd . | 
| 151 |  | -        cd tests/py/dynamo | 
| 152 |  | -        ${CONDA_RUN} python -m pip install --pre pytest-xdist timm transformers parameterized expecttest==0.1.6 --use-deprecated=legacy-resolver | 
| 153 |  | -        ${CONDA_RUN} python -m pytest --junitxml=${RUNNER_TEST_RESULTS_DIR}/export_serde_test_results.xml --ir dynamo models/test_export_serde.py | 
| 154 |  | -        popd | 
| 155 |  | -
 | 
| 156 | 95 |   tests-py-torch-compile-be: | 
| 157 | 96 |     name: Test torch compile backend [Python] | 
| 158 | 97 |     needs: [generate-matrix, build] | 
| @@ -207,30 +146,3 @@ jobs: | 
| 207 | 146 |         ${CONDA_RUN} python -m pytest -n 4 --junitxml=${RUNNER_TEST_RESULTS_DIR}/tests_py_dynamo_core_partitioning_test_results.xml partitioning/ | 
| 208 | 147 |         ${CONDA_RUN} python -m pytest -n 4 --junitxml=${RUNNER_TEST_RESULTS_DIR}/tests_py_dynamo_core_lowering_test_results.xml lowering/ | 
| 209 | 148 |         popd | 
| 210 |  | -
 | 
| 211 |  | -  # tests-py-core: | 
| 212 |  | -  #   name: Test core [Python] | 
| 213 |  | -  #   needs: [generate-matrix, build] | 
| 214 |  | -  #   strategy: | 
| 215 |  | -  #     fail-fast: false | 
| 216 |  | -  #     matrix: | 
| 217 |  | -  #       include: | 
| 218 |  | -  #         - repository: pytorch/tensorrt | 
| 219 |  | -  #           package-name: torch_tensorrt | 
| 220 |  | -  #           pre-script: packaging/pre_build_script.sh | 
| 221 |  | -  #   uses: pytorch/tensorrt/.github/workflows/windows-test.yml@main | 
| 222 |  | -  #   with: | 
| 223 |  | -  #     job-name: tests-py-core | 
| 224 |  | -  #     repository: "pytorch/tensorrt" | 
| 225 |  | -  #     ref: "" | 
| 226 |  | -  #     test-infra-repository: pytorch/test-infra | 
| 227 |  | -  #     test-infra-ref: main | 
| 228 |  | -  #     build-matrix: ${{ needs.generate-matrix.outputs.matrix }} | 
| 229 |  | -  #     pre-script: ${{ matrix.pre-script }} | 
| 230 |  | -  #     script: | | 
| 231 |  | -  #       export USE_HOST_DEPS=1 | 
| 232 |  | -  #       pushd . | 
| 233 |  | -  #       cd tests/py/core | 
| 234 |  | -  #       ${CONDA_RUN} python -m pip install --pre pytest-xdist timm transformers parameterized expecttest==0.1.6 --use-deprecated=legacy-resolver | 
| 235 |  | -  #       ${CONDA_RUN} python -m pytest -n 4 --junitxml=${RUNNER_TEST_RESULTS_DIR}/tests_py_core_test_results.xml . | 
| 236 |  | -  #       popd | 
0 commit comments