forked from onnx/onnx-tensorrt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ShapedWeights.hpp
63 lines (45 loc) · 1.34 KB
/
ShapedWeights.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
/*
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#include <NvInfer.h>
#include <onnx/onnx_pb.h>
namespace onnx2trt
{
class ShapedWeights
{
public:
using DataType = int32_t;
//! Create 1D zero-length ShapedWeights of given type, count()==0, and values=nullptr.
static ShapedWeights empty(DataType type);
//! Construct ShapedWeights that is not expected to be usuable,
//! except with `operator=` and method `setName()`.
ShapedWeights() = default;
explicit ShapedWeights(DataType type, void* values, nvinfer1::Dims shape_);
size_t count() const;
size_t size_bytes() const;
const char* getName() const;
void setName(const char* name);
//! True if values exist.
explicit operator bool() const;
operator nvinfer1::Weights() const;
template <typename T>
T& at(size_t index)
{
assert(index >= 0 && (index * sizeof(T)) < size_bytes());
return static_cast<T*>(values)[index];
}
template <typename T>
const T& at(size_t index) const
{
assert(index >= 0 && (index * sizeof(T)) < size_bytes());
return static_cast<const T*>(values)[index];
}
public:
DataType type{static_cast<DataType>(-1)};
void* values{nullptr};
nvinfer1::Dims shape{-1, {}};
const char* name{};
};
class IImporterContext;
} // namespace onnx2trt