MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / NameRangesForNode

Function NameRangesForNode

tensorflow/core/framework/node_def_util.cc:715–725  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

713} // namespace
714
715Status NameRangesForNode(const AttrSlice& attrs, const OpDef& op_def,
716 NameRangeMap* inputs, NameRangeMap* outputs) {
717 if (inputs != nullptr) {
718 TF_RETURN_IF_ERROR(
719 NameRangesHelper(attrs, op_def.input_arg(), op_def, inputs));
720 }
721 if (outputs != nullptr) {
722 return NameRangesHelper(attrs, op_def.output_arg(), op_def, outputs);
723 }
724 return Status::OK();
725}
726
727Status NameRangesForNode(const Node& node, const OpDef& op_def,
728 NameRangeMap* inputs, NameRangeMap* outputs) {

Callers 15

createOperationMethod · 0.85
OpKernelMethod · 0.85
PreInputInitMethod · 0.85
DefineMethod · 0.85
GraphToFunctionDefFunction · 0.85
MemoryTypesForNodeFunction · 0.85
TESTFunction · 0.85
InitializeMethod · 0.85
GetInputMapFunction · 0.85
GraphToFunctionDefFunction · 0.85

Calls 1

NameRangesHelperFunction · 0.85

Tested by 1

TESTFunction · 0.68