Skip to content

Commit 5ddf3a2

Browse files
author
Ryan Lai
authored
Can't use DXGI to print adapter name of VPU (#274)
* Fix vpu break, can't print adaptername using dxcore * Spacing
1 parent c5a78b0 commit 5ddf3a2

File tree

3 files changed

+17
-11
lines changed

3 files changed

+17
-11
lines changed

Tools/WinMLRunner/src/LearningModelDeviceHelper.cpp

+14-7
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#include <Windows.Graphics.DirectX.Direct3D11.interop.h>
77
#include "Windows.AI.MachineLearning.Native.h"
88
#include <codecvt>
9+
#include "OutputHelper.h"
910
using namespace winrt::Windows::Graphics::DirectX::Direct3D11;
1011

1112
#ifdef DXCORE_SUPPORTED_BUILD
@@ -83,11 +84,14 @@ void PopulateLearningModelDeviceList(CommandLineArgs& args, std::vector<Learning
8384
com_ptr<IInspectable> inspectableDevice;
8485
hr = CreateDirect3D11DeviceFromDXGIDevice(dxgiDevice.get(), inspectableDevice.put());
8586
THROW_IF_FAILED(hr);
86-
deviceList.push_back({
87+
LearningModelDeviceWithMetadata learningModelDeviceWithMetadata =
88+
{
8789
LearningModelDevice::CreateFromDirect3D11Device(inspectableDevice.as<IDirect3DDevice>()),
8890
deviceType,
8991
deviceCreationLocation
90-
});
92+
};
93+
OutputHelper::PrintLearningModelDevice(learningModelDeviceWithMetadata);
94+
deviceList.push_back(learningModelDeviceWithMetadata);
9195
}
9296
#ifdef DXCORE_SUPPORTED_BUILD
9397
else if ((TypeHelper::GetWinmlDeviceKind(deviceType) != LearningModelDeviceKind::Cpu) &&
@@ -216,11 +220,14 @@ void PopulateLearningModelDeviceList(CommandLineArgs& args, std::vector<Learning
216220
#endif
217221
else
218222
{
219-
deviceList.push_back({
220-
LearningModelDevice(TypeHelper::GetWinmlDeviceKind(deviceType)),
221-
deviceType,
222-
deviceCreationLocation
223-
});
223+
LearningModelDeviceWithMetadata learningModelDeviceWithMetadata =
224+
{
225+
LearningModelDevice( TypeHelper::GetWinmlDeviceKind(deviceType)),
226+
deviceType,
227+
deviceCreationLocation
228+
};
229+
OutputHelper::PrintLearningModelDevice(learningModelDeviceWithMetadata);
230+
deviceList.push_back(learningModelDeviceWithMetadata);
224231
}
225232
}
226233
catch (...)

Tools/WinMLRunner/src/OutputHelper.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -165,11 +165,11 @@ class OutputHelper
165165
std::cout << std::endl;
166166
}
167167

168-
void PrintLearningModelDevice(const LearningModelDeviceWithMetadata& device)
168+
static void PrintLearningModelDevice(const LearningModelDeviceWithMetadata& device)
169169
{
170170
if (device.DeviceType == DeviceType::CPU)
171171
{
172-
std::cout << "\nCreating Session with CPU device" << std::endl;
172+
std::cout << "\nCreated LearningModelDevice with CPU device" << std::endl;
173173
return;
174174
}
175175

@@ -185,7 +185,7 @@ class OutputHelper
185185
DXGI_ADAPTER_DESC description;
186186
if (SUCCEEDED(adapter->GetDesc(&description)))
187187
{
188-
std::wcout << L"\nCreating Session with GPU: " << description.Description << std::endl;
188+
std::wcout << L"\nCreated LearningModelDevice with GPU: " << description.Description << std::endl;
189189
}
190190
}
191191
else

Tools/WinMLRunner/src/Run.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,6 @@ HRESULT CreateSession(LearningModelSession& session, LearningModel& model, const
180180
}
181181
try
182182
{
183-
output.PrintLearningModelDevice(learningModelDevice);
184183
CreateSessionConsideringSupportForSessionOptions(session, model, profiler, args, learningModelDevice);
185184
}
186185
catch (hresult_error hr)

0 commit comments

Comments
 (0)