| 446 | } |
| 447 | |
| 448 | std::string OpRcPtrVec::getCacheID() const |
| 449 | { |
| 450 | std::ostringstream stream; |
| 451 | |
| 452 | for (const auto & op : m_ops) |
| 453 | { |
| 454 | if (!op->isNoOpType()) |
| 455 | { |
| 456 | const std::string id = op->getCacheID(); |
| 457 | if (!id.empty()) |
| 458 | { |
| 459 | stream << " " << id; |
| 460 | } |
| 461 | } |
| 462 | } |
| 463 | |
| 464 | return stream.str(); |
| 465 | } |
| 466 | |
| 467 | std::ostream& operator<< (std::ostream & os, const Op & op) |
| 468 | { |