For example, what do the numbers[1, 0, 0] mean?
And what does flatten_data:“0” mean?
I am confused and cannot find documents about its definition. Please help me.
Thanks.
sorry for late response, actually I am also curious about these meaning, for my use cases, they always appear as 0 like yours.
I quick go through the code in src/runtime/graph/graph_runtime.h, graph_runtime.cc and find these info:
for “version” I did not see any use, perhaps just a reserved field
for “index” , it is used for nodes which has more than one output:
in function GraphRuntime::SetupOpExecs() has a line uint32_t eid = this->entry_id(nid, index);
I guest it might affects op forward execution order, however, I did not dive into the implementation.