8000 CI: Build using Intel compiler by r-devulap · Pull Request #27544 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

CI: Build using Intel compiler #27544

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 5 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Set env variables for icpx
  • Loading branch information
Raghuveer Devulapalli committed Oct 16, 2024
commit a78693aaa52f64ffde85027d0a23b658e97473b8
6 changes: 5 additions & 1 deletion .github/workflows/linux_simd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,11 @@ jobs:
sudo apt --allow-unauthenticated -y install intel-oneapi-compiler-dpcpp-cpp

- name: Build
run: CC=icx CXX=icpx spin build -- -Dallow-noblas=true
run: |
source /opt/intel/oneapi/setvars.sh
CFLAGS=-fp-model=strict
CXXFLAGS=-fp-model=strict
CC=icx CXX=icpx spin build -- -Dallow-noblas=true

- name: Meson Log
if: always()
Expand Down
0