From 12c49998b64d31a430fef9ceeeb54872e5418f7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ingo=20M=C3=BCller?= Date: Mon, 13 Nov 2023 13:06:26 +0000 Subject: [PATCH] xxx-ci-debug --- .github/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7febf1f5..4ba28ecf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,13 +35,17 @@ jobs: path: "~/.cache/bazel" key: bazel-${{ matrix.os }} - run: find ~/.cache/bazel ~/.cache/bazelisk -iname "*.whl" -exec rm {} \; - - run: bazel build :enzyme_jax @llvm-project//llvm:FileCheck + - run: | + bazel build :enzyme_jax @llvm-project//llvm:FileCheck + bazel cquery "allpaths(//enzyme_jax:enzyme_call,@xla//xla/stream_executor:executor_cache)" --notool_deps + bazel --version - run: cp bazel-bin/*.whl . - name: test run: | python3 -m pip install --user --force-reinstall "jax[cpu]" *.whl cd test + nm -C $(python3 -c "from enzyme_jax import enzyme_call; print(enzyme_call.__file__)") | grep ExecutorCache::GetOrCreate python3 test.py cd lit_tests lit . --verbose