fixes bug when setting env variable (#170)

このコミットが含まれているのは:
Lakshmi Kumar
2024-01-12 11:04:47 -08:00
committed by GitHub
コミット 2a1f1d7dff
2個のファイルの変更2行の追加2行の削除
+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;
}