| 117 | } |
| 118 | |
| 119 | std::string CDLOp::getCacheID() const |
| 120 | { |
| 121 | // Create the cacheID. |
| 122 | std::ostringstream cacheIDStream; |
| 123 | cacheIDStream << "<CDLOp "; |
| 124 | cacheIDStream << cdlData()->getCacheID(); |
| 125 | cacheIDStream << ">"; |
| 126 | |
| 127 | return cacheIDStream.str(); |
| 128 | } |
| 129 | |
| 130 | ConstOpCPURcPtr CDLOp::getCPUOp(bool fastLogExpPow) const |
| 131 | { |
no outgoing calls
no test coverage detected