We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a091bb commit 7dccba5Copy full SHA for 7dccba5
cpp/neuralnet/ortbackend.cpp
@@ -397,7 +397,9 @@ void NeuralNet::printDirectMLDevices() {
397
vAdapters[i]->GetDesc(&adapterDescription);
398
wstring wsDeviceName(adapterDescription.Description);
399
string deviceName(wsDeviceName.begin(), wsDeviceName.end());
400
- cout << "Found DirectML device " << i << ": " << deviceName.c_str() << endl;
+ if(deviceName != "Microsoft Basic Render Driver"){
401
+ cout << "Found DirectML device " << i << ": " << deviceName.c_str() << endl;
402
+ }
403
}
404
405
#endif
0 commit comments