-
Notifications
You must be signed in to change notification settings - Fork 2
Get_started
Fabien edited this page Apr 21, 2021
·
5 revisions
Last update : 2020-2021
git clone https://github.com/TuxML/tuxml.git
python3 kernel_generator.py
All the possible arguments are documented in the User's documentation section.
- A simple compilation:
python3 kernel_generator.py
- With unit testing:
python3 kernel_generator.py --unit_testing
- With a custom .config file: TO CHECK
python3 kernel_generator.py --config /.config
- With gcc version 8 :
python3 kernel_generator.py --compiler gcc8
- Running 100 compilations on 2 cpu cores:
python3 kernel_generator.py 100 -n 2
orpython3 kernel_generator.py 100 --number_cpu 2
- Running 4 compilations on 16 cpu cores with kernel version 4.15.1:
python3 kernel_generator.py 4 -n 16 --linux_version 4.15.1
Consult the User's documentation