HomeSort by relevance Sort by last modified time
    Searched refs:parallel (Results 276 - 300 of 804) sorted by null

<<11121314151617181920>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/parallel/
omp_loop_static.h 25 /** @file parallel/omp_loop_static.h
26 * @brief Parallelization of embarrassingly parallel execution by
28 * This file is a GNU parallel extension to the Standard C++ Library.
38 #include <parallel/settings.h>
39 #include <parallel/basic_iterator.h>
43 /** @brief Embarrassingly parallel algorithm for random access
82 # pragma omp parallel num_threads(__num_threads)
99 } //parallel
queue.h 25 /** @file parallel/queue.h
27 * This file is a GNU parallel extension to the Standard C++ Library.
35 #include <parallel/types.h>
36 #include <parallel/base.h>
37 #include <parallel/compatibility.h>
search.h 25 /** @file parallel/search.h
26 * @brief Parallel implementation base for std::search() and
28 * This file is a GNU parallel extension to the Standard C++ Library.
38 #include <parallel/parallel.h>
39 #include <parallel/equally_split.h>
68 // Generic parallel find algorithm (requires random access iterator).
70 /** @brief Parallel std::search.
117 # pragma omp parallel num_threads(__num_threads)
161 } //parallel
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/parallel/
omp_loop_static.h 25 /** @file parallel/omp_loop_static.h
26 * @brief Parallelization of embarrassingly parallel execution by
28 * This file is a GNU parallel extension to the Standard C++ Library.
38 #include <parallel/settings.h>
39 #include <parallel/basic_iterator.h>
43 /** @brief Embarrassingly parallel algorithm for random access
82 # pragma omp parallel num_threads(__num_threads)
99 } //parallel
queue.h 25 /** @file parallel/queue.h
27 * This file is a GNU parallel extension to the Standard C++ Library.
35 #include <parallel/types.h>
36 #include <parallel/base.h>
37 #include <parallel/compatibility.h>
search.h 25 /** @file parallel/search.h
26 * @brief Parallel implementation base for std::search() and
28 * This file is a GNU parallel extension to the Standard C++ Library.
38 #include <parallel/parallel.h>
39 #include <parallel/equally_split.h>
68 // Generic parallel find algorithm (requires random access iterator).
70 /** @brief Parallel std::search.
117 # pragma omp parallel num_threads(__num_threads)
161 } //parallel
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/d30v/
opt.s 1 # D30V parallel optimization test
80 # parallel
92 # parallel even though ld2w uses r6 and adds changes it
96 # parallel
100 # parallel
104 # parallel even though st2w uses r5 and adds modifies it
108 # parallel, both use but don't modify r5
112 # parallel even though st2w uses r6 and adds changes it
116 # parallel
120 # parallel
    [all...]
  /external/clang/test/OpenMP/
critical_messages.cpp 23 #pragma omp parallel
35 #pragma omp parallel
46 #pragma omp parallel
86 #pragma omp parallel
98 #pragma omp parallel
109 #pragma omp parallel
for_firstprivate_codegen.cpp 42 #pragma omp parallel
75 #pragma omp parallel
138 #pragma omp parallel
sections_firstprivate_codegen.cpp 41 #pragma omp parallel
75 #pragma omp parallel
135 #pragma omp parallel
declare_reduction_messages.cpp 83 #pragma omp parallel reduction (red : i)
86 #pragma omp parallel reduction (red1 : i)
89 #pragma omp parallel reduction (red2 : i) // expected-error {{incorrect reduction identifier, expected one of '+', '-', '*', '&', '|', '^', '&&', '||', 'min' or 'max' or declare reduction for type 'int'}}
97 #pragma omp parallel reduction (red : i)
100 #pragma omp parallel reduction (red1 : i)
103 #pragma omp parallel reduction (red2 : i) // expected-error {{incorrect reduction identifier, expected one of '+', '-', '*', '&', '|', '^', '&&', '||', 'min' or 'max' or declare reduction for type 'int'}}
114 #pragma omp parallel reduction (::fun : c1)
117 #pragma omp parallel reduction (::Class1<int>::fun : c1)
120 #pragma omp parallel reduction (::Class2<int>::fun : i) // expected-error {{incorrect reduction identifier, expected one of '+', '-', '*', '&', '|', '^', '&&', '||', 'min' or 'max' or declare reduction for type 'int'}}
dump.cpp 39 #pragma omp parallel for default(none) private(a) shared(b) schedule(static, a)
teams_default_messages.cpp 31 #pragma omp parallel default(shared)
  /external/python/cpython3/Lib/distutils/command/
build.py 39 ('parallel=', 'j',
40 "number of parallel build jobs"),
70 self.parallel = None
122 if isinstance(self.parallel, str):
124 self.parallel = int(self.parallel)
126 raise DistutilsOptionError("parallel should be an integer")
  /external/testng/src/test/java/test/dataprovider/
ParallelDataProvider2Test.java 16 @DataProvider(parallel = true)
ParallelDataProviderTest.java 11 * Data providers were not working properly with parallel=true
20 @DataProvider(name = "test1", parallel = true)
  /libcore/jsr166-tests/src/test/java/jsr166/
ThreadLocalRandom8Test.java 73 * A parallel sized stream of ints generates the given number of values
81 r.ints(size).parallel().forEach(x -> counter.increment());
88 * A parallel sized stream of longs generates the given number of values
96 r.longs(size).parallel().forEach(x -> counter.increment());
103 * A parallel sized stream of doubles generates the given number of values
111 r.doubles(size).parallel().forEach(x -> counter.increment());
118 * Each of a parallel sized stream of bounded ints is within bounds
127 r.ints(size, lo, hi).parallel().forEach(
137 * Each of a parallel sized stream of bounded longs is within bounds
146 r.longs(size, lo, hi).parallel().forEach
    [all...]
  /libcore/ojluni/src/main/java/java/util/stream/
BaseStream.java 37 * sequential and parallel aggregate operations. The following example
86 * would execute in parallel. Calling this method after invoking an
89 * @return {@code true} if this stream would execute in parallel if executed
106 * Returns an equivalent stream that is parallel. May return
107 * itself, either because the stream was already parallel, or because
108 * the underlying stream state was modified to be parallel.
113 * @return a parallel stream
115 S parallel(); method in interface:BaseStream
  /libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
FlagDeclaringOp.java 58 public Sink<T> opWrapSink(int flags, boolean parallel, Sink sink) {
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
DoublePrimitiveOpsTests.java 52 double[] array = LongStream.range(1, 10).parallel().asDoubleStream().map(i -> i * 2).toArray();
70 double[] array = Arrays.stream(content).parallel().sorted().toArray();
88 double[] array = Arrays.stream(content).parallel().sorted().sorted().toArray();
102 double[] actual = LongStream.range(1, 100).parallel().asDoubleStream().limit(9).toArray();
  /libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
FlagDeclaringOp.java 61 public Sink<T> opWrapSink(int flags, boolean parallel, Sink sink) {
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic6x/
insns-parallel-multi.s 1 # Test parallel instructions and section switching.
parallel-bad-1.s 1 # Test bad syntax for parallel operations.
  /developers/samples/android/
compileSamples.sh 17 parallel --joblog emit.log --max-procs 8 --retries 5 -a projects.txt ./emitSample.sh
  /external/chromium-trace/catapult/devil/devil/utils/
parallelizer_test.py 28 parallel = parallelizer.Parallelizer variable in class:ParallelizerTestObject
95 ParallelizerTestObject.parallel(devices).doSetTheThing(False).pFinish(1)
100 results = ParallelizerTestObject.parallel(
109 p = ParallelizerTestObject.parallel(devices).doRaiseTheThing()
128 p = ParallelizerTestObject.parallel(devices)
144 p = ParallelizerTestObject.parallel(devices)
154 results = (ParallelizerTestObject.parallel(devices).helper
163 results = ParallelizerTestObject.parallel(devices)[9].pGet(1)

Completed in 1274 milliseconds

<<11121314151617181920>>