https://github.com/lucas54neves/sieve-eratosthenes-threads
Sieve of Eratosthenes with threads
https://github.com/lucas54neves/sieve-eratosthenes-threads
python sieve-of-eratosthenes thread threads ufla
Last synced: 2 months ago
JSON representation
Sieve of Eratosthenes with threads
- Host: GitHub
- URL: https://github.com/lucas54neves/sieve-eratosthenes-threads
- Owner: lucas54neves
- License: mit
- Created: 2021-10-30T22:07:57.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-04T19:35:58.000Z (over 3 years ago)
- Last Synced: 2025-01-13T02:11:40.355Z (4 months ago)
- Topics: python, sieve-of-eratosthenes, thread, threads, ufla
- Language: Python
- Homepage:
- Size: 2.93 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sieve-eratosthenes-threads
Sieve of Eratosthenes with threads## Python version
Python version: 3.8.10
## Main commands
All commands below assume the user is in the 'src' directory. To access the 'src' directory, run the following command from the root of the project:
```
cd src
```### Install venv
```
python3 -m venv venv
```### Activate venv
```
source venv/bin/activate
```### Install dependencies
```
pip install -r requirements.txt
```### Parallel program
```
python main.py
```### Execution script
```
bash main.sh
```### Analysis script
```
python analysis.py
```