fixes bug when setting env variable (#170)

Este commit está contenido en:
Lakshmi Kumar
2024-01-12 11:04:47 -08:00
cometido por GitHub
padre 2d0a3d35f7
commit 2a1f1d7dff
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
+1 -1
Ver fichero
@@ -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
Ver fichero
@@ -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;
}