HomeSort by relevance Sort by last modified time
    Searched refs:gdef (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/tensorflow/tensorflow/python/framework/
proto_test.py 37 gdef = a.op.graph.as_graph_def()
38 serialized = gdef.SerializeToString()
43 self.assertProtoEquals(unserialized, gdef)
  /external/freetype/include/freetype/internal/services/
svotval.h 35 FT_Bytes *gdef,
  /external/tensorflow/tensorflow/compiler/tf2xla/
test_util.h 36 GraphDef gdef; member in struct:tensorflow::InstantiationResultForTest
test_util.cc 38 *result->gdef.add_node() = std::move(n);
  /external/tensorflow/tensorflow/contrib/tensorrt/segment/
segment.h 40 // @param gdef The GraphDef describing the network
48 const tensorflow::GraphDef& gdef,
  /external/tensorflow/tensorflow/core/ops/
array_grad_test.cc 39 auto gdef = test::function::GDef( local
49 VLOG(1) << DebugStringWhole(gdef);
51 TF_CHECK_OK(sess->Create(gdef));
80 auto gdef = test::function::GDef( local
90 VLOG(1) << DebugStringWhole(gdef);
92 TF_CHECK_OK(sess->Create(gdef));
120 auto gdef = test::function::GDef( local
144 auto gdef = test::function::GDef( local
216 auto gdef = test::function::GDef( local
262 auto gdef = test::function::GDef( local
301 auto gdef = test::function::GDef( local
339 auto gdef = test::function::GDef( local
369 auto gdef = test::function::GDef( local
407 auto gdef = test::function::GDef( local
442 auto gdef = test::function::GDef( local
477 auto gdef = test::function::GDef( local
524 auto gdef = test::function::GDef( local
565 auto gdef = test::function::GDef( local
    [all...]
  /external/harfbuzz_ng/src/
main.cc 29 #include "hb-ot-layout-gdef-table.hh"
176 case GDEF::tableTag:
179 const GDEF &gdef = *CastP<GDEF> (font_data + table.offset); local
182 gdef.has_glyph_classes () ? "" : "no ");
184 gdef.has_mark_attachment_types () ? "" : "no ");
186 gdef.has_attach_points () ? "" : "no ");
188 gdef.has_lig_carets () ? "" : "no ");
190 gdef.has_mark_sets () ? "" : "no ")
    [all...]
  /external/freetype/src/otvalid/
otvmod.c 78 FT_Byte* volatile gdef; local
89 base = gdef = gpos = gsub = jstf = math = NULL;
115 error = otv_load_table( face, TTAG_GDEF, &gdef, &len_gdef );
180 if ( gdef )
182 ft_validator_init( &valid, gdef, gdef + len_gdef, FT_VALIDATE_DEFAULT );
184 otv_GDEF_validate( gdef, gsub, gpos, num_glyphs, &valid );
211 *ot_gdef = (FT_Bytes)gdef;
223 FT_FREE( gdef );
  /external/tensorflow/tensorflow/core/graph/
graph_constructor.h 27 // Construct a Graph *g out of a GraphDef gdef. Returns non-OK on
47 const GraphDef& gdef, Graph* g);
80 // Maps tensors in `gdef` to existing tensors in `g`. Inputs in `gdef`
85 // name as it originally appears in `gdef`.
102 // other nodes in `gdef`.
105 // Tensors in `gdef` that will be returned via the ImportGraphDefResults
111 // the name as it originally appears in `gdef`.
117 // The names of nodes in `gdef` that will be returned via the
124 // name as it originally appears in `gdef`
    [all...]
graph_partition.cc 190 GraphDef* gdef, const Edge* edge,
216 NodeDef* cast = gdef->add_node();
232 NodeDef* send = gdef->add_node();
238 GraphDef* gdef, const Edge* edge, NodeDef** real_recv,
265 NodeDef* recv = gdef->add_node();
277 NodeDef* cast = gdef->add_node();
286 NodeDef* id = gdef->add_node();
295 NodeDef* AddDummyConst(const PartitionOptions& opts, GraphDef* gdef,
299 NodeDef* result = gdef->add_node();
309 NodeDef* AddControlTrigger(const PartitionOptions& opts, GraphDef* gdef,
850 GraphDef* gdef = &part.second; local
1178 GraphDef* gdef = &it.second; local
    [all...]
graph_partition_test.cc 48 const GraphDef* gdef, std::vector<std::pair<const NodeDef*, int64>>* nodes,
113 const GraphDef& gdef = kv.second; local
118 for (const NodeDef& ndef : gdef.node()) {
399 const GraphDef& gdef = kv.second; local
400 for (const NodeDef& ndef : gdef.node()) {
483 GraphDef gdef; local
501 &gdef));
502 gdef.mutable_versions()->set_producer(TF_GRAPH_DEF_VERSION);
503 Partition(gdef, &partitions_);
507 const GraphDef& gdef = kv.second local
533 GraphDef gdef; local
584 GraphDef gdef; local
671 GraphDef gdef; local
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/
graph_execution_state.cc 119 GraphDef gdef; local
123 *gdef.mutable_library() = flib_def_->ToProto();
136 *gdef.add_node() = node;
146 int old_node_size = gdef.node_size();
147 gdef.mutable_node()->MergeFrom(extension_def.node());
149 AddDefaultAttrsToGraphDef(&gdef, *flib_def_, old_node_size));
151 if (gdef.has_versions()) {
152 if (gdef.versions().producer() != extension_def.versions().producer()) {
154 "Can't extend GraphDef at version ", gdef.versions().producer(),
157 VersionDef* versions = gdef.mutable_versions()
    [all...]
  /external/tensorflow/tensorflow/contrib/tensorrt/test/
test_tftrt.py 62 def run_graph(gdef, dumm_inp):
68 graph_def=gdef, return_elements=["input", "output"])
80 gdef = get_simple_graph_def() variable
82 trt_graph = trt.create_inference_graph(gdef, ["output"], inp_dims[0])
83 o1 = run_graph(gdef, dummy_input)
  /external/tensorflow/tensorflow/core/util/
equal_graph_def.h 42 // Returns a hash of `gdef` that is consistent with EqualGraphDef. In other
49 uint64 GraphDefHash(const GraphDef& gdef,
  /external/tensorflow/tensorflow/contrib/tensorrt/convert/
convert_graph.cc 205 tensorflow::GraphDef gdef; local
219 TF_RETURN_IF_ERROR(optimizer.Optimize(cluster, item, &gdef));
222 item.graph = gdef;
224 TF_RETURN_IF_ERROR(fold.Optimize(nullptr, item, &gdef));
232 gdef.library());
235 tensorflow::GraphConstructorOptions(), gdef, &graph));
249 gdef, IsTensorRTCandidate, segment_options, &segments));
  /external/tensorflow/tensorflow/core/distributed_runtime/
graph_mgr.h 76 Status Register(const string& session, const GraphDef& gdef,
176 Status InitItem(const string& session, const GraphDef& gdef,
graph_mgr.cc 85 // Validates "gdef" device specifications.
86 static Status ValidateGraphDefForDevices(const GraphDef& gdef) {
88 for (const auto& ndef : gdef.node()) {
107 // Creates executors given a graph definition "gdef" of a "session".
108 // If a node in "gdef" is shared by other graphs in "session", the
112 // If "gdef" is assigned to multiple devices, extra nodes (e.g.,
118 Status GraphMgr::InitItem(const string& session, const GraphDef& gdef,
125 new FunctionLibraryDefinition(OpRegistry::Global(), gdef.library()));
127 TF_RETURN_IF_ERROR(ValidateGraphDefForDevices(gdef));
129 if (gdef.versions().producer() >= 5)
    [all...]
cluster_function_library_runtime.cc 138 GraphDef gdef; local
140 TF_RETURN_IF_ERROR(ConstructFunctionGraph(sig, attrs, options, &gdef,
142 *gdef.mutable_library() = lib_def.ToProto();
146 *req.mutable_graph_def() = gdef;
  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/
grpc_session_test.cc 525 GraphDef gdef; local
555 test::graph::ToGraphDef(&g, &gdef);
560 TF_CHECK_OK(session->Create(gdef));
582 GraphDef gdef; local
615 test::graph::ToGraphDef(&g, &gdef);
620 TF_CHECK_OK(session->Create(gdef));
641 GraphDef gdef; local
656 test::graph::ToGraphDef(&g, &gdef);
662 TF_CHECK_OK(sess->Create(gdef));
673 TF_CHECK_OK(sess->Create(gdef));
911 GraphDef gdef; local
928 GraphDef gdef; local
952 GraphDef gdef; local
977 GraphDef gdef; local
    [all...]
  /external/libffi/
texinfo.tex 118 \ifx\putwordAppendix\undefined \gdef\putwordAppendix{Appendix}\fi
119 \ifx\putwordChapter\undefined \gdef\putwordChapter{Chapter}\fi
120 \ifx\putworderror\undefined \gdef\putworderror{error}\fi
121 \ifx\putwordfile\undefined \gdef\putwordfile{file}\fi
122 \ifx\putwordin\undefined \gdef\putwordin{in}\fi
123 \ifx\putwordIndexIsEmpty\undefined \gdef\putwordIndexIsEmpty{(Index is empty)}\fi
124 \ifx\putwordIndexNonexistent\undefined \gdef\putwordIndexNonexistent{(Index is nonexistent)}\fi
125 \ifx\putwordInfo\undefined \gdef\putwordInfo{Info}\fi
126 \ifx\putwordInstanceVariableof\undefined \gdef\putwordInstanceVariableof{Instance Variable of}\fi
127 \ifx\putwordMethodon\undefined \gdef\putwordMethodon{Method on}\f
    [all...]
  /external/libmicrohttpd/doc/
texinfo.tex 118 \ifx\putwordAppendix\undefined \gdef\putwordAppendix{Appendix}\fi
119 \ifx\putwordChapter\undefined \gdef\putwordChapter{Chapter}\fi
120 \ifx\putworderror\undefined \gdef\putworderror{error}\fi
121 \ifx\putwordfile\undefined \gdef\putwordfile{file}\fi
122 \ifx\putwordin\undefined \gdef\putwordin{in}\fi
123 \ifx\putwordIndexIsEmpty\undefined \gdef\putwordIndexIsEmpty{(Index is empty)}\fi
124 \ifx\putwordIndexNonexistent\undefined \gdef\putwordIndexNonexistent{(Index is nonexistent)}\fi
125 \ifx\putwordInfo\undefined \gdef\putwordInfo{Info}\fi
126 \ifx\putwordInstanceVariableof\undefined \gdef\putwordInstanceVariableof{Instance Variable of}\fi
127 \ifx\putwordMethodon\undefined \gdef\putwordMethodon{Method on}\f
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/
texinfo.tex 118 \ifx\putwordAppendix\undefined \gdef\putwordAppendix{Appendix}\fi
119 \ifx\putwordChapter\undefined \gdef\putwordChapter{Chapter}\fi
120 \ifx\putworderror\undefined \gdef\putworderror{error}\fi
121 \ifx\putwordfile\undefined \gdef\putwordfile{file}\fi
122 \ifx\putwordin\undefined \gdef\putwordin{in}\fi
123 \ifx\putwordIndexIsEmpty\undefined \gdef\putwordIndexIsEmpty{(Index is empty)}\fi
124 \ifx\putwordIndexNonexistent\undefined \gdef\putwordIndexNonexistent{(Index is nonexistent)}\fi
125 \ifx\putwordInfo\undefined \gdef\putwordInfo{Info}\fi
126 \ifx\putwordInstanceVariableof\undefined \gdef\putwordInstanceVariableof{Instance Variable of}\fi
127 \ifx\putwordMethodon\undefined \gdef\putwordMethodon{Method on}\f
    [all...]
  /external/python/cpython3/Modules/_ctypes/libffi/
texinfo.tex 118 \ifx\putwordAppendix\undefined \gdef\putwordAppendix{Appendix}\fi
119 \ifx\putwordChapter\undefined \gdef\putwordChapter{Chapter}\fi
120 \ifx\putworderror\undefined \gdef\putworderror{error}\fi
121 \ifx\putwordfile\undefined \gdef\putwordfile{file}\fi
122 \ifx\putwordin\undefined \gdef\putwordin{in}\fi
123 \ifx\putwordIndexIsEmpty\undefined \gdef\putwordIndexIsEmpty{(Index is empty)}\fi
124 \ifx\putwordIndexNonexistent\undefined \gdef\putwordIndexNonexistent{(Index is nonexistent)}\fi
125 \ifx\putwordInfo\undefined \gdef\putwordInfo{Info}\fi
126 \ifx\putwordInstanceVariableof\undefined \gdef\putwordInstanceVariableof{Instance Variable of}\fi
127 \ifx\putwordMethodon\undefined \gdef\putwordMethodon{Method on}\f
    [all...]
  /toolchain/binutils/binutils-2.27/texinfo/
texinfo.tex 119 \ifx\putwordAppendix\undefined \gdef\putwordAppendix{Appendix}\fi
120 \ifx\putwordChapter\undefined \gdef\putwordChapter{Chapter}\fi
121 \ifx\putwordfile\undefined \gdef\putwordfile{file}\fi
122 \ifx\putwordin\undefined \gdef\putwordin{in}\fi
123 \ifx\putwordIndexIsEmpty\undefined \gdef\putwordIndexIsEmpty{(Index is empty)}\fi
124 \ifx\putwordIndexNonexistent\undefined \gdef\putwordIndexNonexistent{(Index is nonexistent)}\fi
125 \ifx\putwordInfo\undefined \gdef\putwordInfo{Info}\fi
126 \ifx\putwordInstanceVariableof\undefined \gdef\putwordInstanceVariableof{Instance Variable of}\fi
127 \ifx\putwordMethodon\undefined \gdef\putwordMethodon{Method on}\fi
128 \ifx\putwordNoTitle\undefined \gdef\putwordNoTitle{No Title}\f
    [all...]
  /external/tensorflow/tensorflow/cc/framework/
scope.h 52 /// GraphDef gdef;
53 /// Status s = root.ToGraphDef(&gdef);
191 Status ToGraphDef(GraphDef* gdef) const;

Completed in 228 milliseconds

1 2 3