Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tuke307/cau-multicore-computing
https://github.com/tuke307/cau-multicore-computing
c cuda java openmp
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tuke307/cau-multicore-computing
- Owner: tuke307
- Created: 2024-03-27T06:28:32.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-06-09T07:42:37.000Z (8 months ago)
- Last Synced: 2024-12-21T21:17:44.827Z (about 2 months ago)
- Topics: c, cuda, java, openmp
- Language: Java
- Homepage:
- Size: 1.28 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# multicore-computing
* [project 1 (Java)](proj1/README.md)
* [project 2 (Java)](proj2/README.md)
* [project 3 (C)](proj3/README.md)
* [project 4 (C, CUDA)](proj4/README.md)## java
deleting java compilation files (.class)
```bash
find . -name "*.class" -type f -delete
```compiling java files
```bash
javac *.java
```## C
deleting C compilation files (.out) and outputs
```bash
find . \( -name "*.out" -o -name "*.o" -o -name "output.csv" \) -type f -delete
```