mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-14 20:48:00 +00:00
14 lines
No EOL
385 B
C#
14 lines
No EOL
385 B
C#
using Xunit;
|
|
|
|
namespace Microsoft.ML.OnnxRuntime.Tests
|
|
{
|
|
public partial class InferenceTest
|
|
{
|
|
[Fact(DisplayName = "TestPlatformSessionOptions")]
|
|
public void TestPlatformSessionOptions()
|
|
{
|
|
var opt = new SessionOptions();
|
|
opt.AppendExecutionProvider_CoreML(CoreMLFlags.COREML_FLAG_ONLY_ENABLE_DEVICE_WITH_ANE);
|
|
}
|
|
}
|
|
} |