mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-27 22:45:57 +00:00
22 lines
798 B
C
22 lines
798 B
C
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|||
// Licensed under the MIT License.
|
|||
|
|||
#include "test.h"
|
|||
struct CustomOpsTestApi
|
|||
{
|
|||
SetupTest CustomOpsScenarioTestSetup;
|
|||
SetupTest CustomOpsScenarioGpuTestSetup;
|
|||
VoidTest CustomOperatorFusion;
|
|||
VoidTest CustomKernelWithBuiltInSchema;
|
|||
VoidTest CustomKernelWithCustomSchema;
|
|||
};
|
|||
const CustomOpsTestApi& getapi();
|
|||
|
|||
WINML_TEST_CLASS_BEGIN_WITH_SETUP(CustomOpsScenarioTest, CustomOpsScenarioTestSetup)
|
|||
WINML_TEST(CustomOpsScenarioTest, CustomKernelWithBuiltInSchema)
|
|||
WINML_TEST(CustomOpsScenarioTest, CustomKernelWithCustomSchema)
|
|||
WINML_TEST_CLASS_END()
|
|||
|
|||
WINML_TEST_CLASS_BEGIN_WITH_SETUP(CustomOpsScenarioGpuTest, CustomOpsScenarioGpuTestSetup)
|
|||
WINML_TEST(CustomOpsScenarioGpuTest, CustomOperatorFusion)
|
|||
WINML_TEST_CLASS_END()
|