Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / src / inference_engine / system_alllocator.cpp
1 // Copyright (C) 2018-2019 Intel Corporation
2 // SPDX-License-Identifier: Apache-2.0
3 //
4
5 #include "system_alllocator.hpp"
6
7 INFERENCE_ENGINE_API(InferenceEngine::IAllocator*)CreateDefaultAllocator() noexcept {
8     try {
9         return new SystemMemoryAllocator();
10     }catch (...) {
11         return nullptr;
12     }
13 }