forked from onnx/onnx-tensorrt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ImporterContext.hpp
106 lines (100 loc) · 3.94 KB
/
ImporterContext.hpp
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
/*
* Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
#pragma once
#include "onnx2trt.hpp"
#include <list>
#include <unordered_map>
namespace onnx2trt {
class ImporterContext final : public IImporterContext {
nvinfer1::INetworkDefinition* _network;
nvinfer1::ILogger* _logger;
std::list<UniqueOwnable> _owned_plugin_instances;
std::list<std::vector<uint8_t>> _temp_bufs;
std::unordered_map<std::string, nvinfer1::ITensor*> _user_inputs;
std::unordered_map<std::string, nvinfer1::ITensor**> _user_outputs;
std::unordered_map<std::string, int64_t> _opsets;
public:
ImporterContext(nvinfer1::INetworkDefinition* network,
nvinfer1::ILogger* logger)
: _network(network), _logger(logger) {}
virtual nvinfer1::INetworkDefinition* network() override { return _network; }
nvinfer1::ILogger& logger() { return *_logger; }
virtual ShapedWeights createTempWeights(ShapedWeights::DataType type,
nvinfer1::Dims shape) override {
ShapedWeights weights(type, nullptr, shape);
_temp_bufs.push_back(std::vector<uint8_t>(weights.size_bytes()));
weights.values = _temp_bufs.back().data();
return weights;
}
virtual nvinfer1::IPluginLayer* addPlugin(Plugin* plugin,
std::vector<nvinfer1::ITensor*> const& inputs) override {
// Note: Plugins are wrapped here to make them work with
// onnx2trt::PluginFactory.
auto* wrapped_plugin = new TypeSerializingPlugin(plugin);
_owned_plugin_instances.emplace_back(wrapped_plugin);
#if NV_TENSORRT_MAJOR < 4
return _network->addPlugin(inputs.data(), inputs.size(), *wrapped_plugin);
#else
return _network->addPluginExt(inputs.data(), inputs.size(), *wrapped_plugin);
#endif
}
bool setUserInput(const char* name, nvinfer1::ITensor* input) {
_user_inputs[name] = input;
return true;
}
bool setUserOutput(const char* name, nvinfer1::ITensor** output) {
_user_outputs[name] = output;
return true;
}
nvinfer1::ITensor* getUserInput(const char* name) {
if( !_user_inputs.count(name) ) {
return nullptr;
} else {
return _user_inputs.at(name);
}
}
nvinfer1::ITensor** getUserOutput(const char* name) {
if( !_user_outputs.count(name) ) {
return nullptr;
} else {
return _user_outputs.at(name);
}
}
std::unordered_map<std::string, nvinfer1::ITensor**> const& getUserOutputs() const {
return _user_outputs;
}
void clearOpsets() { _opsets.clear(); }
void addOpset(std::string domain, int64_t version) {
_opsets.emplace(domain, version);
}
virtual int64_t getOpsetVersion(const char* domain="") const override {
if (_opsets.empty()) {
return 1;
} else if (_opsets.size() == 1) {
return _opsets.begin()->second;
} else {
assert(_opsets.count(domain));
return _opsets.at(domain);
}
}
};
} // namespace onnx2trt