Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI] Update ci-gpu image #15836

Merged
merged 3 commits into from
Oct 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ci/jenkins/docker-images.ini
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
ci_arm: tlcpack/ci-arm:20230615-060132-62a5e7acf
ci_cortexm: tlcpack/ci-cortexm:20230710-060128-a60cd0fec
ci_cpu: tlcpack/ci-cpu:20230604-060130-0af9ff90e
ci_gpu: tlcpack/ci-gpu:20230504-142417-4d37a0a0
ci_gpu: tlcpack/ci-gpu:20231004-111300-7a1f7d0b
ci_hexagon: tlcpack/ci-hexagon:20230504-142417-4d37a0a0
ci_i386: tlcpack/ci-i386:20230504-142417-4d37a0a0
ci_lint: tlcpack/ci-lint:20230504-142417-4d37a0a0
Expand Down
4 changes: 3 additions & 1 deletion tests/python/frontend/coreml/test_forward.py
Original file line number Diff line number Diff line change
Expand Up @@ -823,7 +823,9 @@ def test_can_build_keras_to_coreml_to_relay():
kmodel_fn = path.join(tmpdir, "c1mdl.h5")
model.save(kmodel_fn)

mdl = cm.convert(kmodel_fn)
mdl = cm.convert(
kmodel_fn, convert_to="neuralnetwork", minimum_deployment_target=cm.target.macOS11
)
model_file = path.join(tmpdir, "c1.mlmodel")
mdl.save(model_file)

Expand Down