| 164 | template<typename T> |
| 165 | void join(Array<T> &out, const int jdim, const vector<Array<T>> &inputs) { |
| 166 | class eval { |
| 167 | public: |
| 168 | vector<Param<T>> outputs; |
| 169 | vector<Node_ptr> nodePtrs; |
| 170 | vector<Node *> nodes; |
| 171 | vector<const Array<T> *> ins; |
| 172 | }; |
| 173 | std::map<dim_t, eval> evals; |
| 174 | const dim_t *ostrides{out.strides().dims}; |
| 175 | const size_t L2CacheSize{getL2CacheSize(oneapi::getDevice())}; |
no outgoing calls
no test coverage detected