Home
last modified time | relevance | path

Searched refs:workers (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/llvm/utils/lit/lit/
H A Drun.py19 def __init__(self, tests, lit_config, workers, progress_callback, argument
23 self.workers = workers
27 assert workers > 0
69 pool = multiprocessing.Pool(self.workers, lit.worker.initialize,
114 desired_limit = self.workers * ncpus * 2 # the 2 is a safety factor
H A Dmain.py218 workers = min(len(tests), opts.workers)
219 display = lit.display.create_display(opts, tests, discovered_tests, workers)
221 run = lit.run.Run(tests, lit_config, workers, display.update,
H A Ddisplay.py4 def create_display(opts, tests, total_tests, workers): argument
11 num_tests, of_total, workers)
/llvm-project-15.0.7/compiler-rt/lib/asan/tests/
H A Dasan_mac_test.cpp175 pthread_t workers[kNumWorkers], forker; in TEST() local
177 PTHREAD_CREATE(&workers[i], 0, MallocIntrospectionLockWorker, 0); in TEST()
181 PTHREAD_JOIN(workers[i], 0); in TEST()
/llvm-project-15.0.7/llvm/docs/
H A DHowToAddABuilder.rst46 the contact listed in a workers attributes - to proxy requests to the relevant
54 Volunteers can provide their build machines to work as build workers to
120 * workers are added to ``buildbot/osuosl/master/config/workers.py``
148 <http://lab.llvm.org/staging/#/workers>`_ to see if administrator
188 terms, we likely going to need multiple workers to build requests in parallel
191 on the order of 5-8 workers. If your build config takes ~2 hours, you'll
192 need something on the order of 20-30 workers. The rest of this section
238 With multiple workers, it is tempting to try to configure a shared cache
239 between the workers. Experience to date indicates this is difficult to
H A DLibFuzzer.rst177 worker processes can be overridden by the ``-workers=N`` option. For example,
178 running with ``-jobs=30`` on a 12-core machine would run 6 workers by default,
203 The plan is to eventually replace ``-jobs=N`` and ``-workers=N`` with ``-fork=N``.
306 ``-workers``
H A DDeveloperPolicy.rst660 executed on different *workers*. Builders and workers are configured and
/llvm-project-15.0.7/compiler-rt/lib/fuzzer/
H A DFuzzerDriver.cpp669 if (Flags.jobs > 0 && Flags.workers == 0) { in FuzzerDriver()
670 Flags.workers = std::min(NumberOfCpuCores() / 2, Flags.jobs); in FuzzerDriver()
671 if (Flags.workers > 1) in FuzzerDriver()
672 Printf("Running %u workers\n", Flags.workers); in FuzzerDriver()
675 if (Flags.workers > 0 && Flags.jobs > 0) in FuzzerDriver()
676 return RunInMultipleProcesses(Args, Flags.workers, Flags.jobs); in FuzzerDriver()
H A DFuzzerFlags.def117 FUZZER_FLAG_UNSIGNED(workers, 0,
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Async/
H A DPasses.td26 Option<"numWorkerThreads", "num-workers",
28 "The number of available workers to execute async operations. If `-1` "
/llvm-project-15.0.7/mlir/test/Dialect/Async/
H A Dasync-parallel-for-num-worker-threads.mlir1 // RUN: mlir-opt %s -split-input-file -async-parallel-for=num-workers=-1 \
/llvm-project-15.0.7/mlir/test/Integration/Dialect/Async/CPU/
H A Dtest-async-parallel-for-1d.mlir35 // RUN: num-workers=20 \
H A Dtest-async-parallel-for-2d.mlir33 // RUN: num-workers=20 \
/llvm-project-15.0.7/llvm/docs/CommandGuide/
H A Dlit.rst59 .. option:: -j N, --workers=N