Remove now duplicated symbol (#16458)

### Description
Change #16161 broke rocm by duplicating this symbol. This removes the
duplicate to unblock the tests.
This commit is contained in:
Ryan Hill 2023-06-23 09:21:03 -07:00 committed by GitHub
parent 5c125b4366
commit d5b606d50d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,6 +2,7 @@
// Licensed under the MIT License.
#include "core/session/onnxruntime_c_api.h"
#if !defined(USE_ROCM)
namespace onnxruntime {
struct Provider;
@ -15,3 +16,5 @@ ORT_API(onnxruntime::Provider*, GetProvider) {
return reinterpret_cast<onnxruntime::Provider*>(onnxruntime::GetProvider());
}
}
#endif