mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-07 04:39:07 +00:00
14 lines
390 B
C
14 lines
390 B
C
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
|
// Licensed under the MIT License.
|
||
|
|
|
||
|
|
#import <Foundation/Foundation.h>
|
||
|
|
|
||
|
|
#include "core/session/onnxruntime_cxx_api.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
void ORTSaveCodeAndDescriptionToError(int code, const char* description, NSError** error);
|
||
|
|
void ORTSaveExceptionToError(const Ort::Exception& e, NSError** error);
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|