fixes bug when setting env variable (#170)

Tento commit je obsažen v:
Lakshmi Kumar
2024-01-12 11:04:47 -08:00
odevzdal GitHub
rodič 2d0a3d35f7
revize 2a1f1d7dff
2 změnil soubory, kde provedl 2 přidání a 2 odebrání
+1 -1
Zobrazit soubor
@@ -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
Zobrazit soubor
@@ -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;
}