mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-16 21:00:14 +00:00
update TRT EP CI's to use latest model.zip (#1637)
This commit is contained in:
parent
6b89c7ad04
commit
372b657900
3 changed files with 17 additions and 7 deletions
|
|
@ -433,7 +433,21 @@ int real_main(int argc, char* argv[], Ort::Env& env) {
|
|||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef USE_TENSORRT
|
||||
broken_tests.insert({"fp16_shufflenet", "TRT EP bug"});
|
||||
broken_tests.insert({"fp16_inception_v1", "TRT EP bug"});
|
||||
broken_tests.insert({"fp16_tiny_yolov2", "TRT EP bug"});
|
||||
broken_tests.insert({"tf_inception_v3", "TRT Engine couldn't be created"});
|
||||
broken_tests.insert({"tf_mobilenet_v1_1.0_224", "TRT Engine couldn't be created"});
|
||||
broken_tests.insert({"tf_mobilenet_v2_1.0_224", "TRT Engine couldn't be created"});
|
||||
broken_tests.insert({"tf_mobilenet_v2_1.4_224", "TRT Engine couldn't be created"});
|
||||
broken_tests.insert({"tf_resnet_v1_101", "TRT Engine couldn't be created"});
|
||||
broken_tests.insert({"tf_resnet_v1_152", "TRT Engine couldn't be created"});
|
||||
broken_tests.insert({"tf_resnet_v1_50", "TRT Engine couldn't be created"});
|
||||
broken_tests.insert({"tf_resnet_v2_101", "TRT Engine couldn't be created"});
|
||||
broken_tests.insert({"tf_resnet_v2_152", "TRT Engine couldn't be created"});
|
||||
broken_tests.insert({"tf_resnet_v2_50", "TRT Engine couldn't be created"});
|
||||
#endif
|
||||
|
||||
#ifdef USE_CUDA
|
||||
broken_tests.insert({"mxnet_arcface", "result mismatch"});
|
||||
|
|
|
|||
|
|
@ -15,8 +15,7 @@ jobs:
|
|||
displayName: 'Download test data'
|
||||
inputs:
|
||||
scriptPath: '$(Build.SourcesDirectory)/tools/ci_build/github/download_test_data.py'
|
||||
# There are some tests in 20190130.zip that TensorRT can't run. Instead here use 20181210 opset8 for TensorRT test.
|
||||
arguments: --test_data_url https://onnxruntimetestdata.blob.core.windows.net/models/20181210.zip --build_dir $(Build.BinariesDirectory)
|
||||
arguments: --test_data_url $(TestDataUrl) --build_dir $(Build.BinariesDirectory)
|
||||
pythonInterpreter: '/usr/bin/python3'
|
||||
workingDirectory: $(Build.BinariesDirectory)
|
||||
|
||||
|
|
|
|||
|
|
@ -6,12 +6,9 @@ jobs:
|
|||
buildDirectory: '$(Build.BinariesDirectory)'
|
||||
OnnxRuntimeBuildDirectory: '$(Build.BinariesDirectory)'
|
||||
CUDA_VERSION: '10.0'
|
||||
# There are some tests in 20190130.zip that TensorRT can't run. Instead here use 20181210 opset8 for TensorRT test.
|
||||
TestDataUrl: https://onnxruntimetestdata.blob.core.windows.net/models/20181210.zip
|
||||
TestDataChecksum: a966def7447f4ff04f5665bca235b3f3
|
||||
|
||||
steps:
|
||||
# - template: templates/set-test-data-variables-step.yml
|
||||
- template: templates/set-test-data-variables-step.yml
|
||||
- template: templates/windows-build-tools-setup-steps.yml
|
||||
parameters:
|
||||
EnvSetupScript: 'setup_env_cuda.bat'
|
||||
|
|
|
|||
Loading…
Reference in a new issue