test-CPU-parallel is a basic CPU workload generator.
Project description
test_CPU_parallel.py - A basic CPU workload generator.
Luca.Canali@cern.ch - April 2023
Use test_cpu_parallel to generate CPU-intensive load on a system by running single-threaded, or with multiple threads in parallel.
The tool runs a CPU-burning loop concurrently on the system with configurable parallelism.
The output are measurements of the CPU-burning loop execution time as a function of load, printed to terminal, or to a csv file,
or returned programmatically when used as a Python library.
Link to the project homepage
How to use test_CPU_parallel.py from the command line
Example:
# Install with pip or clone from GitHub
pip install test-CPU-parallel
# run one-off data collection with 2 concurrent workers
test_CPU_parallel.py --num_workers 2
# Measure job runtime over a ramp of concurrent workers from 1 to 8, and output the results to a CSV file
test_CPU_parallel.py --num_workers 8 --full --output myout.csv
Parameters:
--full - Full mode will test all the values of num_workers from 1 to the value
set with --num_workers, use this to collect speedup test measurements and create plots, default = False
--output - Optional output file, applies only to the full mode, default = None
--num_workers - Number of parallel threads running concurrently, default = 2
--num_job_execution_loops - number of times the execution loop is run on each worker, default = 3
--worker_inner_loop_size - internal weight of the inner execution loop, default = 100000000
How to use test_CPU_parallel programmatically
You have the ability to employ the test_CPU_parallel function within your Python scripts, including its integration
into Continuous Integration (CI) tests. This proves advantageous for tasks like quantifying system performance and
assessing how well the CPU adapts to varying workloads. This becomes especially handy when you're comparing test runs
conducted on different occasions or on distinct computer setups.
In your code, the process of executing the test and obtaining results is as follows:
pip install test-CPU-parallel
from test_CPU_parallel import test_CPU_parallel
# See also the configuration options in the help
test = test_CPU_parallel()
# Run a test
test.test_one_load()
# Run a full run
test.test_full()
How to run test_CPU_parallel.py using from a container image
docker run lucacanali/test_cpu_parallel.py test_CPU_parallel.py
- See also Container for more details on how to build and run container images for this tool and on how to run it using Docker or Kubernetes
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file Test_CPU_parallel-1.0.5.tar.gz
.
File metadata
- Download URL: Test_CPU_parallel-1.0.5.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 25b4c457d9e6bee87261662c4c48106edefffc2a3006ca6c4330cf261f509d1a |
|
MD5 | 38efaa5753d5146fd4755547cb7a36aa |
|
BLAKE2b-256 | 39bb840877d22794fc4d2e3d5da11b15a0297d4301ab1b6d4cfe1cc1c4b34537 |
File details
Details for the file Test_CPU_parallel-1.0.5-py2.py3-none-any.whl
.
File metadata
- Download URL: Test_CPU_parallel-1.0.5-py2.py3-none-any.whl
- Upload date:
- Size: 8.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b2c836e62a42cc989c590e81b438b0c98cb31ef91a78acb365c59e6f915a2af |
|
MD5 | 8a4c3cf707cb3c1c7380207eca8b1c5d |
|
BLAKE2b-256 | 96cd252dd15239980c257b2bd12e0509843bc25f0ab1520e1ef74942cb350a55 |