Updated copyright headers (#15124)

* Updated copyright headers

* Revert "Fixed linker warnings in docs snippets on Windows (#15119)"

This reverts commit 372699ec49.
This commit is contained in:
Ilya Churaev
2023-01-16 11:02:17 +04:00
committed by GitHub
parent 53e9d7acea
commit 0c9abf43a9
11929 changed files with 12533 additions and 12533 deletions

View File

@@ -1,6 +1,6 @@
#include <openvino/runtime/core.hpp>
int cpu_Bfloat16Inference0() {
int main() {
//! [part0]
ov::Core core;
auto cpuOptimizationCapabilities = core.get_property("CPU", ov::device::capabilities);

View File

@@ -1,6 +1,6 @@
#include <openvino/runtime/core.hpp>
int cpu_Bfloat16Inference1() {
int main() {
using namespace InferenceEngine;
//! [part1]
ov::Core core;

View File

@@ -1,6 +1,6 @@
#include <openvino/runtime/core.hpp>
int cpu_Bfloat16Inference2() {
int main() {
using namespace InferenceEngine;
//! [part2]
ov::Core core;

View File

@@ -1,7 +1,7 @@
#include <openvino/runtime/core.hpp>
int cpu_compiled_model() {
int main() {
{
//! [compile_model_default]
ov::Core core;

View File

@@ -1,7 +1,7 @@
#include <openvino/runtime/core.hpp>
int cpu_dynamic_shape() {
int main() {
{
//! [static_shape]
ov::Core core;

View File

@@ -4,7 +4,7 @@
#include <openvino/runtime/core.hpp>
#include "openvino/runtime/intel_cpu/properties.hpp"
int cpu_ov_sparse_weights_decompression() {
int main() {
try {
std::string modelPath = "model.xml";
std::string device = "CPU";