mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-28 20:11:22 +00:00
[VitisAI] Resolving compilation errors when using USE_VITISAI (#19368)
### Description <!-- Describe your changes. --> Resolving compilation errors when using USE_VITISAI ### Motivation and Context <!-- - Why is this change required? What problem does it solve? - If it fixes an open issue, please link to the issue here. --> There will be compilation errors when USE_VITISAI is enabled This is in addition to the #19058 Co-authored-by: Zhenze Wang <zhenzew@xilinx.com>
This commit is contained in:
parent
3a2ab1963a
commit
b71be3c1e3
2 changed files with 4 additions and 2 deletions
|
|
@ -78,6 +78,10 @@
|
|||
#include "core/providers/tvm/tvm_provider_factory_creator.h"
|
||||
#endif
|
||||
|
||||
#if defined(USE_VITISAI)
|
||||
#include "core/providers/vitisai/vitisai_provider_factory_creator.h"
|
||||
#endif
|
||||
|
||||
#if defined(USE_XNNPACK)
|
||||
#include "core/providers/xnnpack/xnnpack_provider_factory_creator.h"
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -10,8 +10,6 @@
|
|||
#include "./vitisai_execution_provider.h"
|
||||
#include "core/framework/execution_provider.h"
|
||||
|
||||
#include "core/session/abi_session_options_impl.h"
|
||||
|
||||
using namespace onnxruntime;
|
||||
namespace onnxruntime {
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue