Skip to content

Commit

Permalink
Bump back-end compiler. (#456)
Browse files Browse the repository at this point in the history
  • Loading branch information
maleadt authored Aug 6, 2024
1 parent 9d9aad4 commit a8c18d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ GPUArrays = "10"
GPUCompiler = "0.23, 0.24, 0.25, 0.26"
KernelAbstractions = "0.9.1"
LLVM = "6, 7, 8"
NEO_jll = "=24.22.29735"
NEO_jll = "=24.26.30049"
Preferences = "1"
SPIRV_LLVM_Translator_unified_jll = "0.4"
SpecialFunctions = "1.3, 2"
Expand Down
5 changes: 1 addition & 4 deletions lib/level-zero/module.jl
Original file line number Diff line number Diff line change
Expand Up @@ -237,10 +237,7 @@ function properties(kernel::ZeKernel)
preferred_group_size_props_ref = Ref(ze_kernel_preferred_group_size_properties_t())
link_extensions(props_ref, preferred_group_size_props_ref)
if haskey(oneL0.extension_properties(kernel.mod.context.driver),
"ZE_extension_kernel_max_group_size_properties") ||
(!validation_layer[] && # intel/compute-runtime#733
properties(kernel.mod.device).vendorId == 0x8086 &&
properties(kernel.mod.context.driver).driverVersion >= v"1.3.29138")
"ZE_extension_kernel_max_group_size_properties")
# TODO: memoize
max_group_size_props_ref = Ref(ze_kernel_max_group_size_properties_ext_t())
link_extensions(preferred_group_size_props_ref, max_group_size_props_ref)
Expand Down

0 comments on commit a8c18d3

Please sign in to comment.