Searched defs:Coloring (Results 1 – 2 of 2) sorted by relevance
102 struct Coloring { struct103 using Node = int;104 using MapType = std::map<Node, ColorKind>;105 static constexpr Node Ignore = Node(-1);107 Coloring(ArrayRef<Node> Ord) : Order(Ord) { in Coloring() function113 const MapType &colors() const { in colors()117 ColorKind other(ColorKind Color) { in other()126 ArrayRef<Node> Order;127 MapType Colors;128 std::set<Node> Needed;[all …]
194 void PipelineTransformer::Coloring() { in Coloring() function in mindspore::parallel::PipelineTransformer