| 58 | using FusionSequence = std::vector<ComputeTaskDescriptorPtr>; |
| 59 | |
| 60 | bool Contains(const std::vector<ValueId>& container, ValueId value) { |
| 61 | return std::find(container.begin(), container.end(), value) != |
| 62 | container.end(); |
| 63 | } |
| 64 | |
| 65 | template <class T> |
| 66 | bool Contains(const std::vector<T>& container, ValueId value) { |