Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-08-28 08:58:56

0001 // Copyright (c) Microsoft Corporation. All rights reserved.
0002 // Licensed under the MIT License.
0003 
0004 #pragma once
0005 
0006 // CustomOpContext defines an interface allowing a custom op to access ep-specific resources.
0007 struct CustomOpContext {
0008   CustomOpContext() = default;
0009   virtual ~CustomOpContext() {};
0010 };