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
Этот коммит содержится в:
Jonathan R. Madsen
2024-01-10 09:38:09 -06:00
коммит произвёл GitHub
родитель 5de4163d66
Коммит adefde707c
+1 -1
Просмотреть файл
@@ -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 "