Home
last modified time | relevance | path

Searched defs:combine (Results 1 – 25 of 136) sorted by relevance

123456

/external/tensorflow/tensorflow/compiler/xla/service/
Dall_reduce_combiner_test.cc125 AllReduceCombiner combine(10 * 1024 * 1024, kMaxCombineCount); in TEST_F() local
173 AllReduceCombiner combine(10 * 1024 * 1024, kMaxCombineCount); in TEST_F() local
195 AllReduceCombiner combine((8 + 4) * 1024 - 1, kMaxCombineCount); in TEST_F() local
205 AllReduceCombiner combine((8 + 4) * 1024, kMaxCombineCount); in TEST_F() local
232 AllReduceCombiner combine(1024 * 1024, kMaxCombineCount); in TEST_F() local
261 AllReduceCombiner combine(1024 * 1024, kMaxCombineCount); in TEST_F() local
297 AllReduceCombiner combine(1024 * 1024, kMaxCombineCount); in TEST_F() local
342 AllReduceCombiner combine(1024 * 1024, kMaxCombineCount); in TEST_F() local
372 AllReduceCombiner combine(1024 * 1024, kMaxCombineCount); in TEST_F() local
412 AllReduceCombiner combine(1024 * 1024, kMaxCombineCount); in TEST_F() local
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/operators/
DZip.kt32 public fun <T1, T2, R> Flow<T1>.combine(flow: Flow<T2>, transform: suspend (a: T1, b: T2) -> R): Fl… in <lambda>() method
51 public fun <T1, T2, R> combine(flow: Flow<T1>, flow2: Flow<T2>, transform: suspend (a: T1, b: T2) -… in combine() method
114 public fun <T1, T2, T3, R> combine( in combine() method
150 public fun <T1, T2, T3, T4, R> combine( in combine() method
190 public fun <T1, T2, T3, T4, T5, R> combine( in combine() method
234 public inline fun <reified T, R> combine( in combine() method
283 public inline fun <reified T, R> combine( in combine() method
/external/libvpx/libvpx/vp9/common/x86/
Dvp9_mfqe_sse2.asm51 .combine: label
128 .combine: label
/external/libvpx/libvpx/vp8/common/x86/
Dmfqe_sse2.asm50 .combine: label
127 .combine: label
/external/kotlinx.coroutines/benchmarks/src/jmh/kotlin/benchmarks/flow/
DCombineFlowsBenchmark.kt24 fun combine() = runBlocking { in <lambda>() method in benchmarks.flow.CombineFlowsBenchmark
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/stats/
DMutableAggregation.java65 abstract void combine(MutableAggregation other, double fraction); in combine() method in MutableAggregation
93 void combine(MutableAggregation other, double fraction) { in combine() method in MutableAggregation.MutableSumDouble
162 void combine(MutableAggregation other, double fraction) { in combine() method in MutableAggregation.MutableCount
211 void combine(MutableAggregation other, double fraction) { in combine() method in MutableAggregation.MutableMean
335 void combine(MutableAggregation other, double fraction) { in combine() method in MutableAggregation.MutableDistribution
507 void combine(MutableAggregation other, double fraction) { in combine() method in MutableAggregation.MutableLastValueDouble
/external/guava/android/guava/src/com/google/common/util/concurrent/
DCollectionFuture.java79 abstract C combine(List<Present<V>> values); in combine() method in CollectionFuture
91 public List<V> combine(List<Present<V>> values) { in combine() method in CollectionFuture.ListFuture
/external/guava/guava/src/com/google/common/util/concurrent/
DCollectionFuture.java79 abstract C combine(List<Present<V>> values); in combine() method in CollectionFuture
91 public List<V> combine(List<Present<V>> values) { in combine() method in CollectionFuture.ListFuture
/external/python/cpython2/Tools/scripts/
Dcombinerefs.py88 def combine(fname): function
/external/webrtc/third_party/abseil-cpp/absl/hash/internal/
Dhash.h111 static H combine(H state) { return state; } in combine() function
Dspy_hash_state.h72 static SpyHashStateImpl combine(SpyHashStateImpl s, const A& a, in combine() function
81 static SpyHashStateImpl combine(SpyHashStateImpl s) { in combine() function
/external/abseil-cpp/absl/hash/internal/
Dhash.h111 static H combine(H state) { return state; } in combine() function
Dspy_hash_state.h72 static SpyHashStateImpl combine(SpyHashStateImpl s, const A& a, in combine() function
81 static SpyHashStateImpl combine(SpyHashStateImpl s) { in combine() function
/external/libtextclassifier/abseil-cpp/absl/hash/internal/
Dspy_hash_state.h72 static SpyHashStateImpl combine(SpyHashStateImpl s, const A& a, in combine() function
81 static SpyHashStateImpl combine(SpyHashStateImpl s) { in combine() function
Dhash.h164 static H combine(H state) { return state; } in combine() function
/external/openscreen/third_party/abseil/src/absl/hash/internal/
Dspy_hash_state.h72 static SpyHashStateImpl combine(SpyHashStateImpl s, const A& a, in combine() function
81 static SpyHashStateImpl combine(SpyHashStateImpl s) { in combine() function
Dhash.h164 static H combine(H state) { return state; } in combine() function
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/hash/internal/
Dspy_hash_state.h72 static SpyHashStateImpl combine(SpyHashStateImpl s, const A& a, in combine() function
81 static SpyHashStateImpl combine(SpyHashStateImpl s) { in combine() function
Dhash.h164 static H combine(H state) { return state; } in combine() function
/external/angle/third_party/abseil-cpp/absl/hash/internal/
Dspy_hash_state.h72 static SpyHashStateImpl combine(SpyHashStateImpl s, const A& a, in combine() function
81 static SpyHashStateImpl combine(SpyHashStateImpl s) { in combine() function
Dhash.h166 static H combine(H state) { return state; } in combine() function
/external/python/cpython3/Tools/scripts/
Dcombinerefs.py124 def combine(fname): function
/external/rust/crates/crc32fast/src/
Dlib.rs42 mod combine; module
128 pub fn combine(&mut self, other: &Self) { in combine() method
Dcombine.rs22 pub(crate) fn combine(mut crc1: u32, crc2: u32, mut len2: u64) -> u32 { in combine() function
/external/tensorflow/tensorflow/python/framework/
Dcombinations.py82 combine = test_combinations.combine variable

123456