From d3afe1a7260a2be9011bd4b024dcf5d59f7a1e0f Mon Sep 17 00:00:00 2001 From: Azamat Mametjanov Date: Tue, 29 Oct 2024 04:01:43 +0000 Subject: [PATCH] Default to PIO_IOTYPE_PNETCDF to work around HDF5 in SYCL runs --- components/omega/src/base/IO.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/omega/src/base/IO.h b/components/omega/src/base/IO.h index 8472fee92a65..09922aa3a1f4 100644 --- a/components/omega/src/base/IO.h +++ b/components/omega/src/base/IO.h @@ -68,7 +68,7 @@ enum FileFmt { FmtHDF5 = PIO_IOTYPE_HDF5, ///< native HDF5 format FmtADIOS = PIO_IOTYPE_ADIOS, ///< ADIOS format FmtUnknown = -1, ///< Unknown or undefined - FmtDefault = PIO_IOTYPE_NETCDF4C, ///< NetCDF4 is default + FmtDefault = PIO_IOTYPE_PNETCDF, ///< work around HDF5 in SYCL runs }; /// File operations