| 9 | |
| 10 | template <typename Iter> |
| 11 | XGBOOST_DEVICE void InitializeRange(Iter _begin, Iter _end) { |
| 12 | float j = 0; |
| 13 | for (Iter i = _begin; i != _end; ++i, ++j) { |
| 14 | *i = j; |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | namespace xgboost { |
| 19 | namespace common { |
no outgoing calls
no test coverage detected