Searched refs:jobs (Results 1 – 13 of 13) sorted by relevance
/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | jobserver.py | 76 def __init__(self, inheritable_pipe, jobs, internal_jobs=0, makeflags=None): argument 79 self.jobs = jobs 109 def from_environ(cls, env=None, jobs=0): argument 141 if jobs: 174 if not jobs: 177 jobs = int(match.group(1)) 178 if jobs == 1: 183 return cls(pipe, jobs, internal_jobs=1, makeflags=makeflags) 209 if self.jobs: 211 if self.jobs != 1 and self._inheritable_pipe is not None: [all …]
|
D | coverage.py | 36 def factory(tool, jobs=None): argument 38 t = Lcov(jobs) 188 def __init__(self, jobs=None): argument 194 self.jobs = jobs 246 if self.jobs is None: 249 elif self.jobs == 1: 253 parallel = ["--parallel", str(self.jobs)] 444 coverage_tool = CoverageTool.factory(options.coverage_tool, jobs=options.jobs)
|
D | runner.py | 1770 self.jobs = 1 1788 if self.options.jobs: 1789 self.jobs = self.options.jobs 1791 self.jobs = multiprocessing.cpu_count() * 2 1793 self.jobs = multiprocessing.cpu_count() 1797 self.jobserver = GNUMakeJobClient.from_environ(jobs=self.options.jobs) 1799 self.jobserver = GNUMakeJobServer(self.jobs) 1800 elif self.jobserver.jobs: 1801 self.jobs = self.jobserver.jobs 1976 for _ in range(self.jobs):
|
/Zephyr-latest/scripts/tests/twister/ |
D | test_jobserver.py | 121 jobs = mock.Mock() 126 jobs, 131 assert gmjc.jobs == jobs 232 jobs, argument 261 gmjc = GNUMakeJobClient.from_environ(env=env, jobs=jobs) 315 jobs = mock.Mock() 319 jobs 357 jobs, argument 369 gmjc.jobs = jobs 395 def test_gnumakejobclient_pass_fds(jobs, use_inheritable_pipe, expected_fds): argument [all …]
|
D | test_runner.py | 2497 def mock_client_from_environ(jobs): argument 2499 jobclient_mock = mock.Mock(jobs=32) 2512 tr.options.jobs = None 2821 tr.jobs = 5
|
/Zephyr-latest/scripts/tests/twister_blackbox/ |
D | test_tooling.py | 40 def test_jobs(self, out_path, jobs): argument 44 ['--jobs', jobs] + \
|
/Zephyr-latest/samples/modules/tflite-micro/tflm_ethosu/src/ |
D | main.cpp | 172 xInferenceJob jobs[NUM_JOBS_PER_TASK]; in inferenceSenderTask() local 174 auto &job = jobs[n]; in inferenceSenderTask()
|
/Zephyr-latest/cmake/sca/codechecker/ |
D | sca.cmake | 41 set(CODECHECKER_ANALYZE_JOBS "--jobs;${CODECHECKER_ANALYZE_JOBS}") 43 set(CODECHECKER_ANALYZE_JOBS "--jobs;1")
|
/Zephyr-latest/subsys/sip_svc/ |
D | Kconfig | 58 int "Delay used for polling asynchronous jobs in micro-seconds"
|
/Zephyr-latest/modules/trusted-firmware-m/ |
D | CMakeLists.txt | 287 # Set number of parallel jobs for TF-M build to 1. 289 # multiple parallel jobs then `permission denied` may occur. Root cause on 292 # number of parallel jobs to 1.
|
/Zephyr-latest/scripts/ci/ |
D | pylintrc | 17 jobs=0
|
/Zephyr-latest/doc/develop/tools/ |
D | coccinelle.rst | 139 the parallelism, set the ``--jobs=<number>`` option. For example, to run 144 ./scripts/coccicheck --mode=report --jobs=4
|
/Zephyr-latest/doc/develop/test/ |
D | pytest.rst | 309 of tests is made by Twister, and it is responsible for managing available sources (jobs and
|