{"id":24149332,"url":"https://github.com/vinukavinnath/openmp_tutes","last_synced_at":"2026-06-09T11:31:46.030Z","repository":{"id":241162259,"uuid":"780864874","full_name":"vinukavinnath/openmp_tutes","owner":"vinukavinnath","description":"This repository is dedicated to providing comprehensive tutorials and resources for mastering concurrent programming using OpenMP. ","archived":false,"fork":false,"pushed_at":"2024-05-22T17:02:00.000Z","size":30,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-01T17:29:52.606Z","etag":null,"topics":["c","computer-science","concurrent-programming","openmp"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vinukavinnath.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-04-02T09:58:17.000Z","updated_at":"2024-05-22T17:10:55.000Z","dependencies_parsed_at":"2024-05-22T19:32:05.871Z","dependency_job_id":"cf3f815e-64ae-49f8-a3dd-6c14f3c06aed","html_url":"https://github.com/vinukavinnath/openmp_tutes","commit_stats":null,"previous_names":["vinukavinnath/openmp_tutes"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/vinukavinnath/openmp_tutes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinukavinnath%2Fopenmp_tutes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinukavinnath%2Fopenmp_tutes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinukavinnath%2Fopenmp_tutes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinukavinnath%2Fopenmp_tutes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vinukavinnath","download_url":"https://codeload.github.com/vinukavinnath/openmp_tutes/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinukavinnath%2Fopenmp_tutes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34105565,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-09T02:00:06.510Z","response_time":63,"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","computer-science","concurrent-programming","openmp"],"created_at":"2025-01-12T08:37:53.561Z","updated_at":"2026-06-09T11:31:45.999Z","avatar_url":"https://github.com/vinukavinnath.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Title](https://i.imgur.com/IL2hIvX.png)\n# Introduction #\nOpenMP (Open Multi-Processing) is an API (Application Programming Interface) that makes it easier to write programs that can run on multiple processors or cores. It's designed for shared-memory parallel programming, meaning all the processors can access the same memory. OpenMP is supported for C, C++, and Fortran.\n\n# Install on CodeBlocks #\n1. Download and install Codeblocks and choose the default GNU  GCC compiler.\n2. Open \"Compiler and debugger settings\", put `-fopenmp` in \"other options\", and `-lgomp -pthread` in \"Other linker options\".\n3. Add `C:\\Program Files (x86)\\CodeBlocks\\MinGW\\lib\\gcc\\mingw32\\bin` to  \"Compiler and debugger settings\" -\u003e \"Toolchain Executables\" -\u003e Additional Paths -\u003eAdd.\n\n# Verify #\nCopy this simple code snippet and compile to see the OpenMP version.\n\n```c\n#include \u003cstdio.h\u003e\n#include \u003comp.h\u003e\n\nint main() {\n    // Check whether OpenMP is installed and get the OpenMP version\n    printf(\"OpenMP version: %d\\n\", _OPENMP);\n    return 0;\n}\n```\nVersions are as follows.\n- OpenMP 2.0: _OPENMP is defined as 200203\n- OpenMP 2.5: _OPENMP is defined as 200505\n- OpenMP 3.0: _OPENMP is defined as 200805\n- OpenMP 4.0: _OPENMP is defined as 201307\n- OpenMP 4.5: _OPENMP is defined as 201511\n- OpenMP 5.0: _OPENMP is defined as 201811\n- OpenMP 5.1: _OPENMP is defined as 202011","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvinukavinnath%2Fopenmp_tutes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvinukavinnath%2Fopenmp_tutes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvinukavinnath%2Fopenmp_tutes/lists"}