We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9c31ed commit 5694a01Copy full SHA for 5694a01
Intern/rayx-core/src/Tracer/DeviceConfig.cpp
@@ -130,6 +130,12 @@ void DeviceConfig::dumpDevices() const {
130
const auto& device = devices[i];
131
RAYX_LOG << "Device - index: " << i << ", type: " << deviceTypeToString(device.type) << ", name: " << device.name;
132
}
133
+
134
+ if (m_fetchedDeviceType != DeviceType::Cpu) {
135
+#if !defined(RAYX_CUDA_ENABLED) && !defined(RAYX_HIP_ENABLED)
136
+ RAYX_WARN << "No GPU support was compiled in this build.";
137
+#endif
138
+ }
139
140
141
size_t DeviceConfig::enabledDevicesCount() const {
0 commit comments