Home
last modified time | relevance | path

Searched +full:run +full:- +full:parallel (Results 1 – 25 of 1432) sorted by relevance

12345678910>>...58

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/thread/doc/
Dparallel.qbk9 [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 …]
/aosp_15_r20/prebuilts/go/linux-x86/src/testing/
Dtesting_test.go2 // Use of this source code is governed by a BSD-style
32 m.Run()
34 // Note: m.Run currently prints the final "PASS" line, so if any race is
35 // reported here (after m.Run but before the process exits), it will print
49 t.Run("test", func(t *testing.T) {
67 if !b.Run("test", func(b *testing.B) {
80 t.Run("InSubtest", testTempDir)
81 t.Run("test/subtest", testTempDir)
82 t.Run("test\\subtest", testTempDir)
83 t.Run("test:subtest", testTempDir)
[all …]
Dsub_test.go2 // Use of this source code is governed by a BSD-style
20 // Make benchmark tests run 10x faster.
31 typ int // run or done
39 run []call
42 run: []call{
48 run: []call{
57 run: []call{
79 for j, call := range tc.run {
84 done <- true
93 case <-signal:
[all …]
Dtesting.go2 // Use of this source code is governed by a BSD-style
20 // package builds but will be included when the "go test" command is run.
33 // got := Abs(-1)
35 // t.Errorf("Abs(-1) = %d; want 1", got)
52 // got := abs.Abs(-1)
54 // t.Errorf("Abs(-1) = %d; want 1", got)
58 // For more detail, run "go help test" and "go help testflag".
67 // its -bench flag is provided. Benchmarks are run sequentially.
70 // https://golang.org/cmd/go/#hdr-Testing_flags.
80 // The benchmark function must run the target code b.N times.
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/go/
Dgo_test.go2 // Use of this source code is governed by a BSD-style
51 // which breaks many tests here - they can't use non-git, non-hg VCS at all!
58 canRace = false // whether we can run the race detector
59 canMSan = false // whether we can run the memory sanitizer
60 canASan = false // whether we can run the address sanitizer
69 // external network in parallel. If non-nil, it contains one buffer slot per
84 t.Skipf("skipping test in -short mode: %s", reason)
89 // build from this process's current GOROOT, but run from a different
100 // deletes it after the tests have been run.
104 // run the main func exported via export_test.go, and exit.
[all …]
/aosp_15_r20/external/rappor/
H A Dregtest.sh4 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 …]
/aosp_15_r20/external/mesa3d/src/amd/ci/
H A Dgitlab-ci.yml2 - local: 'src/amd/ci/gitlab-ci-inc.yml'
4 # Run five jobs in parallel each running 1/55th of the test suite
5 radv-stoney-vkcts:x86_64:
7 - .lava-test-deqp:x86_64
8 - .radv-stoney-test:x86_64
9 parallel: 5
13 radv-stoney-angle:
15 - .lava-test-deqp:x86_64
16 - .radv-stoney-test:x86_64
18 DEQP_SUITE: radv-stoney-angle
[all …]
/aosp_15_r20/libcore/ojluni/src/main/java/java/util/
H A DDualPivotQuicksort.java19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
33 * sequential and parallel, of the Dual-Pivot Quicksort algorithm by
36 * faster than traditional (one-pivot) Quicksort implementations.
38 * There are also additional algorithms, invoked from the Dual-Pivot
40 * sort, counting sort and parallel merge sort.
69 * Min array size to perform sorting in parallel.
79 * Min size of the first run to continue with scanning.
94 * Min number of runs, required by parallel merging.
99 * Min array size to use parallel merging of parts.
124 * Calculates the double depth of parallel merging.
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/18/libcore/ojluni/src/main/java/java/util/
DDualPivotQuicksort.java19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
33 * sequential and parallel, of the Dual-Pivot Quicksort algorithm by
36 * faster than traditional (one-pivot) Quicksort implementations.
38 * There are also additional algorithms, invoked from the Dual-Pivot
40 * sort, counting sort and parallel merge sort.
69 * Min array size to perform sorting in parallel.
79 * Min size of the first run to continue with scanning.
94 * Min number of runs, required by parallel merging.
99 * Min array size to use parallel merging of parts.
124 * Calculates the double depth of parallel merging.
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/util/
DDualPivotQuicksort.java19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
33 * sequential and parallel, of the Dual-Pivot Quicksort algorithm by
36 * faster than traditional (one-pivot) Quicksort implementations.
38 * There are also additional algorithms, invoked from the Dual-Pivot
40 * sort, counting sort and parallel merge sort.
69 * Min array size to perform sorting in parallel.
79 * Min size of the first run to continue with scanning.
94 * Min number of runs, required by parallel merging.
99 * Min array size to use parallel merging of parts.
124 * Calculates the double depth of parallel merging.
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/os/exec/
Dexec_test.go2 // Use of this source code is governed by a BSD-style
5 // Use an external test to avoid os/exec -> net/http -> crypto/x509 -> os/exec
6 // circular dependency on non-cgo darwin.
71 // (and thus cannot run as an ordinary Test function, since the testing
72 // package monkey-patches those variables before running tests).
89 …// Per https://learn.microsoft.com/en-us/windows/win32/api/processenv/nf-processenv-needcurrentdir…
95 code := m.Run()
96 …if code == 0 && flag.Lookup("test.run").Value.String() == "" && flag.Lookup("test.list").Value.Str…
106 // Run a couple of GC cycles to increase the odds of detecting
133 // If all tests are run and pass, all registered commands must be used.
[all …]
/aosp_15_r20/external/testng/src/test/java/test/thread/
H A DParallelSuiteTest.java19 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 …]
/aosp_15_r20/tools/asuite/atest/integration_tests/
H A Dsplit_build_test_script.py9 # http://www.apache.org/licenses/LICENSE-2.0
77 def get_device_serial_args_or_empty(self) -> str:
79 # TODO: b/336839543 - Remove this method when we deprecate the support to
80 # run the integration test directly through 'python **.py' command.
82 return ' -s ' + self._config.device_serial
89 # select in local run.
92 def get_device_serial(self) -> str:
102 def get_repo_root(self) -> str:
106 def get_obj(self, name: str) -> Any:
110 def get_config(self) -> IntegrationTestConfiguration:
[all …]
/aosp_15_r20/external/autotest/utils/frozen_chromite/lib/
H A Dparallel.py1 # -*- 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 …]
/aosp_15_r20/external/testng/src/main/resources/
H A Dtestng-1.0.dtd1 <!--
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 …]
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/go/testdata/script/
Dtest_fuzz_parallel.txt5 # When running seed inputs, T.Parallel should let multiple inputs run in
6 # parallel.
7 go test -run=FuzzSeed
9 # When fuzzing, T.Parallel should be safe to call, but it should have no effect.
12 # TODO(jayconrod): check for the string "after T.Parallel". It's not printed
14 ! go test -run=FuzzMutate -fuzz=FuzzMutate
18 # Run the test without fuzzing, setting -parallel to different values to make
20 ! go test -run=FuzzMutate -parallel=1
21 ! go test -run=FuzzMutate -parallel=2
22 ! go test -run=FuzzMutate -parallel=4
[all …]
/aosp_15_r20/external/testng/
H A DCHANGES.txt2 Fixed: GITHUB-841: testName from @Test is now used and available from ITestResult#getName() and ITe…
3 New: GITHUB-776: Add BeforeClass/AfterClass like on ITestListener (@vguna & Julien Herr)
4 Fixed: GITHUB-872: Enable end-users of TestNG to alter XmlSuite and XmlTest (Krishnan Mahadevan)
5 New: GITHUB-900: Support @Listeners in annotation transformer (Julien Herr)
6 New: GITHUB-898: Activate XML validation when possible (Julien Herr)
7 Fixed: GITHUB-889: XmlSuite in nested directories results in FIleNotFoundException (Virender Singh)
8 Fixed: GITHUB-811: Timeout is not working with parallel=tests (@michael-yxf & Julien Herr)
9 Fixed: GITHUB-839: Missing encoding meta data for report file (@banbq & Julien Herr)
10 Fixed: GITHUB-876: NullPointerException creating tests with parameters by a factory (@vixgeo & Juli…
11 New: GITHUB-886: Add some checks on factory methods (Julien Herr)
[all …]
/aosp_15_r20/external/curl/tests/http/
H A Dtest_02_download.py2 # -*- coding: utf-8 -*-
23 # SPDX-License-Identifier: curl
54 env.make_data_file(indir=indir, fname="data-10k", fsize=10*1024)
55 env.make_data_file(indir=indir, fname="data-100k", fsize=100*1024)
56 env.make_data_file(indir=indir, fname="data-1m", fsize=1024*1024)
57 env.make_data_file(indir=indir, fname="data-10m", fsize=10*1024*1024)
58 env.make_data_file(indir=indir, fname="data-50m", fsize=50*1024*1024)
76 url = f'https://{env.authority_for(env.domain1, proto)}/data.json?[0-1]'
88 urln = f'https://{env.authority_for(env.domain1, proto)}/data.json?[0-{count-1}]'
92 # download 100 files parallel
[all …]
/aosp_15_r20/frameworks/base/services/core/java/com/android/server/wm/
H A DBLASTSyncEngine.java8 * http://www.apache.org/licenses/LICENSE-2.0
60 * This works primarily by setting-up state and then watching/waiting for the registered subtrees
62 * checks the subtrees during surface-placement.
65 * active). However, a sync can be explicitly started in "parallel". This does not guarantee that
66 * it will run in parallel; however, it will run in parallel as long as it's watched hierarchy
69 * Currently, a sync that is started as "parallel" implicitly ignores the subtree below it's
71 * activity). This allows "stratified" parallelism where, eg, a sync that is only at Task-level
72 * can run in parallel with another sync that includes only the task's activities.
74 * If, at any time, a container is added to a parallel sync that *is* watched by another sync, it
76 * finish if it has no active dependencies. At this point it is effectively not parallel anymore.
[all …]
/aosp_15_r20/external/testng/src/main/java/
H A Dtestng-1.0.dtd.html1 <!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">&lt;!--
26 of this test run
35 must belong to in order to be run during this test
42 --&gt;</span>
45 <span class="xml-comment">&lt;!-- A suite is the top-level element of a testng.xml file …
47 &lt;!ELEMENT suite (listeners|packages|test|parameter|method-selectors|suite-files)* &gt;
49 <span class="xml-comment">&lt;!-- Attributes: --&gt;</span>
50 <span class="xml-comment">&lt;!--
52 @attr junit Whether to run in JUnit mode.
[all …]
/aosp_15_r20/external/pytorch/torch/distributed/
H A DCONTRIBUTING.md20 This is the place to look if you are trying to find low-level communication APIs, process group cre…
22 - API layer: [torch/distributed/distributed_c10d.py](https://github.com/pytorch/pytorch/blob/main/t…
23 - Python Bindings: [torch/csrc/distributed/c10d/init.cpp](https://github.com/pytorch/pytorch/blob/m…
24 - Implementations: [torch/csrc/distributed/c10d/ProcessGroupNCCL.cpp](https://github.com/pytorch/py…
28 - API layer: ([torch/distributed/_tensor/api.py](https://github.com/pytorch/pytorch/blob/main/torch…
29 - Implementation: see other files in the same folder
31 #### Distributed Data Parallel (DDP)
33 - API layer: [torch/nn/parallel/distributed.py](https://github.com/pytorch/pytorch/blob/main/torch/…
34 - Reducer (backend that schedules allreduces): [torch/csrc/distributed/c10d/reducer.cpp](https://gi…
35 - Mixed Precision Hooks: [torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py](https://git…
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/polly/CodeGen/
DIslAst.h1 //===- IslAst.h - Interface to the isl code generator -----------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
19 //===----------------------------------------------------------------------===//
47 /// Get the run-time conditions for the Scop.
50 /// Build run-time condition for scop.
55 /// @returns An ast expression that describes the necessary run-time check.
78 /// Does the dependence analysis determine that there are no loop-carried
85 /// Flag to mark innermost parallel loops.
88 /// Flag to mark outermost parallel loops.
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/polly/CodeGen/
DIslAst.h1 //===- IslAst.h - Interface to the isl code generator -----------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
19 //===----------------------------------------------------------------------===//
47 /// Get the run-time conditions for the Scop.
50 /// Build run-time condition for scop.
55 /// @returns An ast expression that describes the necessary run-time check.
78 /// Does the dependence analysis determine that there are no loop-carried
85 /// Flag to mark innermost parallel loops.
88 /// Flag to mark outermost parallel loops.
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/polly/CodeGen/
DIslAst.h1 //===- IslAst.h - Interface to the isl code generator -----------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
19 //===----------------------------------------------------------------------===//
47 /// Get the run-time conditions for the Scop.
50 /// Build run-time condition for scop.
55 /// @returns An ast expression that describes the necessary run-time check.
78 /// Does the dependence analysis determine that there are no loop-carried
85 /// Flag to mark innermost parallel loops.
88 /// Flag to mark outermost parallel loops.
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/polly/CodeGen/
DIslAst.h1 //===- IslAst.h - Interface to the isl code generator -----------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
19 //===----------------------------------------------------------------------===//
47 /// Get the run-time conditions for the Scop.
50 /// Build run-time condition for scop.
55 /// @returns An ast expression that describes the necessary run-time check.
78 /// Does the dependence analysis determine that there are no loop-carried
85 /// Flag to mark innermost parallel loops.
88 /// Flag to mark outermost parallel loops.
[all …]

12345678910>>...58