/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_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...] |
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...] |
/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/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 );
|
otvgdef.c | 5 /* OpenType GDEF table validation (body). */ 173 /***** GDEF TABLE *****/ 205 FT_TRACE3(( "validating GDEF table\n" )); 220 /* specification without increasing GDEF's version, */
|
/external/tensorflow/tensorflow/contrib/tensorrt/ |
README.md | 31 gdef = sess.graph.as_graph_def() 33 gdef, #original graph_def
|
/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...] |
hb-ot-layout-gdef-table.hh | 336 * GDEF -- The Glyph Definition Table 339 struct GDEF 423 FixedVersion<>version; /* Version of the GDEF table--currently 428 * GDEF header (may be Null) */ 432 * of GDEF header (may be Null) */ 436 * of GDEF header (may be Null) */ 440 * of GDEF header (may be Null) */ 443 * definitions--from beginning of GDEF 448 * Store--from beginning of GDEF
|
hb-ot-layout.cc | 34 #include "hb-ot-layout-gdef-table.hh" 53 layout->gdef_blob = OT::Sanitizer<OT::GDEF>::sanitize (face->reference_table (HB_OT_TAG_GDEF)); 54 layout->gdef = OT::Sanitizer<OT::GDEF>::lock_instance (layout->gdef_blob); 92 * glyph class 3 (mark) in GDEF. Nuke the GDEF to avoid zero-width 96 if (3 == layout->gdef->get_glyph_class (5)) 97 layout->gdef = &OT::Null(OT::GDEF); 161 /* Many versions of Tahoma have bad GDEF tables that incorrectly classify some spacing mark [all...] |
/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/ |
ftotval.h | 59 /* some OpenType tables (BASE, GDEF, GPOS, GSUB, JSTF, MATH). */ 84 * Validate GDEF table. 99 * Validate all OpenType tables (BASE, GDEF, GPOS, GSUB, JSTF, MATH). 140 * A pointer to the GDEF table.
|
/external/freetype/include/freetype/internal/services/ |
svotval.h | 35 FT_Bytes *gdef,
|
/prebuilts/misc/darwin-x86_64/freetype/include/freetype2/ |
ftotval.h | 59 /* some OpenType tables (BASE, GDEF, GPOS, GSUB, JSTF, MATH). */ 84 * Validate GDEF table. 99 * Validate all OpenType tables (BASE, GDEF, GPOS, GSUB, JSTF, MATH). 140 * A pointer to the GDEF table.
|
/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/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/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/contrib/tensorrt/segment/ |
segment.h | 40 // @param gdef The GraphDef describing the network 48 const tensorflow::GraphDef& gdef,
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ |
GDEFWriter.java | 35 System.out.println("Writing " + scriptName + " GDEF table...");
|
/external/tensorflow/tensorflow/core/distributed_runtime/ |
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...] |
/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));
|