[TOC]
Before you begin, ensure you have the following installed:
- A C++20 compatible compiler (GCC 8+, Clang 7+, or MSVC 2019+)
- CoreFlow runtime libraries
-
Procure core-sdk release:
core_sdk_vX.X.X.tar.gz
-
Extract core-sdk release:
tar -xf core_sdk_vX.X.X.tar.gz
The release tarball
include/: Public headersVX/: OpenVX headersCOREFLOW/: CoreFlow headers
lib/: Public libraries for SDKbin/examples: Example applications
Customers will be provided pre-compiled CoreFlow library as well as sample binaries.
The simplest way to start is with the hello_world example, which imports and executes any graph that was exported using Edge Studio - the no-code graph builder:
# Hello World (requires XML file)
./bin/examples/hello_world graph.xmlYou can likewise run any of the examples in the bin directory with:
# AI Chatbot
./bin/examples/chatbot_sample
# MNIST Classification
./bin/examples/ort_classification_sample
# Image Processing
./bin/examples/blur_pipeline
# Custom Kernel
./bin/examples/custom_code