Home
last modified time | relevance | path

Searched refs:refiner (Results 1 – 20 of 20) sorted by relevance

/external/tensorflow/tensorflow/core/common_runtime/
Dgraph_constructor_test.cc82 ShapeRefiner* refiner = nullptr, in ExpectError() argument
88 Status status = ImportGraphDef(opts, gdef_, &graph_, refiner, results); in ExpectError()
106 ShapeRefiner* refiner = nullptr, in ExpectOK() argument
109 Status s = ImportGraphDef(opts, gdef_, &graph_, refiner, results); in ExpectOK()
1176 ShapeRefiner refiner(TF_GRAPH_DEF_VERSION, graph_.op_registry()); in TEST_F() local
1180 &refiner); in TEST_F()
1193 opts, &refiner); in TEST_F()
1216 ShapeRefiner refiner(TF_GRAPH_DEF_VERSION, graph_.op_registry()); in TEST_F() local
1222 ImportGraphDefOptions(), &refiner); in TEST_F()
1242 opts, &refiner); in TEST_F()
[all …]
Dgraph_constructor.cc160 const FunctionDefLibrary* library, Graph* g, ShapeRefiner* refiner,
167 ShapeRefiner* refiner, std::vector<std::pair<Node*, int>>* return_tensors,
172 GraphConstructor(const Options& opts, Graph* g, ShapeRefiner* refiner, in GraphConstructor() argument
180 refiner_(refiner), in GraphConstructor()
405 const FunctionDefLibrary* library, Graph* g, ShapeRefiner* refiner, in NodeDefCopyingGraphConstructor() argument
409 : GraphConstructor(opts, g, refiner, return_tensors, return_nodes, in NodeDefCopyingGraphConstructor()
433 ShapeRefiner* refiner, std::vector<std::pair<Node*, int>>* return_tensors, in NodeDefMovingGraphConstructor() argument
436 : GraphConstructor(opts, g, refiner, return_tensors, return_nodes, in NodeDefMovingGraphConstructor()
491 const FunctionDefLibrary* library, Graph* g, ShapeRefiner* refiner, in Construct() argument
501 refiner, return_tensors, return_nodes, in Construct()
[all …]
Deval_const_tensor.cc40 const ShapeRefiner& refiner, in TryToInferTensorOutputFromInputShapes() argument
44 InferenceContext* c = refiner.GetContext(node); in TryToInferTensorOutputFromInputShapes()
142 const Node& target_node, const ShapeRefiner& refiner, in ExtractConstantSubgraph() argument
313 *current_edge, refiner, &tensor_inferred, in ExtractConstantSubgraph()
348 Status EvaluateConstantTensor(OutputTensor tensor, const ShapeRefiner& refiner, in EvaluateConstantTensor() argument
394 TF_RETURN_IF_ERROR(ExtractConstantSubgraph(*src, refiner, cached_values, in EvaluateConstantTensor()
Deval_const_tensor.h60 OutputTensor tensor, const ShapeRefiner& refiner,
Dgraph_constructor.h193 ShapeRefiner* refiner,
/external/tensorflow/tensorflow/cc/framework/
Dscope.cc45 ShapeRefiner* refiner, bool disable_shape_inference) in Impl() argument
49 refiner_(refiner), in Impl()
57 const std::shared_ptr<ShapeRefiner>& refiner) in Impl() argument
61 refiner_(refiner), in Impl()
68 ShapeRefiner* refiner = in NewRootScope() local
70 return Scope(new Impl(graph, new Status, new Impl::NameMap, refiner, in NewRootScope()
76 ShapeRefiner* refiner = in DisabledShapeInferenceScope() local
78 return Scope(new Impl(graph, new Status, new Impl::NameMap, refiner, in DisabledShapeInferenceScope()
509 static Scope NewScope(Graph* graph, Status* status, ShapeRefiner* refiner) { in NewScope() argument
526 std::shared_ptr<ShapeRefiner>(refiner, [](ShapeRefiner*) {}))); in NewScope()
[all …]
Dscope_internal.h31 Scope NewInternalScope(Graph* graph, Status* status, ShapeRefiner* refiner);
45 const std::shared_ptr<ShapeRefiner>& refiner);
67 Impl(Graph* graph, Status* status, NameMap* name_map, ShapeRefiner* refiner,
/external/tensorflow/tensorflow/c/
Dpython_api.cc77 graph->refiner.set_require_shape_inference_fns(require); in SetRequireShapeInferenceFns()
92 graph->refiner.GetContext(node); in GetHandleShapeAndType()
123 graph->refiner.GetContext(&output.oper->node); in SetHandleShapeAndType()
Dc_api.cc288 graph->refiner.GetContext(node); in TF_GraphSetOutputHandleShapesAndTypes()
695 graph->refiner.GetContext(node); in TF_GraphSetTensorShape()
703 status->status = graph->refiner.SetShape(node, output.index, new_shape); in TF_GraphSetTensorShape()
712 graph->refiner.GetContext(node); in TF_GraphGetTensorNumDims()
735 graph->refiner.GetContext(node); in TF_GraphGetTensorShape()
1055 status->status = desc->graph->refiner.AddNode(ret); in TF_FinishOperationLocked()
1531 refiner(graph.versions().producer(), graph.op_registry()), in TF_Graph()
1536 refiner.set_function_library_for_shape_inference(&graph.flib_def()); in TF_Graph()
1716 &graph->refiner, &results); in GraphImportGraphDefLocked()
2004 &params->cond_graph->graph, &parent->graph, &parent->refiner, in TF_FinishWhileHelper()
[all …]
Dc_api_internal.h77 tensorflow::ShapeRefiner refiner TF_GUARDED_BY(mu);
/external/tensorflow/tensorflow/core/grappler/costs/
Dgraph_properties.cc2095 SymbolicShapeRefiner* refiner, in ValidateSymbolicShapeManager() argument
2104 auto ctx = refiner->GetNodeContext(&node); in ValidateSymbolicShapeManager()
2112 if (!refiner->CompatibleShapes(shape, merged_shape)) { in ValidateSymbolicShapeManager()
2123 if (!refiner->CompatibleShapes(shape, merged_shape)) { in ValidateSymbolicShapeManager()
2144 SymbolicShapeRefiner* refiner, in VerboseShapeInferenceLogging() argument
2163 auto ctx = refiner->GetNodeContext(&node); in VerboseShapeInferenceLogging()
2561 auto refiner = absl::make_unique<SymbolicShapeRefiner>( in InferStatically() local
2575 PropagateShapes(refiner.get(), &new_shapes, resource_handles, num_loops)); in InferStatically()
2582 auto node_ctx = refiner->GetContext(&node); in InferStatically()
2612 TF_RETURN_IF_ERROR(ValidateSymbolicShapeManager(item_.graph, refiner.get(), in InferStatically()
[all …]
/external/tensorflow/tensorflow/compiler/tf2xla/
Dfunctionalize_cond.cc303 StateMap* cond_state_map, const ShapeRefiner& refiner);
391 StateMap* cond_state_map, const ShapeRefiner& refiner) in Conditional() argument
395 refiner_(refiner) {} in Conditional()
/external/webrtc/modules/audio_coding/
DBUILD.gn327 "codecs/ilbc/refiner.c",
328 "codecs/ilbc/refiner.h",
/external/webrtc/
DAndroid.bp1799 "modules/audio_coding/codecs/ilbc/refiner.c",
/external/webrtc/android_tools/
Dsorted_targets.txt33844 "//modules/audio_coding/codecs/ilbc/refiner.c": [
33845 "obj/modules/audio_coding/ilbc_c/refiner.o"
34002 "//modules/audio_coding/codecs/ilbc/refiner.c",
34003 "//modules/audio_coding/codecs/ilbc/refiner.h",
/external/jline/src/src/test/resources/jline/example/
Denglish.gz
/external/kotlinx.coroutines/benchmarks/src/jmh/resources/
Dospd.txt.gz
/external/one-true-awk/testdir/
Dbib23123 …y of his coming? and who shall stand when he appeareth? for he is like a refiner's fire, and like …
23124 And he shall sit as a refiner and purifier of silver: and he shall purify the sons of Levi, and pur…
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/
Dinternal_raw_IPA-old.txt162555 refiner %16674 rifˈaɪnər, rəfˈạnər
162556 refiner's rəfˈạnərz
Dinternal_raw_IPA.txt136208 refiner %27265 rifˈaɪnər, rəfˈɑɪnər
136209 refiner's %29569 rəfˈɑɪnərz