| 881 | // DEPRECATED |
| 882 | template <typename SType> |
| 883 | void Tensor::GetValue(SType *value, const size_t num) const { |
| 884 | get_value(value, num); |
| 885 | } |
| 886 | template void Tensor::GetValue<float>(float *value, const size_t num) const; |
| 887 | template void Tensor::GetValue<int>(int *value, const size_t num) const; |
| 888 |