Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```