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
|
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#import "TensorHelper.h"
#import "FakeRCTBlobManager.h"
#import <XCTest/XCTest.h>
#import <onnxruntime/onnxruntime_cxx_api.h>
#include <vector>
@interface TensorHelperTest : XCTestCase
@end
@implementation TensorHelperTest
FakeRCTBlobManager* testBlobManager = nil;
+ (void)initialize {
if (self == [TensorHelperTest class]) {
testBlobManager = [FakeRCTBlobManager new];
}
}
template <typename T>
static void testCreateInputTensorT(const std::array<T, 3>& outValues, std::function<NSNumber*(T value)>& convert,
ONNXTensorElementDataType onnxType, NSString* jsTensorType) {
NSMutableDictionary* inputTensorMap = [NSMutableDictionary dictionary];
// dims
NSArray* dims = @[ [NSNumber numberWithLong:outValues.size()] ];
inputTensorMap[@"dims"] = dims;
// type
inputTensorMap[@"type"] = jsTensorType;
// encoded data
size_t byteBufferSize = sizeof(T) * outValues.size();
unsigned char* byteBuffer = static_cast<unsigned char*>(malloc(byteBufferSize));
NSData* byteBufferRef = [NSData dataWithBytesNoCopy:byteBuffer length:byteBufferSize];
T* typePtr = (T*)[byteBufferRef bytes];
for (size_t i = 0; i < outValues.size(); ++i) {
typePtr[i] = outValues[i];
}
XCTAssertNotNil(testBlobManager);
inputTensorMap[@"data"] = [testBlobManager testCreateData:byteBufferRef];
Ort::AllocatorWithDefaultOptions ortAllocator;
std::vector<Ort::MemoryAllocation> allocations;
Ort::Value inputTensor = [TensorHelper createInputTensor:testBlobManager
input:inputTensorMap
ortAllocator:ortAllocator
allocations:allocations];
XCTAssertEqual(inputTensor.GetTensorTypeAndShapeInfo().GetElementType(), onnxType);
XCTAssertTrue(inputTensor.IsTensor());
XCTAssertEqual(inputTensor.GetTensorTypeAndShapeInfo().GetDimensionsCount(), 1);
XCTAssertEqual(inputTensor.GetTensorTypeAndShapeInfo().GetShape(),
std::vector<int64_t>{static_cast<int64_t>(outValues.size())});
XCTAssertEqual(inputTensor.GetTensorTypeAndShapeInfo().GetElementCount(), outValues.size());
const auto tensorData = inputTensor.GetTensorData<T>();
for (size_t i = 0; i < outValues.size(); ++i) {
XCTAssertEqual(tensorData[i], outValues[i]);
}
}
- (void)testCreateInputTensorFloat {
std::array<float, 3> outValues{std::numeric_limits<float>::min(), 2.0f, std::numeric_limits<float>::max()};
std::function<NSNumber*(float value)> convert = [](float value) { return [NSNumber numberWithFloat:value]; };
testCreateInputTensorT<float>(outValues, convert, ONNX_TENSOR_ELEMENT_DATA_TYPE_FLOAT, JsTensorTypeFloat);
}
- (void)testCreateInputTensorDouble {
std::array<double_t, 3> outValues{std::numeric_limits<double_t>::min(), 2.0f, std::numeric_limits<double_t>::max()};
std::function<NSNumber*(double_t value)> convert = [](double_t value) { return [NSNumber numberWithDouble:value]; };
testCreateInputTensorT<double_t>(outValues, convert, ONNX_TENSOR_ELEMENT_DATA_TYPE_DOUBLE, JsTensorTypeDouble);
}
- (void)testCreateInputTensorBool {
std::array<bool, 3> outValues{false, true, true};
std::function<NSNumber*(bool value)> convert = [](bool value) { return [NSNumber numberWithBool:value]; };
testCreateInputTensorT<bool>(outValues, convert, ONNX_TENSOR_ELEMENT_DATA_TYPE_BOOL, JsTensorTypeBool);
}
- (void)testCreateInputTensorUInt8 {
std::array<uint8_t, 3> outValues{std::numeric_limits<uint8_t>::min(), 2, std::numeric_limits<uint8_t>::max()};
std::function<NSNumber*(uint8_t value)> convert = [](uint8_t value) {
return [NSNumber numberWithUnsignedChar:value];
};
testCreateInputTensorT<uint8_t>(outValues, convert, ONNX_TENSOR_ELEMENT_DATA_TYPE_UINT8, JsTensorTypeUnsignedByte);
}
- (void)testCreateInputTensorInt8 {
std::array<int8_t, 3> outValues{std::numeric_limits<int8_t>::min(), 2, std::numeric_limits<int8_t>::max()};
std::function<NSNumber*(int8_t value)> convert = [](int8_t value) { return [NSNumber numberWithChar:value]; };
testCreateInputTensorT<int8_t>(outValues, convert, ONNX_TENSOR_ELEMENT_DATA_TYPE_INT8, JsTensorTypeByte);
}
- (void)testCreateInputTensorInt16 {
std::array<int16_t, 3> outValues{std::numeric_limits<int16_t>::min(), 2, std::numeric_limits<int16_t>::max()};
std::function<NSNumber*(int16_t value)> convert = [](int16_t value) { return [NSNumber numberWithShort:value]; };
testCreateInputTensorT<int16_t>(outValues, convert, ONNX_TENSOR_ELEMENT_DATA_TYPE_INT16, JsTensorTypeShort);
}
- (void)testCreateInputTensorInt32 {
std::array<int32_t, 3> outValues{std::numeric_limits<int32_t>::min(), 2, std::numeric_limits<int32_t>::max()};
std::function<NSNumber*(int32_t value)> convert = [](int32_t value) { return [NSNumber numberWithInt:value]; };
testCreateInputTensorT<int32_t>(outValues, convert, ONNX_TENSOR_ELEMENT_DATA_TYPE_INT32, JsTensorTypeInt);
}
- (void)testCreateInputTensorInt64 {
std::array<int64_t, 3> outValues{std::numeric_limits<int64_t>::min(), 2, std::numeric_limits<int64_t>::max()};
std::function<NSNumber*(int64_t value)> convert = [](int64_t value) { return [NSNumber numberWithLongLong:value]; };
testCreateInputTensorT<int64_t>(outValues, convert, ONNX_TENSOR_ELEMENT_DATA_TYPE_INT64, JsTensorTypeLong);
}
- (void)testCreateInputTensorString {
std::array<std::string, 3> outValues{"a", "b", "c"};
NSMutableDictionary* inputTensorMap = [NSMutableDictionary dictionary];
// dims
NSArray* dims = @[ [NSNumber numberWithLong:outValues.size()] ];
inputTensorMap[@"dims"] = dims;
// type
inputTensorMap[@"type"] = JsTensorTypeString;
// data
NSMutableArray* data = [NSMutableArray array];
for (auto value : outValues) {
[data addObject:[NSString stringWithUTF8String:value.c_str()]];
}
inputTensorMap[@"data"] = data;
Ort::AllocatorWithDefaultOptions ortAllocator;
std::vector<Ort::MemoryAllocation> allocations;
Ort::Value inputTensor = [TensorHelper createInputTensor:testBlobManager
input:inputTensorMap
ortAllocator:ortAllocator
allocations:allocations];
XCTAssertEqual(inputTensor.GetTensorTypeAndShapeInfo().GetElementType(), ONNX_TENSOR_ELEMENT_DATA_TYPE_STRING);
XCTAssertTrue(inputTensor.IsTensor());
XCTAssertEqual(inputTensor.GetTensorTypeAndShapeInfo().GetDimensionsCount(), 1);
XCTAssertEqual(inputTensor.GetTensorTypeAndShapeInfo().GetShape(),
std::vector<int64_t>{static_cast<int64_t>(outValues.size())});
XCTAssertEqual(inputTensor.GetTensorTypeAndShapeInfo().GetElementCount(), outValues.size());
for (int i = 0; i < inputTensor.GetTensorTypeAndShapeInfo().GetElementCount(); ++i) {
size_t elementLength = inputTensor.GetStringTensorElementLength(i);
std::string element(elementLength, '\0');
inputTensor.GetStringTensorElement(elementLength, i, (void*)element.data());
XCTAssertEqual(element, outValues[i]);
}
}
template <typename T>
static void testCreateOutputTensorT(const std::array<T, 5>& outValues, std::function<NSNumber*(T value)>& convert,
NSString* jsTensorType, NSString* testDataFileName,
NSString* testDataFileExtension) {
NSBundle* bundle = [NSBundle bundleForClass:[TensorHelperTest class]];
NSString* dataPath = [bundle pathForResource:testDataFileName ofType:testDataFileExtension];
Ort::Env ortEnv{ORT_LOGGING_LEVEL_INFO, "Default"};
Ort::SessionOptions sessionOptions;
Ort::Session session{ortEnv, [dataPath UTF8String], sessionOptions};
Ort::AllocatorWithDefaultOptions ortAllocator;
std::vector<Ort::AllocatedStringPtr> names;
names.reserve(session.GetInputCount() + session.GetOutputCount());
std::vector<const char*> inputNames;
inputNames.reserve(session.GetInputCount());
for (size_t i = 0; i < session.GetInputCount(); ++i) {
auto inputName = session.GetInputNameAllocated(i, ortAllocator);
inputNames.emplace_back(inputName.get());
names.emplace_back(std::move(inputName));
}
std::vector<const char*> outputNames;
outputNames.reserve(session.GetOutputCount());
for (size_t i = 0; i < session.GetOutputCount(); ++i) {
auto outputName = session.GetOutputNameAllocated(i, ortAllocator);
outputNames.emplace_back(outputName.get());
names.emplace_back(std::move(outputName));
}
NSMutableDictionary* inputTensorMap = [NSMutableDictionary dictionary];
// dims
NSArray* dims = @[ [NSNumber numberWithLong:1], [NSNumber numberWithLong:outValues.size()] ];
inputTensorMap[@"dims"] = dims;
// type
inputTensorMap[@"type"] = jsTensorType;
// encoded data
size_t byteBufferSize = sizeof(T) * outValues.size();
unsigned char* byteBuffer = static_cast<unsigned char*>(malloc(byteBufferSize));
NSData* byteBufferRef = [NSData dataWithBytesNoCopy:byteBuffer length:byteBufferSize];
T* typePtr = (T*)[byteBufferRef bytes];
for (size_t i = 0; i < outValues.size(); ++i) {
typePtr[i] = outValues[i];
}
inputTensorMap[@"data"] = [testBlobManager testCreateData:byteBufferRef];
;
std::vector<Ort::MemoryAllocation> allocations;
Ort::Value inputTensor = [TensorHelper createInputTensor:testBlobManager
input:inputTensorMap
ortAllocator:ortAllocator
allocations:allocations];
std::vector<Ort::Value> feeds;
feeds.emplace_back(std::move(inputTensor));
Ort::RunOptions runOptions;
auto output = session.Run(runOptions, inputNames.data(), feeds.data(), inputNames.size(), outputNames.data(),
outputNames.size());
NSDictionary* resultMap = [TensorHelper createOutputTensor:testBlobManager outputNames:outputNames values:output];
// Compare output & input, but data.blobId is different
NSDictionary* outputMap = [resultMap objectForKey:@"output"];
// dims
XCTAssertTrue([outputMap[@"dims"] isEqualToArray:inputTensorMap[@"dims"]]);
// type
XCTAssertEqual(outputMap[@"type"], jsTensorType);
// data ({ blobId, offset, size })
NSDictionary* data = outputMap[@"data"];
XCTAssertNotNil(data[@"blobId"]);
XCTAssertEqual([data[@"offset"] longValue], 0);
XCTAssertEqual([data[@"size"] longValue], byteBufferSize);
}
- (void)testCreateOutputTensorFloat {
std::array<float, 5> outValues{std::numeric_limits<float>::min(), 1.0f, 2.0f, 3.0f,
std::numeric_limits<float>::max()};
std::function<NSNumber*(float value)> convert = [](float value) { return [NSNumber numberWithFloat:value]; };
testCreateOutputTensorT<float>(outValues, convert, JsTensorTypeFloat, @"test_types_float", @"ort");
}
- (void)testCreateOutputTensorDouble {
std::array<double_t, 5> outValues{std::numeric_limits<double_t>::min(), 1.0f, 2.0f, 3.0f,
std::numeric_limits<double_t>::max()};
std::function<NSNumber*(double_t value)> convert = [](double_t value) { return [NSNumber numberWithDouble:value]; };
testCreateOutputTensorT<double_t>(outValues, convert, JsTensorTypeDouble, @"test_types_double", @"onnx");
}
- (void)testCreateOutputTensorBool {
std::array<bool, 5> outValues{false, true, true, false, true};
std::function<NSNumber*(bool value)> convert = [](bool value) { return [NSNumber numberWithBool:value]; };
testCreateOutputTensorT<bool>(outValues, convert, JsTensorTypeBool, @"test_types_bool", @"onnx");
}
- (void)testCreateOutputTensorUInt8 {
std::array<uint8_t, 5> outValues{std::numeric_limits<uint8_t>::min(), 1, 2, 3, std::numeric_limits<uint8_t>::max()};
std::function<NSNumber*(uint8_t value)> convert = [](uint8_t value) {
return [NSNumber numberWithUnsignedChar:value];
};
testCreateOutputTensorT<uint8_t>(outValues, convert, JsTensorTypeUnsignedByte, @"test_types_uint8", @"ort");
}
- (void)testCreateOutputTensorInt8 {
std::array<int8_t, 5> outValues{std::numeric_limits<int8_t>::min(), 1, -2, 3, std::numeric_limits<int8_t>::max()};
std::function<NSNumber*(int8_t value)> convert = [](int8_t value) { return [NSNumber numberWithChar:value]; };
testCreateOutputTensorT<int8_t>(outValues, convert, JsTensorTypeByte, @"test_types_int8", @"ort");
}
- (void)testCreateOutputTensorInt32 {
std::array<int32_t, 5> outValues{std::numeric_limits<int32_t>::min(), 1, -2, 3, std::numeric_limits<int32_t>::max()};
std::function<NSNumber*(int32_t value)> convert = [](int32_t value) { return [NSNumber numberWithInt:value]; };
testCreateOutputTensorT<int32_t>(outValues, convert, JsTensorTypeInt, @"test_types_int32", @"ort");
}
- (void)testCreateOutputTensorInt64 {
std::array<int64_t, 5> outValues{std::numeric_limits<int64_t>::min(), 1, -2, 3, std::numeric_limits<int64_t>::max()};
std::function<NSNumber*(int64_t value)> convert = [](int64_t value) { return [NSNumber numberWithLongLong:value]; };
testCreateOutputTensorT<int64_t>(outValues, convert, JsTensorTypeLong, @"test_types_int64", @"ort");
}
@end
|