onnxruntime/csharp/test/Microsoft.ML.OnnxRuntime.Tests.Droid/InferenceTest.android.cs

14 lines
333 B
C#
Raw Normal View History

using Xunit;
namespace Microsoft.ML.OnnxRuntime.Tests
{
public partial class InferenceTest
{
[Fact(DisplayName = "TestPlatformSessionOptions")]
public void TestPlatformSessionOptions()
{
var opt = new SessionOptions();
opt.AppendExecutionProvider_Nnapi();
}
}
}