You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(topology): add support for nGraphResourceTransform
- add NGraphResourceTransform model
- update topology device configuration model
- update topology device configuration compare model
- update methods in topology api
- update methods in topology app
@@ -34,6 +37,7 @@ class TopologyDeviceConfiguration(BaseModel):
34
37
codec_vertices (List[CodecVertex]): Configuration of the codec vertices of the device
35
38
internal_edges (List[UnidirectionalEdge]): Configuration of the internal unidirectional edges of the device (All edges that connect vertices within the same device)
36
39
external_edges (List[UnidirectionalEdge]): Configuration of the external unidirectional edges of the device (All edges that connect this device to other devices)
40
+
resource_transform_edges (List[NGraphResourceTransform]): Configuration of the resource transform edges of the device
37
41
"""
38
42
39
43
base_device: BaseDevice
@@ -42,6 +46,7 @@ class TopologyDeviceConfiguration(BaseModel):
0 commit comments