/external/tensorflow/tensorflow/contrib/slim/python/slim/nets/ |
D | inception_v3.py | 167 branch_1 = layers.conv2d( 169 branch_1 = layers.conv2d( 170 branch_1, depth(64), [5, 5], scope='Conv2d_0b_5x5') 182 net = array_ops.concat([branch_0, branch_1, branch_2, branch_3], 3) 194 branch_1 = layers.conv2d( 196 branch_1 = layers.conv2d( 197 branch_1, depth(64), [5, 5], scope='Conv_1_0c_5x5') 209 net = array_ops.concat([branch_0, branch_1, branch_2, branch_3], 3) 221 branch_1 = layers.conv2d( 223 branch_1 = layers.conv2d( [all …]
|
D | inception_v1.py | 97 branch_1 = layers.conv2d(net, 96, [1, 1], scope='Conv2d_0a_1x1') 98 branch_1 = layers.conv2d( 99 branch_1, 128, [3, 3], scope='Conv2d_0b_3x3') 109 net = array_ops.concat([branch_0, branch_1, branch_2, branch_3], 3) 119 branch_1 = layers.conv2d(net, 128, [1, 1], scope='Conv2d_0a_1x1') 120 branch_1 = layers.conv2d( 121 branch_1, 192, [3, 3], scope='Conv2d_0b_3x3') 131 net = array_ops.concat([branch_0, branch_1, branch_2, branch_3], 3) 147 branch_1 = layers.conv2d(net, 96, [1, 1], scope='Conv2d_0a_1x1') 148 branch_1 = layers.conv2d( [all …]
|
D | inception_v2.py | 149 branch_1 = layers.conv2d( 154 branch_1 = layers.conv2d( 155 branch_1, depth(64), [3, 3], scope='Conv2d_0b_3x3') 173 net = array_ops.concat([branch_0, branch_1, branch_2, branch_3], 3) 184 branch_1 = layers.conv2d( 189 branch_1 = layers.conv2d( 190 branch_1, depth(96), [3, 3], scope='Conv2d_0b_3x3') 208 net = array_ops.concat([branch_0, branch_1, branch_2, branch_3], 3) 224 branch_1 = layers.conv2d( 229 branch_1 = layers.conv2d( [all …]
|
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/optimization/ |
D | choose_fastest_branch_dataset_test.py | 62 def branch_1(dataset): function 66 dataset, [branch_0, branch_1]) 77 def branch_1(dataset): function 81 dataset, [branch_0, branch_1], ratio_numerator=10) 93 def branch_1(dataset): function 97 dataset, [branch_0, branch_1], ratio_numerator=10) 110 def branch_1(dataset): function 114 dataset, [branch_0, branch_1])
|
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/serialization/ |
D | choose_fastest_branch_dataset_serialization_test.py | 41 def branch_1(dataset): function 45 dataset, [branch_0, branch_1], 61 def branch_1(dataset): function 65 dataset, [branch_0, branch_1], num_elements_per_branch=3) 79 def branch_1(dataset): function 83 dataset, [branch_0, branch_1], num_elements_per_branch=3)
|
/external/tensorflow/tensorflow/python/data/experimental/benchmarks/ |
D | choose_fastest_branch_benchmark.py | 35 def branch_1(dataset): function 39 batch_map_dataset = branch_1(dataset) 41 dataset, [branch_0, branch_1],
|
/external/tensorflow/tensorflow/core/grappler/optimizers/data/ |
D | map_vectorization_test.cc | 220 const FunctionDef* branch_1 = in CheckVectorized() local 222 ASSERT_NE(branch_1, nullptr); in CheckVectorized() 223 CheckBranch(*branch_1, expected_original_branch); in CheckVectorized() 389 const FunctionDef* branch_1 = in TEST_P() local 391 ASSERT_NE(branch_1, nullptr); in TEST_P() 392 CheckBranch(*branch_1, original_ops); in TEST_P()
|
/external/vixl/src/aarch64/ |
D | macro-assembler-aarch64.h | 206 static bool IsValidComparison(const BranchInfo& branch_1, in IsValidComparison() argument 210 if (branch_1.branch_type_ != branch_2.branch_type_) { in IsValidComparison() 217 bool same_offsets = (branch_1.pc_offset_ == branch_2.pc_offset_); in IsValidComparison() 218 return (!same_offsets || ((branch_1.label_ == branch_2.label_) && in IsValidComparison() 219 (branch_1.first_unreacheable_pc_ == in IsValidComparison()
|