| 118 | template<typename T> |
| 119 | void join(Array<T> &out, const int jdim, const vector<Array<T>> &inputs) { |
| 120 | class eval { |
| 121 | public: |
| 122 | vector<Param<T>> outputs; |
| 123 | vector<Node_ptr> nodePtrs; |
| 124 | vector<Node *> nodes; |
| 125 | vector<const Array<T> *> ins; |
| 126 | }; |
| 127 | std::map<dim_t, eval> evals; |
| 128 | const cudaStream_t activeStream{getActiveStream()}; |
| 129 | const size_t L2CacheSize{getL2CacheSize(getActiveDeviceId())}; |
no outgoing calls
no test coverage detected