| 165 | } |
| 166 | |
| 167 | std::pair<std::vector<array>, std::vector<int>> Compiled::vmap( |
| 168 | const std::vector<array>&, |
| 169 | const std::vector<int>&) { |
| 170 | throw std::runtime_error("[Compiled] Cannot vmap primitive."); |
| 171 | } |
| 172 | |
| 173 | bool Compiled::is_equivalent(const Primitive& other) const { |
| 174 | const Compiled& a_other = static_cast<const Compiled&>(other); |
nothing calls this directly
no outgoing calls
no test coverage detected