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