mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-29 23:06:41 +00:00
14 lines
351 B
C
14 lines
351 B
C
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
|
// Licensed under the MIT License.
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <napi.h>
|
||
|
|
|
||
|
|
namespace Ort {
|
||
|
|
struct SessionOptions;
|
||
|
|
}
|
||
|
|
|
||
|
|
// parse a Javascript session options object and fill the native SessionOptions object.
|
||
|
|
void ParseSessionOptions(const Napi::Object options, Ort::SessionOptions &sessionOptions);
|