Skip to content

Commit 0e821af

Browse files
committed
Merge InlineAsm test changes
commit 7dec039 Author: Garcia Orozco, David <[email protected]> Date: Mon Jan 27 10:21:05 2025 -0800 remove IntelGPU folder, and add target-spir to lit.local.cfg commit dccac19 Author: Garcia Orozco, David <[email protected]> Date: Mon Jan 27 10:09:58 2025 -0800 Use target features instead of backend features commit be87b96 Merge: d83a37d e923fbb Author: Garcia Orozco, David <[email protected]> Date: Mon Jan 27 10:06:53 2025 -0800 Merge branch 'sycl' into inlineasm-litlocal commit e923fbb Author: Nick Sarnie <[email protected]> Date: Tue Jan 28 03:01:42 2025 +0900 [CI] Update dev-igc even if IGC CI failed (intel#16790) IGC public CI has been failing for months and we got confirmation even if the public CI fails the change has already been internally validated. We can confirm this change works as below: [Old link](https://api.github.com/repos/intel/intel-graphics-compiler/actions/workflows/build-IGC.yml/runs?status=success) [New link](https://api.github.com/repos/intel/intel-graphics-compiler/actions/workflows/build-IGC.yml/runs) Signed-off-by: Sarnie, Nick <[email protected]> commit 4eb095e Author: Chris Perkins <[email protected]> Date: Mon Jan 27 09:34:35 2025 -0800 [SYCL] remove experimental online_compiler extension (intel#16776) Minus support for "CM", all the functionality of the old experimental online_compiler extension is being provided by the new (also experimental) kernel_compiler. Only better. Besides always being merely experimental, the online_compiler has been marked as deprecated for over a year, it has become burdensome to continue to support, and it sometimes confuses users. The decision has been made to remove it, without waiting for an ABI breaking window. commit 566f514 Author: Udit Kumar Agarwal <[email protected]> Date: Mon Jan 27 09:27:27 2025 -0800 [CI] Install `pkg-config` in docker container (intel#16797) `pkg-config` is required for `llvm-spirv` to detect `spirv-tools` installation. See intel#16743 (comment) for more info. commit 367f355 Author: Mészáros Gergely <[email protected]> Date: Mon Jan 27 17:28:39 2025 +0100 [SYCL][E2E][NFC] Fix NameError if directive fails to parse (intel#16767) Currently if a test contains a malformed directive, the following exception is raised along with the original parsing error: ```plaintext Exception during script execution: (original error) During handling of the above exception, another exception occurred: Traceback (most recent call last): File "llvm/llvm/utils/lit/lit/worker.py", line 76, in _execute_test_handle_errors result = test.config.test_format.execute(test, lit_config) File "llvm/sycl/test-e2e/format.py", line 232, in execute script = self.parseTestScript(test) File "llvm/sycl/test-e2e/format.py", line 105, in parseTestScript return lit.Test.Result(Test.UNRESOLVED, str(e)) NameError: name 'Test' is not defined ``` The test ends up as UNRESOLVED either way, but fixing it is easy and improves the error message greatly. commit d83a37d Author: Garcia Orozco, David <[email protected]> Date: Wed Jan 22 13:47:59 2025 -0800 Add `InlineAsm/IntelGPU` test directory commit 745d9b5 Merge: e91210e 34ef866 Author: Garcia Orozco, David <[email protected]> Date: Wed Jan 22 13:33:25 2025 -0800 Merge branch 'sycl' into inlineasm-litlocal commit e91210e Merge: 8d5f517 38e6e1b Author: Garcia Orozco, David <[email protected]> Date: Mon Jan 20 11:59:42 2025 -0800 Merge branch 'sycl' into inlineasm-litlocal commit 8d5f517 Author: Garcia Orozco, David <[email protected]> Date: Mon Dec 9 11:51:56 2024 -0800 Add REQUIRES: gpu,linux to lit.local.cfg commit a518866 Author: Garcia Orozco, David <[email protected]> Date: Mon Dec 9 11:44:21 2024 -0800 Use lit.local.cfg to mark cuda and hip as unsupported
1 parent 2cf0a94 commit 0e821af

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+72
-1275
lines changed

devops/scripts/install_build_tools.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ apt update && apt install -yqq \
3030
# To obtain latest release of spriv-tool.
3131
# Same as what's done in SPRIV-LLVM-TRANSLATOR:
3232
# https://github.com/KhronosGroup/SPIRV-LLVM-Translator/blob/cec12d6cf46306d0a015e883d5adb5a8200df1c0/.github/workflows/check-out-of-tree-build.yml#L59
33+
# pkg-config is required for llvm-spriv to detect spriv-tools installation.
3334
. /etc/os-release
3435
curl -L "https://packages.lunarg.com/lunarg-signing-key-pub.asc" | apt-key add -
3536
echo "deb https://packages.lunarg.com/vulkan $VERSION_CODENAME main" | tee -a /etc/apt/sources.list
36-
apt update && apt install -yqq spirv-tools
37+
apt update && apt install -yqq spirv-tools pkg-config

devops/scripts/update_drivers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def get_latest_workflow_runs(repo, workflow_name):
1717
+ repo
1818
+ "/actions/workflows/"
1919
+ workflow_name
20-
+ ".yml/runs?status=success"
20+
+ ".yml/runs"
2121
).read()
2222
return json.loads(action_runs)["workflow_runs"][0]
2323

sycl/doc/extensions/deprecated/sycl_ext_intel_online_compiler.asciidoc

Lines changed: 0 additions & 208 deletions
This file was deleted.

sycl/doc/extensions/experimental/sycl_ext_intel_online_compiler.asciidoc

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)