Function trender¶
function trender(const E &) base¶
template <size_t width = 0, index_t Axis = infinite_size, typename E, typename Traits = expression_traits<E>>
tensor<typename Traits::value_type, Traits::dims> trender(const E& expr) Evaluates an expression and returns the result as a tensor.
| width | processing width. |
| Axis | axis to process along. |
| E | expression type. |
| expr | expression to evaluate. |
Tensor holding the result of evaluating expr. |
Fully qualified name: kfr::trender(const E &)
Declared at base/tensor.hpp:1330
Function trender¶
function trender(const E &, shape<Traits::dims>) base¶
template <size_t width = 0, index_t Axis = infinite_size, typename E, typename Traits = expression_traits<E>>
tensor<typename Traits::value_type, Traits::dims> trender(const E& expr, shape<Traits::dims> size) Evaluates an expression up to size and returns the result as a tensor.
| width | processing width. |
| Axis | axis to process along. |
| E | expression type. |
| expr | expression to evaluate. |
| size | maximum shape of the result. |
Tensor holding the result of evaluating expr. |
Fully qualified name: kfr::trender(const E &, shape<Traits::dims>)
Declared at base/tensor.hpp:1347
This file was generated by cxxdox, a C++ documentation generator based on MkDocs Material and libclang.