fixes bug when setting env variable (#170)

Этот коммит содержится в:
Lakshmi Kumar
2024-01-12 11:04:47 -08:00
коммит произвёл GitHub
родитель 2d0a3d35f7
Коммит 2a1f1d7dff
2 изменённых файлов: 2 добавлений и 2 удалений
+1 -1
Просмотреть файл
@@ -160,7 +160,7 @@ int main(int argc, char **argv) {
std::string gcn_arch_name_base = (pos != std::string::npos) ? gcn_arch_name.substr(0, pos) : gcn_arch_name;
// gfx90a has two GCDs as two separate devices
if (!gcn_arch_name_base.compare("gfx90a")) {
if (!gcn_arch_name_base.compare("gfx90a") && num_devices > 1) {
sd = 1;
}
+1 -1
Просмотреть файл
@@ -163,7 +163,7 @@ int main(int argc, char **argv) {
std::string gcn_arch_name_base = (pos != std::string::npos) ? gcn_arch_name.substr(0, pos) : gcn_arch_name;
// gfx90a has two GCDs as two separate devices
if (!gcn_arch_name_base.compare("gfx90a")) {
if (!gcn_arch_name_base.compare("gfx90a") && num_devices > 1) {
sd = 1;
}