MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / PackElement

Class PackElement

arm_compute/core/ITensorPack.h:46–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44{
45public:
46 struct PackElement
47 {
48 PackElement() = default;
49 PackElement(int id, ITensor *tensor) : id(id), tensor(tensor), ctensor(nullptr)
50 {
51 }
52 PackElement(int id, const ITensor *ctensor) : id(id), tensor(nullptr), ctensor(ctensor)
53 {
54 }
55
56 int id{-1};
57 ITensor *tensor{nullptr};
58 const ITensor *ctensor{nullptr};
59 };
60
61public:
62 /** Default Constructor */

Callers 1

add_tensorMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected