School project developed using C and Python.
# Navigate to plots directory
$ cd TriParallele/plots
# Create the virtual environement (venv)
$ python3 -m venv venv
# Activating the virtual environement
$ source venv/bin/activate
# Install required python modules
(venv)$ pip install -r requirements.txtUse the MAKEFILE to build the project.
$ cd TriParallele/src
$ make clean
$ makeExecuting the C compiled object to extract the performances data into a csv file called 'performances.csv' in the same directory.
$ cd TriParallele/src
# ./program filename[.csv]
$ ./program performance.csvNote: The execution of the program might take a couple of hours depending on your machine.
Executing the Python script to make the plots (charts).
Keep in mind that this part requires the installed dependencies mentionned above!
$ cd TriParallele/plots
# Activating the virtual environment
$ source venv/bin/activate
# Executing the script
(venv)$ python plot.py
# Deactivating the virtual environment
(venv)$ deactivateManaging the development tasks in a Trello Table.