mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-28 20:11:22 +00:00
Applies to all public headers and macros, plus many internal ones. There are still some internal things with OnnxRuntime in the name, but this fixes all public functions & macros.
12 lines
342 B
C++
12 lines
342 B
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#include "core/session/onnxruntime_cxx_api.h"
|
|
|
|
#include "test_fixture.h"
|
|
using namespace onnxruntime;
|
|
|
|
TEST_F(CApiTest, session_options) {
|
|
std::unique_ptr<OrtSessionOptions> options(OrtCreateSessionOptions());
|
|
ASSERT_NE(options, nullptr);
|
|
}
|