├── .gitignore ├── HelloWorld ├── HelloWorld.cpp ├── HelloWorld.vcxproj └── HelloWorld.vcxproj.filters ├── MatrixMatrixProduct ├── MatrixMatrixProduct.cpp ├── MatrixMatrixProduct.vcxproj └── MatrixMatrixProduct.vcxproj.filters ├── MatrixVectorProduct ├── MatrixVectorProduct.cpp ├── MatrixVectorProduct.vcxproj └── MatrixVectorProduct.vcxproj.filters ├── Microsoft MPI.props ├── OpenMP.props ├── ParallelProgrammingLabs.sln ├── PiComputation ├── PiComputation.cpp ├── PiComputation.vcxproj └── PiComputation.vcxproj.filters ├── README.md ├── SumNumbers ├── SumNumbers.cpp ├── SumNumbers.vcxproj └── SumNumbers.vcxproj.filters └── SumNumbersCascade ├── SumNumbersCascade.cpp ├── SumNumbersCascade.vcxproj └── SumNumbersCascade.vcxproj.filters /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/Parallel-Programming-Labs/HEAD/.gitignore -------------------------------------------------------------------------------- /HelloWorld/HelloWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/Parallel-Programming-Labs/HEAD/HelloWorld/HelloWorld.cpp -------------------------------------------------------------------------------- /HelloWorld/HelloWorld.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/Parallel-Programming-Labs/HEAD/HelloWorld/HelloWorld.vcxproj -------------------------------------------------------------------------------- /HelloWorld/HelloWorld.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/Parallel-Programming-Labs/HEAD/HelloWorld/HelloWorld.vcxproj.filters -------------------------------------------------------------------------------- /MatrixMatrixProduct/MatrixMatrixProduct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/Parallel-Programming-Labs/HEAD/MatrixMatrixProduct/MatrixMatrixProduct.cpp -------------------------------------------------------------------------------- /MatrixMatrixProduct/MatrixMatrixProduct.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/Parallel-Programming-Labs/HEAD/MatrixMatrixProduct/MatrixMatrixProduct.vcxproj -------------------------------------------------------------------------------- /MatrixMatrixProduct/MatrixMatrixProduct.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/Parallel-Programming-Labs/HEAD/MatrixMatrixProduct/MatrixMatrixProduct.vcxproj.filters -------------------------------------------------------------------------------- /MatrixVectorProduct/MatrixVectorProduct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/Parallel-Programming-Labs/HEAD/MatrixVectorProduct/MatrixVectorProduct.cpp -------------------------------------------------------------------------------- /MatrixVectorProduct/MatrixVectorProduct.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/Parallel-Programming-Labs/HEAD/MatrixVectorProduct/MatrixVectorProduct.vcxproj -------------------------------------------------------------------------------- /MatrixVectorProduct/MatrixVectorProduct.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/Parallel-Programming-Labs/HEAD/MatrixVectorProduct/MatrixVectorProduct.vcxproj.filters -------------------------------------------------------------------------------- /Microsoft MPI.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/Parallel-Programming-Labs/HEAD/Microsoft MPI.props -------------------------------------------------------------------------------- /OpenMP.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/Parallel-Programming-Labs/HEAD/OpenMP.props -------------------------------------------------------------------------------- /ParallelProgrammingLabs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/Parallel-Programming-Labs/HEAD/ParallelProgrammingLabs.sln -------------------------------------------------------------------------------- /PiComputation/PiComputation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/Parallel-Programming-Labs/HEAD/PiComputation/PiComputation.cpp -------------------------------------------------------------------------------- /PiComputation/PiComputation.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/Parallel-Programming-Labs/HEAD/PiComputation/PiComputation.vcxproj -------------------------------------------------------------------------------- /PiComputation/PiComputation.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/Parallel-Programming-Labs/HEAD/PiComputation/PiComputation.vcxproj.filters -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/Parallel-Programming-Labs/HEAD/README.md -------------------------------------------------------------------------------- /SumNumbers/SumNumbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/Parallel-Programming-Labs/HEAD/SumNumbers/SumNumbers.cpp -------------------------------------------------------------------------------- /SumNumbers/SumNumbers.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/Parallel-Programming-Labs/HEAD/SumNumbers/SumNumbers.vcxproj -------------------------------------------------------------------------------- /SumNumbers/SumNumbers.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/Parallel-Programming-Labs/HEAD/SumNumbers/SumNumbers.vcxproj.filters -------------------------------------------------------------------------------- /SumNumbersCascade/SumNumbersCascade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/Parallel-Programming-Labs/HEAD/SumNumbersCascade/SumNumbersCascade.cpp -------------------------------------------------------------------------------- /SumNumbersCascade/SumNumbersCascade.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/Parallel-Programming-Labs/HEAD/SumNumbersCascade/SumNumbersCascade.vcxproj -------------------------------------------------------------------------------- /SumNumbersCascade/SumNumbersCascade.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/Parallel-Programming-Labs/HEAD/SumNumbersCascade/SumNumbersCascade.vcxproj.filters --------------------------------------------------------------------------------