mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-16 21:00:14 +00:00
9 lines
279 B
TypeScript
9 lines
279 B
TypeScript
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
|
// Licensed under the MIT License.
|
||
|
|
|
||
|
|
export * from 'onnxruntime-common';
|
||
|
|
import {registerBackend} from 'onnxruntime-common';
|
||
|
|
import {onnxruntimeBackend} from './backend';
|
||
|
|
|
||
|
|
registerBackend('cpu', onnxruntimeBackend, 1);
|