{"id":20791407,"url":"https://github.com/csalih/parallel-programming","last_synced_at":"2026-05-09T07:32:31.825Z","repository":{"id":89371006,"uuid":"256562535","full_name":"CSalih/Parallel-Programming","owner":"CSalih","description":"Homework repo for Parallel programming","archived":false,"fork":false,"pushed_at":"2020-07-06T08:50:41.000Z","size":1149,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-26T19:42:36.650Z","etag":null,"topics":["c","c-plus-plus","cmake","dependency-analysis","linux","openmp","parallel-programming","vectorization"],"latest_commit_sha":null,"homepage":null,"language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CSalih.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-04-17T17:03:49.000Z","updated_at":"2020-07-06T08:50:43.000Z","dependencies_parsed_at":null,"dependency_job_id":"86b84fae-18cc-4c47-b6fc-a93c19c4af5d","html_url":"https://github.com/CSalih/Parallel-Programming","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/CSalih/Parallel-Programming","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CSalih%2FParallel-Programming","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CSalih%2FParallel-Programming/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CSalih%2FParallel-Programming/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CSalih%2FParallel-Programming/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CSalih","download_url":"https://codeload.github.com/CSalih/Parallel-Programming/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CSalih%2FParallel-Programming/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32811335,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"online","status_checked_at":"2026-05-09T02:00:06.633Z","response_time":123,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["c","c-plus-plus","cmake","dependency-analysis","linux","openmp","parallel-programming","vectorization"],"created_at":"2024-11-17T15:44:30.212Z","updated_at":"2026-05-09T07:32:31.803Z","avatar_url":"https://github.com/CSalih.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Parallel Programming\nTopics:\n* parallel programming concepts\n* shared memory parallelization using OpenMP\n* performance-oriented programming\n* proper experiment orchestration and benchmarking\n* parallel programming tools\n\n\n## Content\n| Exec               | Topics                                    | Notes             |\n|--------------------|-------------------------------------------|-------------------|\n| [Skripts](Common)  | Benchmark script                          |                   |\n| [1](Assignment1)   | Scaling characteristics                   |                   |\n| [2](Assignment2)   | Performance-oriented programming          | cachegrind, perf  |\n| [3](Assignment3)   | OpenMP - Basics                           |                   |\n| [4](Assignment4)   | OpenMP - Parallel                         | Mergesort         |\n| [5](Assignment5)   | OpenMP - Affinity                         |                   |\n| [6](Assignment6)   | OpenMP - Tasks                            |                   |\n| [7](Assignment7)   | OpenMP - Barrier                          | NQueens           |\n| [8](Assignment8)   | Data and control dependencies             |                   |\n| [9](Assignment9)   | Dependencies analysis                     |                   |\n| [10](Assignment10) | Profiling                                 | gprof             |\n| [11](Assignment11) | Program optimizations                     |                   |\n| [12](Assignment12) | Vectorizing                               |                   |\n\n\n## Requirements\n* GNU C/C++ compiler (Clang not tested, MSVC works limited)\n* CMake Version `3.8+`\n\nIf you want to use this project on Windows you can configure [WSL on Windows 10](https://docs.microsoft.com/en-us/windows/wsl/install-win10).\n\n\n## Setup\nWe recommend using [VS Code](https://code.visualstudio.com/) with the [CMake Tools](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cmake-tools\u0026ssr=false#overview) and [C++](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools) extension as text editor. Before we can start you have to configure CMake Tools [Getting Started](https://vector-of-bool.github.io/docs/vscode-cmake-tools/getting_started.html).\n\nType in the command pallette (`STRG + Shift + P`) of VS Code.\n```\n\u003e CMake: Quick Start\n```\n\n## Build\n### VS Code\nBuild a specific executable type in the command pallette:\n```\n\u003e CMake: Build Target\n```\nnow you can select the executable you want to build. To Build all executable:\n```\n\u003e CMake: Build\n```\n\nExecutable is located in the `build` folder. For more details please read the official documentation of [CMake Tools: Building](https://vector-of-bool.github.io/docs/vscode-cmake-tools/building.html).\n\n\n### CMake cli\n\n``` bash\n$ cd Project_Dir/Assignment[N]\n$ mkdir build\n$ cd build\n$ cmake ..\n$ make\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcsalih%2Fparallel-programming","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcsalih%2Fparallel-programming","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcsalih%2Fparallel-programming/lists"}