Properties
Type
ComputableDAGs.GraphProperties — Type
GraphProperties
Representation of a DAG's properties.
Fields:
data::Float64: The total data transfer.compute_effort::Float64: The total compute effort.compute_intensity::Float64: The compute intensity, will always equalcompute_effort / data.number_of_nodes::Int: Number ofNodes.number_of_edges::Int: Number ofEdges.
Create
Utility
Base.:+ — Method
+(prop1::GraphProperties, prop2::GraphProperties)Add prop1 and prop2 and return the result as a new GraphProperties. Also take care to keep consistent compute intensity.
Base.:- — Method
-(prop1::GraphProperties, prop2::GraphProperties)Subtract prop1 from prop2 and return the result as a new GraphProperties. Also take care to keep consistent compute intensity.