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 unity image tag to 20240917-153130-9f281758 #17410

Merged
merged 4 commits into from
Sep 25, 2024
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
8 changes: 4 additions & 4 deletions ci/jenkins/unity_jenkinsfile.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@
import org.jenkinsci.plugins.pipeline.modeldefinition.Utils

// NOTE: these lines are scanned by docker/dev_common.sh. Please update the regex as needed. -->
ci_lint = 'tlcpack/ci-lint:20240105-165030-51bdaec6'
ci_gpu = 'tlcpack/ci-gpu:20240105-165030-51bdaec6'
ci_cpu = 'tlcpack/ci-cpu:20240105-165030-51bdaec6'
ci_lint = 'tlcpack/ci_lint:20240917-153130-9f281758'
ci_gpu = 'tlcpack/ci_gpu:20240917-153130-9f281758'
ci_cpu = 'tlcpack/ci_cpu:20240917-153130-9f281758'
ci_wasm = 'tlcpack/ci-wasm:v0.72'
ci_i386 = 'tlcpack/ci-i386:v0.75'
ci_qemu = 'tlcpack/ci-qemu:v0.11'
ci_arm = 'tlcpack/ci-arm:v0.08'
ci_hexagon = 'tlcpack/ci-hexagon:20240105-165030-51bdaec6'
ci_hexagon = 'tlcpack/ci_hexagon:20240917-153130-9f281758'
// <--- End of regex-scanned config.

// Parameters to allow overriding (in Jenkins UI), the images
Expand Down
2 changes: 1 addition & 1 deletion src/contrib/msc/plugin/torch_codegen.cc
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ void TorchPluginCodeGen::CodeGenCmake(const std::set<String>& devices) {
flags.Set("PLUGIN_SUPPORT_TORCH", "");
CodeGenPreCmake(devices, flags);
stack_.line()
.line("set(CMAKE_CXX_STANDARD 14)")
.line("set(CMAKE_CXX_STANDARD 17)")
.line("list(APPEND CMAKE_PREFIX_PATH \"" + config()->torch_prefix + "\")")
.line("find_package(Torch REQUIRED)");
Array<String> includes, libs;
Expand Down
2 changes: 1 addition & 1 deletion tests/python/relax/test_frontend_dynamo.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def subgraph_1(
) -> R.Tensor((10,), dtype="float32"):
# block 0
with R.dataflow():
lv5: R.Tensor((10,), dtype="float32") = R.multiply(inp_11, inp_01)
lv5: R.Tensor((10,), dtype="float32") = R.multiply(inp_01, inp_11)
gv1: R.Tensor((10,), dtype="float32") = lv5
R.output(gv1)
return gv1
Expand Down
36 changes: 35 additions & 1 deletion tests/python/relax/test_frontend_stablehlo.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,10 @@ def main(


@tvm.testing.requires_gpu
@pytest.mark.skip(
reason="jaxlib.xla_extension.XlaRuntimeError: FAILED_PRECONDITION: DNN library initialization failed."
)
# TODO(mshr-h): may be fixed by upgrading jax to >=0.4.33
def test_unary():
import jax

Expand Down Expand Up @@ -229,6 +233,10 @@ def _round(x):


@tvm.testing.requires_gpu
@pytest.mark.skip(
reason="jaxlib.xla_extension.XlaRuntimeError: FAILED_PRECONDITION: DNN library initialization failed."
)
# TODO(mshr-h): may be fixed by upgrading jax to >=0.4.33
def test_binary():
import jax

Expand All @@ -250,6 +258,10 @@ def fn(x, y):


@tvm.testing.requires_gpu
@pytest.mark.skip(
reason="jaxlib.xla_extension.XlaRuntimeError: FAILED_PRECONDITION: DNN library initialization failed."
)
# TODO(mshr-h): may be fixed by upgrading jax to >=0.4.33
def test_const():
import jax

Expand All @@ -260,6 +272,10 @@ def fn(x):


@tvm.testing.requires_gpu
@pytest.mark.skip(
reason="jaxlib.xla_extension.XlaRuntimeError: FAILED_PRECONDITION: DNN library initialization failed."
)
# TODO(mshr-h): may be fixed by upgrading jax to >=0.4.33
def test_maximum():
import jax
import jax.numpy as jnp
Expand All @@ -271,6 +287,10 @@ def fn(x, y):


@tvm.testing.requires_gpu
@pytest.mark.skip(
reason="jaxlib.xla_extension.XlaRuntimeError: FAILED_PRECONDITION: DNN library initialization failed."
)
# TODO(mshr-h): may be fixed by upgrading jax to >=0.4.33
def test_minimum():
import jax
import jax.numpy as jnp
Expand All @@ -282,6 +302,10 @@ def fn(x, y):


@tvm.testing.requires_gpu
@pytest.mark.skip(
reason="jaxlib.xla_extension.XlaRuntimeError: FAILED_PRECONDITION: DNN library initialization failed."
)
# TODO(mshr-h): may be fixed by upgrading jax to >=0.4.33
def test_reduce():
import jax
import jax.numpy as jnp
Expand All @@ -293,6 +317,10 @@ def fn(x):


@tvm.testing.requires_gpu
@pytest.mark.skip(
reason="jaxlib.xla_extension.XlaRuntimeError: FAILED_PRECONDITION: DNN library initialization failed."
)
# TODO(mshr-h): may be fixed by upgrading jax to >=0.4.33
def test_reduce_window():
import jax
from flax import linen as nn
Expand All @@ -304,6 +332,10 @@ def fn(x):


@tvm.testing.requires_gpu
@pytest.mark.skip(
reason="jaxlib.xla_extension.XlaRuntimeError: FAILED_PRECONDITION: DNN library initialization failed."
)
# TODO(mshr-h): may be fixed by upgrading jax to >=0.4.33
def test_dot_general():
import jax

Expand All @@ -314,8 +346,10 @@ def fn(x, y):
check_correctness(jax.jit(fn), input_shapes)


@pytest.mark.skip()
@tvm.testing.requires_gpu
@pytest.mark.skip(
reason="jaxlib.xla_extension.XlaRuntimeError: FAILED_PRECONDITION: DNN library initialization failed."
)
# TODO(yongwww): fix flaky error of "invalid device ordinal"
def test_conv():
import jax
Expand Down
Loading