| 349 | |
| 350 | template <typename Dtype> |
| 351 | Dtype caffe_cpu_dot(const int n, const Dtype* x, const Dtype* y) { |
| 352 | return caffe_cpu_strided_dot(n, x, 1, y, 1); |
| 353 | } |
| 354 | |
| 355 | template |
| 356 | float caffe_cpu_dot<float>(const int n, const float* x, const float* y); |
no outgoing calls
no test coverage detected