Skip to content

Commit

Permalink
Merge pull request #1460 from IntelPython/fix/remove_spirv_version_re…
Browse files Browse the repository at this point in the history
…striction

Remove SPIRV version restriction
  • Loading branch information
ekomarova authored May 23, 2024
2 parents 56ab896 + a378864 commit f09c42e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
11 changes: 5 additions & 6 deletions conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,14 @@ requirements:
{% endfor %}
# versioneer dependency
- tomli # [py<311]
# TODO: temporary fix, because IGC is broken for output produced by llvm-spirv 2024.1 on windows
- dpcpp-llvm-spirv >={{ required_compiler_version }} # [not win]
- dpcpp-llvm-spirv >={{ required_compiler_version }},<2024.1 # [win]
# While we don't need it for build, but install it here, so we can
# pin_compatible at run section.
- dpcpp-llvm-spirv >={{ required_compiler_version }}
run:
- {{ pin_compatible('dpcpp-cpp-rt', min_pin='x.x', max_pin='x') }}
- {{ pin_compatible('intel-cmplr-lib-rt', min_pin='x.x', max_pin='x') }}
# TODO: temporary fix, because IGC is broken for output produced by llvm-spirv 2024.1 on windows
- {{ pin_compatible('dpcpp-llvm-spirv', min_pin='x.x', max_pin='x') }} # [not win]
- {{ pin_compatible('dpcpp-llvm-spirv', min_pin='x.x', max_pin='x', upper_bound='2024.1') }} # [win]
# TODO: pick up min version from dep
- {{ pin_compatible('dpcpp-llvm-spirv', min_pin='x.x', max_pin='x') }}
- {{ pin_compatible('dpnp', min_pin='x.x.x', max_pin='x.x') }}
- {{ pin_compatible('dpctl', min_pin='x.x.x', max_pin='x.x') }}
- {{ pin_compatible('numba', min_pin='x.x.x', max_pin='x.x') }}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ dependencies = [
"dpctl>=0.16.1",
"dpnp>=0.14.0",
"numpy>=1.24.0",
"dpcpp_llvm_spirv>=2024.0"
"dpcpp_llvm_spirv>=2024.1"
]
description = "An extension for Numba to add data-parallel offload capability"
dynamic = ["version"]
Expand Down

0 comments on commit f09c42e

Please sign in to comment.