| 760 | |
| 761 | template <typename T, typename TensorType> |
| 762 | void fill_tensor_zero(TensorType &tensor) |
| 763 | { |
| 764 | fill_tensor_value(tensor, T(0)); |
| 765 | } |
| 766 | |
| 767 | template <typename T, typename TensorType> |
| 768 | void fill_tensor_vector(TensorType &tensor, std::vector<T> vec) |
nothing calls this directly
no test coverage detected