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] Upgrade CI image to 20241105-030952-3e386fd3 #17451

Merged
merged 16 commits into from
Nov 26, 2024

Conversation

mshr-h
Copy link
Contributor

@mshr-h mshr-h commented Oct 8, 2024

As per title.

@tqchen @Hzfengsy
Can you take a look at it? Thanks!

Note that I removed oneflow tutorial (gallery/how_to/compile_models/from_oneflow.py) because during oneflow import, I hit the below error and could not find a way to exclude from sphinx build target.

Traceback (most recent call last):
  File "/home/ubuntu/data/project/tvm/gallery/how_to/compile_models/from_oneflow.py", line 49, in <module>
    import flowvision
  File "/venv/apache-tvm-py3.9/lib/python3.9/site-packages/flowvision/__init__.py", line 1, in <module>
    from flowvision import layers
  File "/venv/apache-tvm-py3.9/lib/python3.9/site-packages/flowvision/layers/__init__.py", line 1, in <module>
    from .attention import (
  File "/venv/apache-tvm-py3.9/lib/python3.9/site-packages/flowvision/layers/attention/__init__.py", line 1, in <module>
    from .se import SEModule
  File "/venv/apache-tvm-py3.9/lib/python3.9/site-packages/flowvision/layers/attention/se.py", line 1, in <module>
    import oneflow as flow
  File "/venv/apache-tvm-py3.9/lib/python3.9/site-packages/oneflow/__init__.py", line 25, in <module>
    import oneflow._oneflow_internal
ImportError: libcudnn_cnn_infer.so.8: cannot open shared object file: No such file or directory

@mshr-h
Copy link
Contributor Author

mshr-h commented Oct 18, 2024

https://ci.tlcpack.ai/blue/organizations/jenkins/tvm-unity/detail/PR-17451/5/pipeline
Tests are failing due to man-group/pytest-plugins#242

[2024-10-18T04:27:16.218Z] + pytest tests/python/relax
[2024-10-18T04:27:16.218Z] Traceback (most recent call last):
[2024-10-18T04:27:16.218Z] File "/venv/apache-tvm-py3.9/bin/pytest", line 8, in
[2024-10-18T04:27:16.218Z] sys.exit(console_main())
[2024-10-18T04:27:16.218Z] File "/venv/apache-tvm-py3.9/lib/python3.9/site-packages/_pytest/config/init.py", line 201, in console_main
[2024-10-18T04:27:16.218Z] code = main()
[2024-10-18T04:27:16.218Z] File "/venv/apache-tvm-py3.9/lib/python3.9/site-packages/_pytest/config/init.py", line 156, in main
[2024-10-18T04:27:16.218Z] config = _prepareconfig(args, plugins)
[2024-10-18T04:27:16.218Z] File "/venv/apache-tvm-py3.9/lib/python3.9/site-packages/_pytest/config/init.py", line 341, in _prepareconfig
[2024-10-18T04:27:16.218Z] config = pluginmanager.hook.pytest_cmdline_parse(
[2024-10-18T04:27:16.218Z] File "/venv/apache-tvm-py3.9/lib/python3.9/site-packages/pluggy/_hooks.py", line 513, in call
[2024-10-18T04:27:16.218Z] return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult)
[2024-10-18T04:27:16.218Z] File "/venv/apache-tvm-py3.9/lib/python3.9/site-packages/pluggy/_manager.py", line 120, in _hookexec
[2024-10-18T04:27:16.218Z] return self._inner_hookexec(hook_name, methods, kwargs, firstresult)
[2024-10-18T04:27:16.218Z] File "/venv/apache-tvm-py3.9/lib/python3.9/site-packages/pluggy/_callers.py", line 139, in _multicall
[2024-10-18T04:27:16.218Z] raise exception.with_traceback(exception.traceback)
[2024-10-18T04:27:16.218Z] File "/venv/apache-tvm-py3.9/lib/python3.9/site-packages/pluggy/_callers.py", line 122, in _multicall
[2024-10-18T04:27:16.218Z] teardown.throw(exception) # type: ignore[union-attr]
[2024-10-18T04:27:16.218Z] File "/venv/apache-tvm-py3.9/lib/python3.9/site-packages/_pytest/helpconfig.py", line 105, in pytest_cmdline_parse
[2024-10-18T04:27:16.218Z] config = yield
[2024-10-18T04:27:16.218Z] File "/venv/apache-tvm-py3.9/lib/python3.9/site-packages/pluggy/_callers.py", line 103, in _multicall
[2024-10-18T04:27:16.218Z] res = hook_impl.function(*args)
[2024-10-18T04:27:16.218Z] File "/venv/apache-tvm-py3.9/lib/python3.9/site-packages/_pytest/config/init.py", line 1140, in pytest_cmdline_parse
[2024-10-18T04:27:16.218Z] self.parse(args)
[2024-10-18T04:27:16.218Z] File "/venv/apache-tvm-py3.9/lib/python3.9/site-packages/_pytest/config/init.py", line 1494, in parse
[2024-10-18T04:27:16.218Z] self._preparse(args, addopts=addopts)
[2024-10-18T04:27:16.218Z] File "/venv/apache-tvm-py3.9/lib/python3.9/site-packages/_pytest/config/init.py", line 1384, in _preparse
[2024-10-18T04:27:16.218Z] self.known_args_namespace = self._parser.parse_known_args(
[2024-10-18T04:27:16.218Z] File "/venv/apache-tvm-py3.9/lib/python3.9/site-packages/_pytest/config/argparsing.py", line 158, in parse_known_args
[2024-10-18T04:27:16.218Z] return self.parse_known_and_unknown_args(args, namespace=namespace)[0]
[2024-10-18T04:27:16.218Z] File "/venv/apache-tvm-py3.9/lib/python3.9/site-packages/_pytest/config/argparsing.py", line 172, in parse_known_and_unknown_args
[2024-10-18T04:27:16.218Z] optparser = self._getparser()
[2024-10-18T04:27:16.218Z] File "/venv/apache-tvm-py3.9/lib/python3.9/site-packages/_pytest/config/argparsing.py", line 131, in _getparser
[2024-10-18T04:27:16.218Z] arggroup.add_argument(*n, **a)
[2024-10-18T04:27:16.218Z] File "/usr/lib/python3.9/argparse.py", line 1440, in add_argument
[2024-10-18T04:27:16.218Z] raise ValueError('%r is not callable' % (type_func,))
[2024-10-18T04:27:16.218Z] ValueError: 'int' is not callable

@mshr-h mshr-h force-pushed the ci-upgrade-a5d04a5e branch 8 times, most recently from 08c595f to 51aff0b Compare October 26, 2024 10:23
@mshr-h mshr-h changed the title [CI] Upgrade CI image to 20241007-154907-a5d04a5e [CI] Upgrade CI image to 20241023-010352-3219b49c Oct 29, 2024
@mshr-h mshr-h force-pushed the ci-upgrade-a5d04a5e branch 6 times, most recently from 74809e2 to ca4632c Compare October 30, 2024 15:25
@mshr-h mshr-h force-pushed the ci-upgrade-a5d04a5e branch from ca4632c to 4805f3f Compare November 5, 2024 10:39
@mshr-h mshr-h changed the title [CI] Upgrade CI image to 20241023-010352-3219b49c [CI] Upgrade CI image to 20241105-030952-3e386fd3 Nov 5, 2024
@mshr-h mshr-h force-pushed the ci-upgrade-a5d04a5e branch from d08095f to 3f9e99b Compare November 6, 2024 07:33
@mshr-h mshr-h force-pushed the ci-upgrade-a5d04a5e branch from 3f9e99b to cbd265d Compare November 16, 2024 13:27
@mshr-h
Copy link
Contributor Author

mshr-h commented Nov 16, 2024

Seems like Zephyr-SDK v0.16.x is required.

@mshr-h mshr-h force-pushed the ci-upgrade-a5d04a5e branch from cbd265d to 74677a5 Compare November 19, 2024 13:18
@mshr-h mshr-h marked this pull request as ready for review November 20, 2024 03:03
@mshr-h mshr-h force-pushed the ci-upgrade-a5d04a5e branch from adee9b2 to 5302b44 Compare November 25, 2024 02:05
@tqchen
Copy link
Member

tqchen commented Nov 25, 2024

@mshr-h is this ready to go?

@mshr-h
Copy link
Contributor Author

mshr-h commented Nov 26, 2024

Thank you for your review. Yes, it's ready to go.

@mshr-h mshr-h merged commit 92e2bba into apache:main Nov 26, 2024
19 checks passed
@mshr-h mshr-h deleted the ci-upgrade-a5d04a5e branch November 26, 2024 05:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants