| 59 | |
| 60 | template<typename T> |
| 61 | void luSplit(Param lower, Param upper, const Param in) { |
| 62 | bool same_dims = (lower.info.dims[0] == in.info.dims[0]) && |
| 63 | (lower.info.dims[1] == in.info.dims[1]); |
| 64 | luSplitLauncher<T>(lower, upper, in, same_dims); |
| 65 | } |
| 66 | } // namespace kernel |
| 67 | } // namespace opencl |
| 68 | } // namespace arrayfire |
no outgoing calls
no test coverage detected