fixes bug when setting env variable (#170)

This commit is contained in:
Lakshmi Kumar
2024-01-12 11:04:47 -08:00
committed by GitHub
parent 2d0a3d35f7
commit 2a1f1d7dff
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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
View File
@@ -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;
}