| 76 | |
| 77 | template <typename Dtype> |
| 78 | const int* Blob<Dtype>::gpu_shape() const { |
| 79 | CHECK(shape_data_); |
| 80 | return (const int*)shape_data_->gpu_data(); |
| 81 | } |
| 82 | |
| 83 | template <typename Dtype> |
| 84 | const Dtype* Blob<Dtype>::cpu_data() const { |
no test coverage detected