From 18be194fe5e5ec81e0d70c1a6201022efd442edc Mon Sep 17 00:00:00 2001 From: Damian Rouson Date: Tue, 3 Mar 2026 14:42:43 -0800 Subject: [PATCH] doc(ifx): add -coarray flag in fpm command --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a4d9a2da0..ce894650f 100644 --- a/README.md +++ b/README.md @@ -114,7 +114,7 @@ fpm test --compiler gfortran --profile release ##### Intel (`ifx`) Testing with `ifx` versions higher than 2025.1 with the following command should report all tests passing except one: ``` -fpm test --compiler ifx --flag -fpp --profile release +fpm test --compiler ifx --flag "-fpp -coarray" --profile release ``` The failing test converts a neural network with varying-width hidden layers to and from JSON. The reason for this failure is under investigation. @@ -123,7 +123,7 @@ Please submit an issue if you would like to use `ifx` and require hidden layers ##### _Experimental:_ Automatic offloading of `do concurrent` to GPUs This capability is under development with the goal to facilitate automatic GPU offloading via the following command: ``` -fpm test --compiler ifx --profile release --flag "-fpp -fopenmp-target-do-concurrent -qopenmp -fopenmp-targets=spir64 -O3" +fpm test --compiler ifx --profile release --flag "-fpp -fopenmp-target-do-concurrent -qopenmp -fopenmp-targets=spir64 -O3 -coarray" ``` #### Under Development