Home
last modified time | relevance | path

Searched refs:GraphMatcher (Results 1 – 7 of 7) sorted by relevance

/external/tensorflow/tensorflow/contrib/quantize/python/
Dgraph_matcher_test.py75 matcher = graph_matcher.GraphMatcher(relu_pattern)
99 matcher = graph_matcher.GraphMatcher(minus_pattern)
123 matcher = graph_matcher.GraphMatcher(add_or_sub_pattern)
144 matcher = graph_matcher.GraphMatcher(transpose_pattern)
186 matcher_a = graph_matcher.GraphMatcher(add_pattern_a)
191 matcher_b = graph_matcher.GraphMatcher(add_pattern_b)
198 matcher_fail = graph_matcher.GraphMatcher(add_pattern_fail)
Dquantize.py482 post_activation_bypass_layer_matcher = graph_matcher.GraphMatcher(
506 layer_matcher = graph_matcher.GraphMatcher(activation_pattern)
530 final_layer_matcher = graph_matcher.GraphMatcher(
548 sep_conv_matcher = graph_matcher.GraphMatcher(sep_conv_pattern)
Dgraph_matcher.py201 class GraphMatcher(object): class
Dfold_batch_norms.py201 bn_identity_matcher = graph_matcher.GraphMatcher(batch_norm_identity_pattern)
203 bn_matcher = graph_matcher.GraphMatcher(
212 moving_avg_mul_matcher = graph_matcher.GraphMatcher(
/external/tensorflow/tensorflow/tools/graph_transforms/
Dtransform_utils.cc284 GraphMatcher::GraphMatcher(const GraphDef& graph_def) { in GraphMatcher() function in tensorflow::graph_transforms::GraphMatcher
289 Status GraphMatcher::GetOpTypeMatches(const OpTypePattern& pattern, in GetOpTypeMatches()
306 bool GraphMatcher::DoesOpTypeMatch( in DoesOpTypeMatch()
368 GraphMatcher matcher(input_graph_def); in ReplaceMatchingOpTypes()
Dtransform_utils.h162 class GraphMatcher {
164 GraphMatcher(const GraphDef& graph_def);
Dtransform_utils_test.cc302 GraphMatcher matcher(graph_def); in TestGetOpTypeMatches()
395 GraphMatcher matcher(graph_def); in TestGetOpTypeMatchesDAG()