Skip to content

Commit

Permalink
Move to icx-cl
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexsandruss committed Aug 17, 2024
1 parent bbfa5c2 commit d60e46d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ requirements:
build:
- make # [linux]
- dpcpp_linux-64 # [linux64]
- dpcpp_win-64 # [win]
- {{ compiler('cxx') }} # [linux64 or win]
- {{ compiler('c') }} # [linux64 or win]
# conda-forge feedstock specific
Expand All @@ -57,13 +58,14 @@ requirements:
- pybind11
- numpy {{ numpy }}
- mpich # [not win]
- impi-devel # [win]
# dal-devel pinning depends on the recipe location (repo or feedstock)
- dal-devel
# - dal-devel =={{ version }}
run:
- python
- {{ pin_compatible('numpy') }}
- dpcpp-cpp-rt # [linux64]
- dpcpp-cpp-rt # [not osx]
# dal pinning depends on the recipe location (repo or feedstock)
- dal
# - dal =={{ version }}
Expand All @@ -78,6 +80,7 @@ test:
- pytest
- pyyaml
- mpich # [not win]
- impi_rt # [win]
source_files:
- .ci
- examples
Expand Down
2 changes: 1 addition & 1 deletion scripts/build_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def custom_build_cmake_clib(

if iface in ["dpc", "spmd_dpc"]:
if IS_WIN:
cxx = "icx"
cxx = "icx-cl"
else:
cxx = "icpx"
elif cxx is None:
Expand Down

0 comments on commit d60e46d

Please sign in to comment.