Home
last modified time | relevance | path

Searched refs:_kernel_label_map (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/python/ops/
Dspectral_ops_test_util.py47 return ops.get_default_graph()._kernel_label_map(d) # pylint: disable=protected-access
49 return ops.get_default_graph()._kernel_label_map({}) # pylint: disable=protected-access
/external/tensorflow/tensorflow/python/kernel_tests/
Dneon_depthwise_conv_op_test.py119 with sess.graph._kernel_label_map({"DepthwiseConv2dNative": "neon"}):
211 with sess.graph._kernel_label_map({"DepthwiseConv2dNative": "neon"}):
Ddepthwise_conv_op_test.py151 with sess.graph._kernel_label_map({
397 with sess.graph._kernel_label_map({
/external/tensorflow/tensorflow/python/framework/
Dops_test.py2505 with g._kernel_label_map({"KernelLabelRequired": "overload_1"}):
2578 with sess.graph._kernel_label_map({"KernelLabel": "overload_1"}):
2580 with sess.graph._kernel_label_map({"KernelLabel": "overload_2"}):
2582 with sess.graph._kernel_label_map({"KernelLabel": ""}):
Dops.py4789 def _kernel_label_map(self, op_to_kernel_label_map): member in Graph