https://github.com/ocl-foss/ocl
🍯 A modularized set of libraries to write high-performance C++ applications.
https://github.com/ocl-foss/ocl
core cpp fix library modular ocl tproc
Last synced: about 2 months ago
JSON representation
🍯 A modularized set of libraries to write high-performance C++ applications.
- Host: GitHub
- URL: https://github.com/ocl-foss/ocl
- Owner: ocl-foss
- License: bsl-1.0
- Created: 2025-12-04T21:12:12.000Z (7 months ago)
- Default Branch: develop
- Last Pushed: 2026-04-29T07:44:05.000Z (about 2 months ago)
- Last Synced: 2026-04-29T09:27:18.929Z (about 2 months ago)
- Topics: core, cpp, fix, library, modular, ocl, tproc
- Language: Python
- Homepage: https://ocl.nekernel.org
- Size: 273 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Citation: CITATION.cff
Awesome Lists containing this project
README
# 🍯 Open C++ Libraries:

## Quick Install:
> [!NOTE]
> On Windows, you will need to use the setup link at:
> `curl -fsSL http://setup.ocl.nekernel.org`.
Install the OCL using the following link:
```sh
curl -fsSL http://install.ocl.nekernel.org | sh
```
## Primers:
The primers are available at:
- https://primer.ocl.nekernel.org
## Abstract:
The OCL provides free header-only C++ libraries for usage in C++ software development.
Modules include, a `core` library containing algorithms and containers for C++20 or later.
These libraries were built on top of the Boost C++ libraries and C++ SL.
## Using OCL:
This is taken from the FIX module, and will be used here as an example of usage of the OCL.
```cpp
int main(int argc, char** argv)
{
ocl::fix::visitor basic_visitor;
ocl::fix::range_buffer fix = basic_visitor.visit(default_fix);
ocl::io::enable_stdio_sync(false);
ocl::io::print(":key=35\n");
ocl::io::print(":value=", fix["35"], "\n");
}
```
The OCL are mostly headers only (except OCL.FIX as of 2026), so no compilation step is needed. And is C++17 or later.
## Community:
Join us in our [Discord](https://discord.gg/uD76Qweght) we're quite active and open for contributors!
## Getting Started:
Documentation can be found at: [https://docs.ocl.nekernel.org](https://docs.ocl.nekernel.org).
##### Copyright (c) 2023-2026 Amlal El Mahrouss & OCL Authors, Licensed under the BSL 1.0.