| /external/sdv/vsomeip/third_party/boost/thread/doc/ |
| D | parallel.qbk | 9 [section:parallel Parallel - Fork-Join -- EXPERIMENTAL] 11 [section:fork_join Fork-Join] 15 …se features are based on the [@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n4088.pdf [… 20 …esn't implement the parallel algorithms as defined in [@http://www.open-std.org/jtc1/sc22/wg21/doc… 28 with member functions `run` and `wait` that together enable developers to write expressive and port… 29 parallel code. 31 …-std.org/jtc1/sc22/wg21/docs/papers/2014/n4105.pdf [*N4105]] augments the STL algorithms with the … 33 The `task_region`, `run` and the `wait` functions provided by this library are based on the `task_g… 41 Consider an example of a parallel traversal of a tree, where a user-provided function compute is ap… 48 if (n->left) [all …]
|
| /external/testng/src/test/java/test/thread/ |
| D | ParallelSuiteTest.java | 19 getPathToResource("suite-parallel-1.xml"), in suitesShouldRunInParallel1() 20 getPathToResource("suite-parallel-2.xml"))); in suitesShouldRunInParallel1() 26 getPathToResource("suite-parallel-0.xml"))); in suitesShouldRunInParallel2() 35 tng.setTestSuites(Arrays.asList(getPathToResource("suite-parallel-0.xml"))); in suitesShouldRunInParallel3() 39 tng.run(); //Shouldn't not deadlock in suitesShouldRunInParallel3() 55 tng.run(); in runTest() 66 getPathToResource("parallel-suites/suite-parallel-1.xml"), in suitesShouldRunInParallel4() 67 getPathToResource("parallel-suites/suite-parallel-2.xml"), in suitesShouldRunInParallel4() 68 getPathToResource("parallel-suites/suite-parallel-2-1.xml"), in suitesShouldRunInParallel4() 69 getPathToResource("parallel-suites/suite-parallel-2-2.xml"))); in suitesShouldRunInParallel4() [all …]
|
| /external/rappor/ |
| D | regtest.sh | 4 Run end-to-end tests in parallel. 11 run [<pattern> [<lang>]] - run tests matching <pattern> in 12 parallel. The language 14 run-seq [<pattern> [<lang>]] - ditto, except that tests are run 16 run-all - run all tests, in parallel 19 $ ./regtest.sh run-seq unif-small-typical # Run, the unif-small-typical test 20 $ ./regtest.sh run-seq unif-small- # Sequential, the tests containing: 21 # 'unif-small-' 22 $ ./regtest.sh run unif- # Parallel run, matches multiple cases 23 $ ./regtest.sh run-all # Run all tests [all …]
|
| /external/testng/src/main/resources/ |
| D | testng-1.0.dtd | 1 <!-- 14 of this test run 22 must belong to in order to be run during this test 29 --> 32 <!-- A suite is the top-level element of a testng.xml file --> 33 <!ELEMENT suite (groups?,(listeners|packages|test|parameter|method-selectors|suite-files)*) > 35 <!-- Attributes: --> 36 <!-- 38 @attr junit Whether to run in JUnit mode. 41 @attr parallel Whether TestNG should use different threads [all …]
|
| /external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
| D | parallel_task_assignment.h | 7 http://www.apache.org/licenses/LICENSE-2.0 28 // Simple interface for different parallel cost model implementations. 35 // ParallelTaskAssignment computes parallel task counts for HLOs in 'module'. 38 // 'max_parallelism': the maximum parallel task count per instruction. 39 // 'shape_size': shape size function used by HloCostAnalysis during parallel 48 // Computes and returns the target parallel task count for 'instruction'. 56 // ParallelTaskAssigner computes target parallel task counts for all HLOs 57 // in the module, then assigns parallel task counts to HLOs in the entry 60 // Each HLO which is assigned parallel task counts is outlined into its 61 // own embedded computation, which is compiled as a parallel compute function, [all …]
|
| /external/clang/test/OpenMP/ |
| D | target_parallel_messages.cpp | 1 // RUN: %clang_cc1 -verify -fopenmp -std=c++11 -o - %s 2 // RUN: not %clang_cc1 -fopenmp -std=c++11 -fopenmp-targets=aaa-bbb-ccc-ddd -o - %s 2>&1 | FileChec… 3 // CHECK: error: OpenMP target is invalid: 'aaa-bbb-ccc-ddd' 11 #pragma omp target parallel // expected-error {{unexpected OpenMP directive '#pragma omp target par… 14 …#pragma omp target parallel { // expected-warning {{extra tokens at the end of '#pragma omp target… in main() 16 …#pragma omp target parallel ( // expected-warning {{extra tokens at the end of '#pragma omp target… in main() 18 …#pragma omp target parallel [ // expected-warning {{extra tokens at the end of '#pragma omp target… in main() 20 …#pragma omp target parallel ] // expected-warning {{extra tokens at the end of '#pragma omp target… in main() 22 …#pragma omp target parallel ) // expected-warning {{extra tokens at the end of '#pragma omp target… in main() 24 …#pragma omp target parallel } // expected-warning {{extra tokens at the end of '#pragma omp target… in main() [all …]
|
| D | single_ast_print.cpp | 1 // RUN: %clang_cc1 -verify -fopenmp -ast-print %s | FileCheck %s 2 // RUN: %clang_cc1 -fopenmp -x c++ -std=c++11 -emit-pch -o %t %s 3 // RUN: %clang_cc1 -fopenmp -std=c++11 -include-pch %t -fsyntax-only -verify %s -ast-print | FileCh… 4 // expected-no-diagnostics 16 #pragma omp parallel firstprivate(a, b, c) in SS() 17 #pragma omp single copyprivate(a, this->b, (this)->c) in SS() 18 // CHECK: #pragma omp parallel firstprivate(this->a,this->b,this->c) in SS() 19 // CHECK-NEXT: #pragma omp single copyprivate(this->a,this->b,this->c) in SS() 20 ++this->a, --b, (this)->c /= 1; in SS() 28 // CHECK: #pragma omp parallel firstprivate(this->a) in SST() [all …]
|
| D | parallel_sections_ast_print.cpp | 1 // RUN: %clang_cc1 -verify -fopenmp -ast-print %s | FileCheck %s 2 // RUN: %clang_cc1 -fopenmp -x c++ -std=c++11 -emit-pch -o %t %s 3 // RUN: %clang_cc1 -fopenmp -std=c++11 -include-pch %t -fsyntax-only -verify %s -ast-print | FileCh… 4 // expected-no-diagnostics 20 // CHECK-NEXT: #pragma omp threadprivate(S<int>::TS) 21 // CHECK-NEXT: } 24 // CHECK-NEXT: #pragma omp threadprivate(S<long>::TS) 25 // CHECK-NEXT: } 28 // CHECK-NEXT: #pragma omp threadprivate(S::TS) 36 #pragma omp parallel sections in tmain() [all …]
|
| D | parallel_for_ast_print.cpp | 1 // RUN: %clang_cc1 -verify -fopenmp -ast-print %s | FileCheck %s 2 // RUN: %clang_cc1 -fopenmp -x c++ -std=c++11 -emit-pch -o %t %s 3 // RUN: %clang_cc1 -fopenmp -std=c++11 -include-pch %t -fsyntax-only -verify %s -ast-print | FileCh… 4 // expected-no-diagnostics 26 #pragma omp parallel for private(a) private(this->a) private(T::a) in S7() 28 ++this->a.a; in S7() 31 #pragma omp parallel for private(a) private(this->a) in operator =() 38 // CHECK: #pragma omp parallel for private(this->a) private(this->a) private(this->S::a) 39 // CHECK: #pragma omp parallel for private(this->a) private(this->a) private(T::a) 40 // CHECK: #pragma omp parallel for private(this->a) private(this->a) [all …]
|
| D | parallel_for_simd_ast_print.cpp | 1 // RUN: %clang_cc1 -verify -fopenmp -ast-print %s | FileCheck %s 2 // RUN: %clang_cc1 -fopenmp -x c++ -std=c++11 -emit-pch -o %t %s 3 // RUN: %clang_cc1 -fopenmp -std=c++11 -include-pch %t -fsyntax-only -verify %s -ast-print | FileCh… 4 // expected-no-diagnostics 26 #pragma omp parallel for simd private(a) private(this->a) private(T::a) in S7() 28 ++this->a.a; in S7() 31 #pragma omp parallel for simd private(a) private(this->a) in operator =() 38 // CHECK: #pragma omp parallel for simd private(this->a) private(this->a) private(this->S1::a) 39 // CHECK: #pragma omp parallel for simd private(this->a) private(this->a) private(T::a) 40 // CHECK: #pragma omp parallel for simd private(this->a) private(this->a) [all …]
|
| D | distribute_parallel_for_ast_print.cpp | 1 // RUN: %clang_cc1 -verify -fopenmp -ast-print %s | FileCheck %s 2 // RUN: %clang_cc1 -fopenmp -x c++ -std=c++11 -emit-pch -o %t %s 3 // RUN: %clang_cc1 -fopenmp -std=c++11 -include-pch %t -fsyntax-only -verify %s -ast-print | FileCh… 4 // expected-no-diagnostics 26 #pragma omp distribute parallel for private(a) private(this->a) private(T::a) in S7() 28 ++this->a.a; in S7() 33 #pragma omp distribute parallel for private(a) private(this->a) in operator =() 40 // CHECK: #pragma omp distribute parallel for private(this->a) private(this->a) private(this->S::a) 41 // CHECK: #pragma omp distribute parallel for private(this->a) private(this->a) private(T::a) 42 // CHECK: #pragma omp distribute parallel for private(this->a) private(this->a) [all …]
|
| D | target_parallel_ast_print.cpp | 1 // RUN: %clang_cc1 -verify -fopenmp -ast-print %s | FileCheck %s 2 // RUN: %clang_cc1 -fopenmp -x c++ -std=c++11 -emit-pch -o %t %s 3 // RUN: %clang_cc1 -fopenmp -std=c++11 -include-pch %t -fsyntax-only -verify %s -ast-print | FileCh… 4 // expected-no-diagnostics 20 // CHECK-NEXT: #pragma omp threadprivate(S<int>::TS) 21 // CHECK-NEXT: } 24 // CHECK-NEXT: #pragma omp threadprivate(S<char>::TS) 25 // CHECK-NEXT: } 28 // CHECK-NEXT: #pragma omp threadprivate(S::TS) 38 #pragma omp target parallel in tmain() [all …]
|
| D | distribute_parallel_for_simd_ast_print.cpp | 1 // RUN: %clang_cc1 -verify -fopenmp -ast-print %s | FileCheck %s 2 // RUN: %clang_cc1 -fopenmp -x c++ -std=c++11 -emit-pch -o %t %s 3 // RUN: %clang_cc1 -fopenmp -std=c++11 -include-pch %t -fsyntax-only -verify %s -ast-print | FileCh… 4 // expected-no-diagnostics 26 #pragma omp distribute parallel for simd private(a) private(this->a) private(T::a) in S7() 28 ++this->a.a; in S7() 33 #pragma omp distribute parallel for simd private(a) private(this->a) in operator =() 40 // CHECK: #pragma omp distribute parallel for simd private(this->a) private(this->a) private(this->… 41 // CHECK: #pragma omp distribute parallel for simd private(this->a) private(this->a) private(T::a) 42 // CHECK: #pragma omp distribute parallel for simd private(this->a) private(this->a) [all …]
|
| D | parallel_for_simd_safelen_messages.cpp | 1 // RUN: %clang_cc1 -verify -fopenmp %s 2 // RUN: %clang_cc1 -verify -fopenmp -std=c++98 %s 3 // RUN: %clang_cc1 -verify -fopenmp -std=c++11 %s 9 // expected-note@+2 4 {{declared here}} 15 struct S1; // expected-note {{declared here}} 17 template <class T, typename S, int N, int ST> // expected-note {{declared here}} 18 T tmain(T argc, S **argv) { //expected-note 2 {{declared here}} in tmain() 19 #pragma omp parallel for simd safelen // expected-error {{expected '(' after 'safelen'}} in tmain() 20 for (int i = ST; i < N; i++) argv[0][i] = argv[0][i] - argv[0][i-ST]; in tmain() 21 …#pragma omp parallel for simd safelen ( // expected-error {{expected expression}} expected-error {… in tmain() [all …]
|
| D | target_parallel_for_simd_safelen_messages.cpp | 1 // RUN: %clang_cc1 -verify -fopenmp %s 2 // RUN: %clang_cc1 -verify -fopenmp -std=c++98 %s 3 // RUN: %clang_cc1 -verify -fopenmp -std=c++11 %s 9 // expected-note@+2 4 {{declared here}} 15 struct S1; // expected-note {{declared here}} 17 template <class T, typename S, int N, int ST> // expected-note {{declared here}} 18 T tmain(T argc, S **argv) { //expected-note 2 {{declared here}} in tmain() 19 #pragma omp target parallel for simd safelen // expected-error {{expected '(' after 'safelen'}} in tmain() 20 for (int i = ST; i < N; i++) argv[0][i] = argv[0][i] - argv[0][i-ST]; in tmain() 21 …#pragma omp target parallel for simd safelen ( // expected-error {{expected expression}} expected-… in tmain() [all …]
|
| D | parallel_for_simd_simdlen_messages.cpp | 1 // RUN: %clang_cc1 -verify -fopenmp %s 2 // RUN: %clang_cc1 -verify -fopenmp -std=c++98 %s 3 // RUN: %clang_cc1 -verify -fopenmp -std=c++11 %s 9 // expected-note@+2 4 {{declared here}} 15 struct S1; // expected-note {{declared here}} 17 template <class T, typename S, int N, int ST> // expected-note {{declared here}} 18 T tmain(T argc, S **argv) { //expected-note 2 {{declared here}} in tmain() 19 #pragma omp parallel for simd simdlen // expected-error {{expected '(' after 'simdlen'}} in tmain() 20 for (int i = ST; i < N; i++) argv[0][i] = argv[0][i] - argv[0][i-ST]; in tmain() 21 …#pragma omp parallel for simd simdlen ( // expected-error {{expected expression}} expected-error {… in tmain() [all …]
|
| /external/rust/crates/rayon/ |
| D | README.md | 5  6 [](https://github.com/… 7 …/rayon-rs/Lobby](https://badges.gitter.im/rayon-rs/Lobby.svg)](https://gitter.im/rayon-rs/Lobby?ut… 9 Rayon is a data-parallelism library for Rust. It is extremely 11 a parallel one. It also guarantees data-race freedom. (You may also 18 [blog]: https://smallcultfollowing.com/babysteps/blog/2015/12/18/rayon-data-parallelism-in-rust/ 21 ## Parallel iterators and more 23 Rayon makes it drop-dead simple to convert sequential iterators into 24 parallel ones: usually, you just change your `foo.iter()` call into 29 fn sum_of_squares(input: &[i32]) -> i32 { [all …]
|
| /external/autotest/client/site_tests/hardware_MemoryThroughput/ |
| D | hardware_MemoryThroughput.py | 3 # Use of this source code is governed by a BSD-style license that can be 24 def _run_benchmarks(self, test, warmup, num_iterations, parallel, sizes): argument 25 """Run the benchmark. 31 num_iterations: integer number of times to run the benchmark on each 33 parallel: integer number of instances to run in parallel 34 sizes: list of integer sizes in bytes to run 39 cmd = 'bw_mem -P %d -W %d -N %d %d %s 2>&1' % (parallel, warmup, 55 key = ('MB_per_second_' + test + '-' + 56 str(parallel) + '-thread-' + 73 parallel=1, sizes= [ 4096, 192 * 1024, 32 * 1024 * 1024 ]): argument [all …]
|
| /external/mesa3d/src/freedreno/ci/ |
| D | gitlab-ci.yml | 2 - local: 'src/freedreno/ci/gitlab-ci-inc.yml' 6 - .baremetal-deqp-test 7 - .a306-test 9 DEQP_SUITE: freedreno-a307 11 parallel: 5 15 - .a306_piglit 20 a306-traces: 22 - .google-freedreno-test-traces 23 - .a306-test 25 PIGLIT_REPLAY_DEVICE_NAME: "freedreno-a306" [all …]
|
| /external/OpenCL-CLHPP/.github/workflows/ |
| D | macos.yml | 6 …{{ github.workspace }}/external/OpenCL-Headers/install/share/pkgconfig:${{ github.workspace }}/ext… 9 macos-gcc: 10 #runs-on: macos-latest 11 runs-on: macos-11 # temporary, macos-latest only supports gcc-12 16 GEN: [Xcode, Ninja Multi-Config] 20 - name: Checkout OpenCL-CLHPP 25 - name: Checkout OpenCL-Headers 28 repository: KhronosGroup/OpenCL-Headers 29 path: external/OpenCL-Headers 31 - name: Checkout OpenCL-ICD-Loader [all …]
|
| /external/testng/src/main/java/ |
| D | testng-1.0.dtd.html | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-st… 10 <pre class="code"><span class="xml-comment"><!-- 26 of this test run 35 must belong to in order to be run during this test 42 --></span> 45 <span class="xml-comment"><!-- A suite is the top-level element of a testng.xml file … 47 <!ELEMENT suite (listeners|packages|test|parameter|method-selectors|suite-files)* > 49 <span class="xml-comment"><!-- Attributes: --></span> 50 <span class="xml-comment"><!-- 52 @attr junit Whether to run in JUnit mode. [all …]
|
| /external/pigweed/pw_build/py/pw_build/ |
| D | project_builder_argparse.py | 7 # https://www.apache.org/licenses/LICENSE-2.0 22 ) -> argparse.ArgumentParser: 28 '-C', 29 '--build-directory', 37 "build. `pw watch -C out target1 target2` is equivalent to 'ninja " 38 "-C out taret1 target2'. The 'out' directory will be used if no " 50 "'out' then, 'ninja -C out taret1 target2' will be run. To " 52 "``-C / --build-directory`` option." 57 '--build-system-command', 67 '--run-command', [all …]
|
| /external/autotest/utils/frozen_chromite/lib/ |
| D | parallel.py | 1 # -*- coding: utf-8 -*- 3 # Use of this source code is governed by a BSD-style license that can be 43 resulting in temporary directories (pymp-xxx) not being cleaned 86 # many top-level paths in /tmp (see crbug.com/945523). 88 # calls parallel first, and some other user calls it later. 89 tmp_dir = '/tmp/chromite.parallel.%d' % os.geteuid() 97 # when the enclosing with-statement exits. 125 """Run a task in the background. 127 This task may be the 'Run' function from a buildbot stage or just a plain 128 function. It will be run in the background. Output from this task is saved [all …]
|
| /external/vogar/src/vogar/target/testng/ |
| D | TestNgTargetRunner.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 55 public boolean run() { in run() method in TestNgTargetRunner 59 // This transformer handles test timeout and overrides it if vogar was run in run() 60 // with specific timeout parameter (see --timeout option). in run() 63 // Disable parallel execution of tests using @DataProvider's. in run() 64 // If parallel execution is enabled with @DataProvider(..., parallel = true) then it in run() 66 // control messages in specific order. It expects "{outcome: ...}" json-object in run() 67 // followed by another "{result: ...}" json-object for each test run; whereas with parallel in run() 70 // The easiest way of preventing this behavior would be to disable parallel execution in run() 84 testng.run(); in run()
|
| /external/tensorflow/tensorflow/compiler/xla/mlir_hlo/tests/ |
| D | tile_loops.mlir | 1 // RUN: mlir-hlo-opt --tile-loops="tile-sizes=2 unroll-factors=4" %s | \ 2 // RUN: FileCheck %s 4 // CHECK-LABEL: func @parallel_loop 10 scf.parallel (%arg2) = (%c0) to (%c16) step (%c1) { 11 // CHECK-DAG: %[[C8:.*]] = arith.constant 8 12 // CHECK-DAG: %[[C4:.*]] = arith.constant 4 13 // CHECK: scf.parallel {{.*}} step (%[[C8]]) 14 // CHECK: scf.parallel {{.*}} to (%[[C8]]) step (%[[C4]]) 15 // CHECK: scf.parallel {{.*}} to (%[[C4]]) 23 "lmhlo.terminator"() : () -> () [all …]
|