Basics

Overview

The basic definitions & interfaces of OpenVINO C API to work with other components. More…

// enums

enum ov_element_type_e;
enum ov_status_e;

// global functions

const char \* ov_get_error_info(ov_status_e status);
void ov_free(const char \* content);

Detailed Documentation

The basic definitions & interfaces of OpenVINO C API to work with other components.

Global Functions

const char \* ov_get_error_info(ov_status_e status)

Print the error info.

Parameters:

ov_status_e

a status code.

void ov_free(const char \* content)

free char

Parameters:

content

The pointer to the char to free.