/Zephyr-Core-3.7.0/scripts/tests/twister/ |
D | test_jobserver.py | 121 jobs = mock.Mock() 126 jobs, 131 assert gmjc.jobs == jobs 222 'env, jobs, fcntl_ok_per_pipe, expected_logs,' \ 225 ids=['env, no jobserver-auth', 'env, jobs, dry run', 'env, no jobs', 226 'env, no jobs, oserror', 'env, no jobs, wrong read pipe', 227 'env, no jobs, wrong write pipe', 'environ, no makeflags'] 232 jobs, argument 261 gmjc = GNUMakeJobClient.from_environ(env=env, jobs=jobs) 315 jobs = mock.Mock() [all …]
|
/Zephyr-Core-3.7.0/scripts/pylib/twister/twisterlib/ |
D | jobserver.py | 78 def __init__(self, inheritable_pipe, jobs, internal_jobs=0, makeflags=None): argument 81 self.jobs = jobs 111 def from_environ(cls, env=None, jobs=0): argument 129 jobs: The number of jobs set by the user on the command line. 143 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: [all …]
|
D | coverage.py | 35 def factory(tool, jobs=None): argument 37 t = Lcov(jobs) 174 def __init__(self, jobs=None): argument 180 self.jobs = jobs 230 if self.jobs is None: 233 elif self.jobs == 1: 237 parallel = ["--parallel", str(self.jobs)] 419 coverage_tool = CoverageTool.factory(options.coverage_tool, jobs=options.jobs)
|
D | runner.py | 1196 self.jobs = 1 1213 # Set number of jobs 1214 if self.options.jobs: 1215 self.jobs = self.options.jobs 1217 self.jobs = multiprocessing.cpu_count() * 2 1219 self.jobs = multiprocessing.cpu_count() 1223 self.jobserver = GNUMakeJobClient.from_environ(jobs=self.options.jobs) 1225 self.jobserver = GNUMakeJobServer(self.jobs) 1226 elif self.jobserver.jobs: 1227 self.jobs = self.jobserver.jobs [all …]
|
/Zephyr-Core-3.7.0/.github/workflows/ |
D | ready-to-merge.yml | 10 jobs: 12 name: all jobs passed 15 - name: "Check status of all required jobs" 28 echo "All jobs passed or were skipped."
|
D | stale-workflow-queue-cleanup.yml | 14 jobs:
|
D | backport.yml | 10 jobs:
|
D | do_not_merge.yml | 7 jobs:
|
D | backport_issue_check.yml | 8 jobs:
|
D | bsim-tests-publish.yaml | 8 jobs:
|
D | stats_merged_prs.yml | 9 jobs:
|
D | license_check.yml | 5 jobs:
|
D | daily_test_version.yml | 13 jobs:
|
D | errno.yml | 9 jobs:
|
D | manifest.yml | 5 jobs:
|
D | stale_issue.yml | 6 jobs:
|
D | assigner.yml | 18 jobs:
|
D | issue_count.yml | 14 jobs:
|
D | coding_guidelines.yml | 5 jobs:
|
/Zephyr-Core-3.7.0/scripts/tests/twister_blackbox/ |
D | test_tooling.py | 34 'jobs', 36 ids=['single job', 'two jobs'] 39 def test_jobs(self, out_path, jobs): argument 43 ['--jobs', jobs] + \ 54 assert f'JOBS: {jobs}' in log
|
/Zephyr-Core-3.7.0/tests/kernel/interrupt/src/ |
D | interrupt_offload.c | 233 * @brief Test interrupt offload work to multiple jobs 239 * - If the priority of the original thread < offload job, offload jobs 243 * jobs will not execute immediately. 257 * @brief Test interrupt offload work to identical jobs 262 * the offload jobs use the same thread entry, and: 264 * - If the priority of the original thread < offload job, offload jobs 268 * jobs will not execute immediately. 287 * offload jobs could execute immediately base on it's priority.
|
/Zephyr-Core-3.7.0/samples/modules/tflite-micro/tflm_ethosu/src/ |
D | main.cpp | 94 /* Number of total completed jobs, needed to exit application correctly if 120 /* inferenceProcessTask - Run jobs from queue with available driver */ 156 /* inferenceSenderTask - Creates NUM_INFERENCE_JOBS jobs, queues them, and then 171 /* Loop over all jobs and push them to inference queue */ in inferenceSenderTask() 172 xInferenceJob jobs[NUM_JOBS_PER_TASK]; in inferenceSenderTask() local 174 auto &job = jobs[n]; in inferenceSenderTask() 227 /* inferenceSender tasks to create and queue the jobs */ in main() 249 /* Create inferenceProcess tasks to process the queued jobs */ in main()
|
/Zephyr-Core-3.7.0/boards/intel/common/scripts/ |
D | build_grub.sh | 9 JOBS=5 39 make -j${JOBS}
|
/Zephyr-Core-3.7.0/scripts/ |
D | coccicheck | 22 -j= , --jobs= number of jobs to use {0 - `nproc`} 33 jobs = maximum jobs available on the machine 51 -j=*|--jobs=*) 105 OPTIONS="$OPTIONS --jobs $NPROC --chunksize 1"
|
/Zephyr-Core-3.7.0/subsys/sip_svc/ |
D | Kconfig | 58 int "Delay used for polling asynchronous jobs in micro-seconds"
|