├── CUDA ├── asyncAPI.cu ├── cdpSimplePrint.cu ├── cdpSimpleQuicksort.cu ├── clock.cu ├── cppIntegration.cu ├── cppOverload.cu ├── matrixMul.cu ├── simpleAssert.cu ├── simpleAssert_kernel.cu ├── template_runtime.cu └── vectorAdd.cu ├── MPI ├── SimpleSendRcv.c ├── array_prod.c ├── average_reduce.c ├── average_scatter.c ├── factorial.c ├── lognSum.c ├── matrixMult.c ├── mpi_hello_world.c ├── mpibcast.c └── pieCalculation.c ├── OMP ├── Critical.c ├── Fibonacci.c ├── HelloWorld.c ├── MatrixMul.c ├── ParallelTreeSearch.c ├── PiCalculation.c ├── ReductionPI.c ├── Single.c ├── Sorting.c └── SumOfArrays.c └── README.md /CUDA/asyncAPI.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/CUDA/asyncAPI.cu -------------------------------------------------------------------------------- /CUDA/cdpSimplePrint.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/CUDA/cdpSimplePrint.cu -------------------------------------------------------------------------------- /CUDA/cdpSimpleQuicksort.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/CUDA/cdpSimpleQuicksort.cu -------------------------------------------------------------------------------- /CUDA/clock.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/CUDA/clock.cu -------------------------------------------------------------------------------- /CUDA/cppIntegration.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/CUDA/cppIntegration.cu -------------------------------------------------------------------------------- /CUDA/cppOverload.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/CUDA/cppOverload.cu -------------------------------------------------------------------------------- /CUDA/matrixMul.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/CUDA/matrixMul.cu -------------------------------------------------------------------------------- /CUDA/simpleAssert.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/CUDA/simpleAssert.cu -------------------------------------------------------------------------------- /CUDA/simpleAssert_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/CUDA/simpleAssert_kernel.cu -------------------------------------------------------------------------------- /CUDA/template_runtime.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/CUDA/template_runtime.cu -------------------------------------------------------------------------------- /CUDA/vectorAdd.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/CUDA/vectorAdd.cu -------------------------------------------------------------------------------- /MPI/SimpleSendRcv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/MPI/SimpleSendRcv.c -------------------------------------------------------------------------------- /MPI/array_prod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/MPI/array_prod.c -------------------------------------------------------------------------------- /MPI/average_reduce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/MPI/average_reduce.c -------------------------------------------------------------------------------- /MPI/average_scatter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/MPI/average_scatter.c -------------------------------------------------------------------------------- /MPI/factorial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/MPI/factorial.c -------------------------------------------------------------------------------- /MPI/lognSum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/MPI/lognSum.c -------------------------------------------------------------------------------- /MPI/matrixMult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/MPI/matrixMult.c -------------------------------------------------------------------------------- /MPI/mpi_hello_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/MPI/mpi_hello_world.c -------------------------------------------------------------------------------- /MPI/mpibcast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/MPI/mpibcast.c -------------------------------------------------------------------------------- /MPI/pieCalculation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/MPI/pieCalculation.c -------------------------------------------------------------------------------- /OMP/Critical.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/OMP/Critical.c -------------------------------------------------------------------------------- /OMP/Fibonacci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/OMP/Fibonacci.c -------------------------------------------------------------------------------- /OMP/HelloWorld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/OMP/HelloWorld.c -------------------------------------------------------------------------------- /OMP/MatrixMul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/OMP/MatrixMul.c -------------------------------------------------------------------------------- /OMP/ParallelTreeSearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/OMP/ParallelTreeSearch.c -------------------------------------------------------------------------------- /OMP/PiCalculation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/OMP/PiCalculation.c -------------------------------------------------------------------------------- /OMP/ReductionPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/OMP/ReductionPI.c -------------------------------------------------------------------------------- /OMP/Single.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/OMP/Single.c -------------------------------------------------------------------------------- /OMP/Sorting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/OMP/Sorting.c -------------------------------------------------------------------------------- /OMP/SumOfArrays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/OMP/SumOfArrays.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiDigest/parallel/HEAD/README.md --------------------------------------------------------------------------------