https://github.com/admodev/cpp-inference-engine
Inference engine implementation in C++
https://github.com/admodev/cpp-inference-engine
Last synced: about 1 year ago
JSON representation
Inference engine implementation in C++
- Host: GitHub
- URL: https://github.com/admodev/cpp-inference-engine
- Owner: admodev
- Created: 2024-02-27T03:06:42.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-02-27T03:06:57.000Z (over 2 years ago)
- Last Synced: 2025-03-20T04:14:08.437Z (about 1 year ago)
- Language: CMake
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C++ Inference Engine
## How to compile
To compile the program follow these steps:
In the root directory of the project there is a file named CMakeLists.txt with the following content:
```text
cmake_minimum_required(VERSION 3.0)
project(inference-engine)
add_executable(inference-engine src/main.cpp)
```
Now execute the following commands in the terminal:
```zsh
cd build
```
```zsh
cmake ..
```
```zsh
make
```
```zsh
./inference-engine
```