Home
last modified time | relevance | path

Searched refs:CLNode (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/lite/delegates/gpu/cl/
Dinference_context.h45 struct CLNode { struct
53 CLNode() = default; argument
55 CLNode(CLNode&& node) = default;
56 CLNode& operator=(CLNode&& node) = default; argument
57 CLNode(const CLNode&) = delete;
58 CLNode& operator=(const CLNode&) = delete; argument
164 std::vector<CLNode> nodes_;
Dserialization_generated.h33 struct CLNode;
94 struct CLNode FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
129 typedef CLNode Table;
133 fbb_.AddOffset(CLNode::VT_GPU_OP, gpu_op); in add_gpu_op()
136 fbb_.AddOffset(CLNode::VT_INPUT_IDS, input_ids); in add_input_ids()
139 fbb_.AddOffset(CLNode::VT_OUTPUT_IDS, output_ids); in add_output_ids()
142 fbb_.AddOffset(CLNode::VT_NAME, name); in add_name()
148 flatbuffers::Offset<CLNode> Finish() { in Finish()
150 auto o = flatbuffers::Offset<CLNode>(end); in Finish()
155 inline flatbuffers::Offset<CLNode> CreateCLNode(
[all …]
Dserialization.fbs24 table CLNode {
43 nodes:[CLNode];
Dinference_context.cc54 const CLNode& node) { in IsReady()
64 const CLNode& node) { in GetCLNodeTensors()
78 absl::Status MergeCLNodes(CLNode* src, CLNode* dst) { in MergeCLNodes()
375 CLNode cl_node; in ConvertOperations()
Dserialization.cc916 flatbuffers::Offset<data::CLNode> Encode( in Encode()
917 const CLNode& node, flatbuffers::FlatBufferBuilder* builder) { in Encode()
938 absl::Status Decode(const data::CLNode* fb_node, CLNode* node) { in Decode()
970 std::vector<flatbuffers::Offset<data::CLNode>> nodes_fb; in Encode()