mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-18 21:21:17 +00:00
* Remove nGraph Execution Provider Pursuant to nGraph deprecation notice: https://github.com/microsoft/onnxruntime/blob/master/docs/execution_providers/nGraph-ExecutionProvider.md#deprecation-notice **Deprecation Notice** | | | | --- | --- | | Deprecation Begins | June 1, 2020 | | Removal Date | December 1, 2020 | Starting with the OpenVINO™ toolkit 2020.2 release, all of the features previously available through nGraph have been merged into the OpenVINO™ toolkit. As a result, all the features previously available through ONNX RT Execution Provider for nGraph have been merged with ONNX RT Execution Provider for OpenVINO™ toolkit. Therefore, ONNX RT Execution Provider for **nGraph** will be deprecated starting June 1, 2020 and will be completely removed on December 1, 2020. Users are recommended to migrate to the ONNX RT Execution Provider for OpenVINO™ toolkit as the unified solution for all AI inferencing on Intel® hardware. * Remove nGraph Licence info from ThirdPartyNotices.txt * Use simple Test.Run() for tests without EP exclusions To be consistent with rest of test code. * Remove nGraph EP functions from Java code
24 lines
743 B
C
24 lines
743 B
C
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#pragma once
|
|
#include "onnxruntime/core/providers/cpu/cpu_provider_factory.h"
|
|
|
|
#ifdef USE_CUDA
|
|
#include "onnxruntime/core/providers/cuda/cuda_provider_factory.h"
|
|
#endif
|
|
#ifdef USE_DNNL
|
|
#include "onnxruntime/core/providers/dnnl/dnnl_provider_factory.h"
|
|
#endif
|
|
#ifdef USE_NUPHAR
|
|
#include "onnxruntime/core/providers/nuphar/nuphar_provider_factory.h"
|
|
#endif
|
|
#ifdef USE_TENSORRT
|
|
#include "onnxruntime/core/providers/tensorrt/tensorrt_provider_factory.h"
|
|
#endif
|
|
#ifdef USE_DML
|
|
#include "onnxruntime/core/providers/dml/dml_provider_factory.h"
|
|
#endif
|
|
#ifdef USE_MIGRAPHX
|
|
#include "onnxruntime/core/providers/migraphx/migraphx_provider_factory.h"
|
|
#endif
|