-
Notifications
You must be signed in to change notification settings - Fork 3k
/
Copy pathOrtIoBindingAllocationTest.cs
390 lines (319 loc) · 15.3 KB
/
OrtIoBindingAllocationTest.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
using Microsoft.ML.OnnxRuntime.Tensors;
using System;
using System.Linq;
using System.Runtime.InteropServices;
using Xunit;
using static Microsoft.ML.OnnxRuntime.Tests.InferenceTest;
namespace Microsoft.ML.OnnxRuntime.Tests
{
[Collection("OrtBinding Tests")]
public class OrtIoBindingAllocationTests : IDisposable
{
private const string _inputName = "data_0";
private const string _outputName = "softmaxout_1";
private static readonly OrtAllocator _allocator = OrtAllocator.DefaultInstance;
private readonly RunOptions _runOptions;
private readonly InferenceSession _session;
private readonly float[] _inputData;
private readonly float[] _outputData;
private readonly long[] _inputShape;
private readonly long _inputSizeInBytes;
private readonly long[] _outputShape;
private readonly long _outputSizeInBytes;
private readonly OrtSafeMemoryHandle _inputNativeAllocation;
private readonly OrtSafeMemoryHandle _outputNativeAllocation;
private readonly DisposableListTest<IDisposable> _dispList = new DisposableListTest<IDisposable>();
private bool _disposed = false;
private OrtEnv _env = OrtEnv.Instance();
public OrtIoBindingAllocationTests()
{
var tuple = OpenSessionSqueezeNet();
_session = tuple.Item1;
_dispList.Add(_session);
_runOptions = new RunOptions();
_dispList.Add(_runOptions);
_inputData = tuple.Item2;
_outputData = tuple.Item4;
var inputMeta = _session.InputMetadata;
var outputMeta = _session.OutputMetadata;
_inputShape = Array.ConvertAll<int, long>(inputMeta[_inputName].Dimensions, Convert.ToInt64);
_outputShape = Array.ConvertAll<int, long>(outputMeta[_outputName].Dimensions, Convert.ToInt64);
var inputShapeSize = ShapeUtils.GetSizeForShape(_inputShape);
Assert.Equal(inputShapeSize, _inputData.Length);
var outputShapeSize = ShapeUtils.GetSizeForShape(_outputShape);
Assert.Equal(outputShapeSize, _outputData.Length);
_inputSizeInBytes = inputShapeSize * sizeof(float);
IntPtr allocPtr = Marshal.AllocHGlobal((int)_inputSizeInBytes);
_inputNativeAllocation = new OrtSafeMemoryHandle(allocPtr);
_dispList.Add(_inputNativeAllocation);
PopulateNativeBuffer<float>(allocPtr, _inputData);
_outputSizeInBytes = outputShapeSize * sizeof(float);
allocPtr = Marshal.AllocHGlobal((int)_outputSizeInBytes);
_outputNativeAllocation = new OrtSafeMemoryHandle(allocPtr);
}
// Probably redundant as we have no native resources
~OrtIoBindingAllocationTests()
{
Dispose(false);
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool disposing)
{
if (_disposed)
{
return;
}
if (disposing)
{
_dispList.Dispose();
}
_disposed = true;
}
/// <summary>
/// This works only for allocations accessible from host memory
/// </summary>
/// <param name="buffer"></param>
/// <param name="elements"></param>
private static void PopulateNativeBuffer<T>(OrtMemoryAllocation buffer, T[] elements)
{
PopulateNativeBuffer(buffer.Pointer, elements);
}
private static void PopulateNativeBuffer<T>(IntPtr buffer, T[] elements)
{
Span<T> bufferSpan;
unsafe
{
bufferSpan = new Span<T>(buffer.ToPointer(), elements.Length);
}
elements.CopyTo(bufferSpan);
}
/// <summary>
/// Checks that the contents of the native buffer matches the expected output.
/// </summary>
private void CheckOutput(IntPtr resultBuffer)
{
Span<byte> bufferSpan;
unsafe
{
bufferSpan = new Span<byte>(resultBuffer.ToPointer(), (int)_outputSizeInBytes);
}
var outputSpan = MemoryMarshal.Cast<byte, float>(bufferSpan);
Assert.Equal(_outputData, outputSpan.ToArray(), new FloatComparer());
}
private void ClearOutput()
{
Span<byte> bufferSpan;
unsafe
{
bufferSpan = new Span<byte>(_outputNativeAllocation.Handle.ToPointer(), (int)_outputSizeInBytes);
}
bufferSpan.Clear();
}
/// <summary>
/// Use to free globally allocated memory. Could not find
/// a framework class.
/// </summary>
class OrtSafeMemoryHandle : SafeHandle
{
public OrtSafeMemoryHandle(IntPtr allocPtr) : base(allocPtr, true) { }
public override bool IsInvalid => handle == IntPtr.Zero;
public IntPtr Handle => handle;
protected override bool ReleaseHandle()
{
Marshal.FreeHGlobal(handle);
handle = IntPtr.Zero;
return true;
}
}
[Fact(DisplayName = "TestIOBindingWithOrtValues")]
public void TestIOBindingWithOrtValues()
{
ClearOutput();
using (var ioBinding = _session.CreateIoBinding())
{
// Input OrtValue on top if input buffer
using (var tensor = OrtValue.CreateTensorValueWithData(OrtMemoryInfo.DefaultInstance,
TensorElementType.Float,
_inputShape, _inputNativeAllocation.Handle, _inputSizeInBytes))
{
ioBinding.BindInput(_inputName, tensor);
}
// Output OrtValue on top if output buffer
using (var tensor = OrtValue.CreateTensorValueWithData(OrtMemoryInfo.DefaultInstance,
TensorElementType.Float,
_outputShape, _outputNativeAllocation.Handle, _outputSizeInBytes))
{
ioBinding.BindOutput(_outputName, tensor);
}
ioBinding.SynchronizeBoundInputs();
using (var results = _session.RunWithBoundResults(_runOptions, ioBinding))
{
ioBinding.SynchronizeBoundOutputs();
Assert.Single(results);
var res = results.First();
Assert.True(res.IsTensor);
var typeAndShape = res.GetTensorTypeAndShape();
Assert.Equal(_outputData.LongLength, typeAndShape.ElementCount);
var dataSpan = res.GetTensorDataAsSpan<float>();
Assert.Equal(_outputData, dataSpan.ToArray(), new FloatComparer());
// The result is good, but we want to make sure that the result actually is
// in the output memory, not some other place
CheckOutput(_outputNativeAllocation.Handle);
}
var outputNames = ioBinding.GetOutputNames();
Assert.Single(outputNames);
Assert.Equal(_outputName, outputNames[0]);
}
}
[Fact(DisplayName = "TestIOBindingWithDeviceBoundOutput")]
public void TestIOBindingWithDeviceBoundOutput()
{
ClearOutput();
using (var ioBinding = _session.CreateIoBinding())
{
// Input OrtValue on top if input buffer
using (var tensor = OrtValue.CreateTensorValueWithData(OrtMemoryInfo.DefaultInstance,
TensorElementType.Float,
_inputShape, _inputNativeAllocation.Handle, _inputSizeInBytes))
{
ioBinding.BindInput(_inputName, tensor);
}
// The output will go into the Ort allocated OrtValue
ioBinding.BindOutputToDevice(_outputName, OrtMemoryInfo.DefaultInstance);
ioBinding.SynchronizeBoundInputs();
using (var results = _session.RunWithBoundResults(_runOptions, ioBinding))
{
ioBinding.SynchronizeBoundOutputs();
Assert.Single(results);
var res = results.First();
Assert.True(res.IsTensor);
var typeAndShape = res.GetTensorTypeAndShape();
Assert.Equal(_outputData.LongLength, typeAndShape.ElementCount);
var dataSpan = res.GetTensorDataAsSpan<float>();
Assert.Equal(_outputData, dataSpan.ToArray(), new FloatComparer());
}
}
}
[Fact(DisplayName = "TestIOBindingToOrtAllocatedBuffer")]
public void TestIOBindingToOrtAllocatedBuffer()
{
var ortAllocationInput = _allocator.Allocate((uint)_inputSizeInBytes);
_dispList.Add(ortAllocationInput);
PopulateNativeBuffer<float>(ortAllocationInput, _inputData);
var ortAllocationOutput = _allocator.Allocate((uint)_outputSizeInBytes);
_dispList.Add(ortAllocationOutput);
using (var ioBinding = _session.CreateIoBinding())
{
// Still supporting OrtAllocations overload
ioBinding.BindInput(_inputName, Tensors.TensorElementType.Float, _inputShape, ortAllocationInput);
ioBinding.BindOutput(_outputName, Tensors.TensorElementType.Float, _outputShape, ortAllocationOutput);
ioBinding.SynchronizeBoundInputs();
using (var outputs = _session.RunWithBoundResults(_runOptions, ioBinding))
{
ioBinding.SynchronizeBoundOutputs();
Assert.Single(outputs);
var res = outputs.First();
Assert.True(res.IsTensor);
var typeAndShape = res.GetTensorTypeAndShape();
Assert.Equal(_outputData.LongLength, typeAndShape.ElementCount);
var dataSpan = res.GetTensorDataAsSpan<float>();
Assert.Equal(_outputData, dataSpan.ToArray(), new FloatComparer());
CheckOutput(ortAllocationOutput.Pointer);
}
}
}
}
[Collection("OrtBinding Tests")]
public class OrtBidingCircularTest
{
[Fact(DisplayName = "TestIOBinding Demonstrate Circular")]
public void TestIOBindingDemonstrateCircular()
{
// This model has input and output of the same shape, so we can easily feed
// output to input using binding, or not using one. The example makes use of
// the binding to demonstrate the circular feeding.
// With the OrtValue API exposed, one create OrtValues over arbitrary buffers and feed them to the model using
// OrtValues based Run APIs. Thus, the Binding is not necessary any longer
//
// However, here is the demonstration by popular request.
var model = TestDataLoader.LoadModelFromEmbeddedResource("mul_1.onnx");
const string inputName = "X";
const string outputName = "Y";
long[] inputOutputShape = { 3, 2 };
float[] input = { 1.0F, 2.0F, 3.0F, 4.0F, 5.0F, 6.0F };
var inputOutputShapeSize = ShapeUtils.GetSizeForShape(inputOutputShape);
Assert.Equal(inputOutputShapeSize, input.LongLength);
var memInput = new Memory<float>(input);
IntPtr inputPtr;
// Output data on the first iteration
float[] firstIterExpectedOutput = { 1.0F, 4.0F, 9.0F, 16.0F, 25.0F, 36.0F };
Assert.Equal(inputOutputShapeSize, firstIterExpectedOutput.LongLength);
using (var cleanUp = new DisposableListTest<IDisposable>())
{
var runOptions = new RunOptions();
cleanUp.Add(runOptions);
var session = new InferenceSession(model);
cleanUp.Add(session);
var ioBinding = session.CreateIoBinding();
cleanUp.Add(ioBinding);
var pinInput = memInput.Pin();
cleanUp.Add(pinInput);
// This can be a ptr to arbitrary buffer, not necessarily a pinned one
unsafe
{
inputPtr = (IntPtr)pinInput.Pointer;
}
// Bind the input
using (var ortInput = OrtValue.CreateTensorValueWithData(OrtMemoryInfo.DefaultInstance,
TensorElementType.Float, inputOutputShape, inputPtr, input.Length * sizeof(float)))
{
ioBinding.BindInput(inputName, ortInput);
}
// We could have bound the output as well, but we simply bind it to a device in this case.
// Just check the result the first time around.
ioBinding.BindOutputToDevice(outputName, OrtMemoryInfo.DefaultInstance);
ioBinding.SynchronizeBoundInputs();
// We dispose the output after we rebind it to the input because it will be copied during binding.
using (var results = session.RunWithBoundResults(runOptions, ioBinding))
{
ioBinding.SynchronizeBoundOutputs();
Assert.Single(results); // One output
var res = results.First();
Assert.True(res.IsTensor);
var typeShape = res.GetTensorTypeAndShape();
Assert.Equal(TensorElementType.Float, typeShape.ElementDataType);
Assert.Equal(inputOutputShape, typeShape.Shape);
Assert.Equal(inputOutputShapeSize, typeShape.ElementCount);
// First time around the output should match the expected
Assert.Equal(firstIterExpectedOutput, res.GetTensorDataAsSpan<float>().ToArray());
// Now we rebind the output to the input
// It is the same name, so the OrtValue would be replaced.
ioBinding.BindInput(inputName, res);
}
// Let's do it 2 more times.
const int iterations = 2;
for (int i = 0; i < iterations; ++i)
{
using (var results = session.RunWithBoundResults(runOptions, ioBinding))
{
ioBinding.SynchronizeBoundOutputs();
Assert.Single(results); // One output
var res = results.First();
Assert.True(res.IsTensor);
var typeShape = res.GetTensorTypeAndShape();
Assert.Equal(TensorElementType.Float, typeShape.ElementDataType);
Assert.Equal(inputOutputShapeSize, typeShape.ElementCount);
Assert.Equal(inputOutputShape, typeShape.Shape);
ioBinding.BindInput(inputName, res);
}
}
}
}
}
}