From 121f56979c808ba33673be79cd9c544dc0584cd7 Mon Sep 17 00:00:00 2001 From: Soren Rasmussen Date: Tue, 26 Nov 2024 14:29:49 -0700 Subject: [PATCH] Setting oneAPI compilers --- .github/workflows/intel_docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/intel_docker.yml b/.github/workflows/intel_docker.yml index e6c9d499..af11cc39 100644 --- a/.github/workflows/intel_docker.yml +++ b/.github/workflows/intel_docker.yml @@ -140,7 +140,7 @@ jobs: wget -q https://download.open-mpi.org/release/open-mpi/v4.1/openmpi-${MPI_VERSION}.tar.gz tar zxf openmpi-${MPI_VERSION}.tar.gz cd openmpi-${MPI_VERSION} - CFLAGS=-fPIC CXXFLAGS=-fPIC FCFLAGS=-fPIC ./configure --prefix=${MPI_ROOT} + CC=icpc CXX=icpc FC=ifx CFLAGS=-fPIC CXXFLAGS=-fPIC FCFLAGS=-fPIC ./configure --prefix=${MPI_ROOT} - name: Build OpenMPI if: steps.cache-openmpi.outputs.cache-hit != 'true'