Home
last modified time | relevance | path

Searched refs:graph_file (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Parser/pgen/
Dpgen.py133 def __init__(self, grammar_file, token_file, verbose=False, graph_file=None): argument
144 self.graph_file = graph_file
156 if self.graph_file is not None:
157 nfa.dump_graph(self.graph_file.write)
163 if self.graph_file is not None:
164 dfa.dump_graph(self.graph_file.write)
D__main__.py35 args.grammar, args.tokens, verbose=args.verbose, graph_file=args.graph
/external/tensorflow/tensorflow/core/kernels/data/experimental/
Dsnapshot_util.cc879 std::string graph_file = in DumpDatasetGraph() local
882 LOG(INFO) << "Graph hash is " << hash_hex << ", writing to " << graph_file; in DumpDatasetGraph()
884 return WriteTextProto(env, graph_file, *graph); in DumpDatasetGraph()