mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-14 20:48:00 +00:00
17 lines
467 B
C#
17 lines
467 B
C#
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|||
|
|
// Licensed under the MIT License.
|
|||
|
|
|
|||
|
|
namespace Microsoft.ML.OnnxRuntime.Tests.MAUI
|
|||
|
|
{
|
|||
|
|
public class PlatformTests
|
|||
|
|
{
|
|||
|
|
// All the 'AppendExecutionProvider' calls will throw if unsuccessful
|
|||
|
|
[Fact(DisplayName = "EnableNNAPI")]
|
|||
|
|
public void TestEnableNNAPI()
|
|||
|
|
{
|
|||
|
|
var opt = new SessionOptions();
|
|||
|
|
opt.AppendExecutionProvider_Nnapi();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|