https://github.com/rubycho/massive-intr-test
old massive-intr python script that I used
https://github.com/rubycho/massive-intr-test
Last synced: 6 months ago
JSON representation
old massive-intr python script that I used
- Host: GitHub
- URL: https://github.com/rubycho/massive-intr-test
- Owner: rubycho
- Created: 2020-04-06T08:51:32.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-06-22T01:40:00.000Z (over 3 years ago)
- Last Synced: 2025-03-17T01:42:35.373Z (11 months ago)
- Language: C
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# massive-intr-test
Customizer & Visualizer of massive_intr.c by SUNGJAE ;)
* Customize affinity & priority on fork() with ini file.
* Plot the loop count with matplotlib.
### Python requirements:
~~~
# if you didn't install python
sudo apt-get install python3 python3-pip
# need tinker while using matplotlib
sudo apt-get install python3-tk
# virtualenv (optional)
sudo apt-get install virtualenv
virtualenv venv -p python3
source venv/bin/activate
# if you activated virtualenv,
pip install -r requirements.txt
# if not,
pip3 install -r requirements.txt
~~~
### C requirements:
~~~
# do make on ./application
make
~~~
### Simple Run
~~~
# run massive_intr on ./application
sudo ./massive_intr {configfile}
~~~
### Run (with graph)
~~~
# if you activated virtualenv
python run.py {configfile}
# if not,
python3 run.py {configfile}
~~~