/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 | 40 def factory(tool, jobs=None): argument 42 t = Lcov(jobs) 201 def __init__(self, jobs=None): argument 207 self.jobs = jobs 259 if self.jobs is None: 262 elif self.jobs == 1: 266 parallel = ["--parallel", str(self.jobs)] 542 coverage_tool = CoverageTool.factory(options.coverage_tool, jobs=options.jobs)
|
D | runner.py | 1831 self.jobs = 1 1849 if self.options.jobs: 1850 self.jobs = self.options.jobs 1852 self.jobs = multiprocessing.cpu_count() * 2 1854 self.jobs = multiprocessing.cpu_count() 1858 self.jobserver = GNUMakeJobClient.from_environ(jobs=self.options.jobs) 1860 self.jobserver = GNUMakeJobServer(self.jobs) 1861 elif self.jobserver.jobs: 1862 self.jobs = self.jobserver.jobs 2037 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 | 2506 def mock_client_from_environ(jobs): argument 2508 jobclient_mock = mock.Mock(jobs=32) 2521 tr.options.jobs = None 2830 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/scripts/west_commands/ |
D | zcmake.py | 100 if build_opts.jobs: 101 cmake_env["CMAKE_BUILD_PARALLEL_LEVEL"] = build_opts.jobs
|
/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
|
/Zephyr-latest/doc/build/sysbuild/ |
D | index.rst | 151 To set number of jobs for ninja for all sysbuild images, set the CMAKE_BUILD_PARALLEL_LEVEL
|