Fix cpack on SLES (#324)

Update lib/core/gpu.cpp

- use const std::array instead of constexpr std::array due to internal compiler errors on systems with older GCC compilers
This commit is contained in:
Jonathan R. Madsen
2024-01-10 09:38:09 -06:00
committad av GitHub
förälder 5de4163d66
incheckning adefde707c
+1 -1
Visa fil
@@ -470,7 +470,7 @@ add_hip_device_metadata(ArchiveT& ar)
OMNITRACE_SERIALIZE_HIP_DEVICE_PROP(asicRevision)
# endif
constexpr auto _compute_mode_descr = std::array<const char*, 6>{
const auto _compute_mode_descr = std::array<const char*, 6>{
"Default (multiple host threads can use ::hipSetDevice() with device "
"simultaneously)",
"Exclusive (only one host thread in one process is able to use "