| 169 | |
| 170 | template <typename T> |
| 171 | void MaximumCaffe<T>::Backward_gpu(const std::vector<ArrayCpuGpu<T>*>& top, |
| 172 | const std::vector<bool>& propagate_down, |
| 173 | const std::vector<ArrayCpuGpu<T>*>& bottom) |
| 174 | { |
| 175 | try |
| 176 | { |
| 177 | UNUSED(top); |
| 178 | UNUSED(propagate_down); |
| 179 | UNUSED(bottom); |
| 180 | #ifdef USE_CAFFE |
| 181 | #ifdef USE_CAFFE |
| 182 | NOT_IMPLEMENTED; |
| 183 | #endif |
| 184 | #endif |
| 185 | } |
| 186 | catch (const std::exception& e) |
| 187 | { |
| 188 | error(e.what(), __LINE__, __FUNCTION__, __FILE__); |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | COMPILE_TEMPLATE_FLOATING_TYPES_CLASS(MaximumCaffe); |
| 193 | } |