Home
last modified time | relevance | path

Searched refs:branch_1 (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/contrib/slim/python/slim/nets/
Dinception_v3.py167 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 …]
Dinception_v1.py97 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 …]
Dinception_v2.py149 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/
Dchoose_fastest_branch_dataset_test.py62 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/
Dchoose_fastest_branch_dataset_serialization_test.py41 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/
Dchoose_fastest_branch_benchmark.py35 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/
Dmap_vectorization_test.cc220 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/
Dmacro-assembler-aarch64.h206 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()