8 #ifndef BLACKCAT_TENSORS_TENSORS_UTILITY_PRINT_H_ 9 #define BLACKCAT_TENSORS_TENSORS_UTILITY_PRINT_H_ 30 precision(precision_),
42 return std::string(indent_lvl, indent_delim);
49 return "[" + str +
"]";
55 template<
class ValueType>
56 static std::string format_value(
const ValueType& s,
features f) {
59 if (fstr.length() < (unsigned)min_precision)
60 return fstr.append(min_precision - fstr.length(),
' ');
62 auto decimal_point =
std::find(fstr.begin(), fstr.end(),
'.');
63 if (decimal_point == fstr.end())
67 return std::string(fstr.begin(), decimal_point);
72 return std::string(fstr.begin(), decimal_point + decimal_length);
77 template<
class Tensor>
87 for (
bc::size_t m = 0; m < tensor.rows(); ++m) {
94 for (
bc::size_t n = 0; n < tensor.cols(); ++n) {
95 s += format_value(tensor[n][m].data()[0], f);
97 if (n != tensor.cols() - 1)
103 if (m != tensor.rows()-1)
113 template<
class Tensor>
118 for (
bc::size_t m = 0; m < tensor.rows(); ++m) {
119 s += format_value(tensor[m].data()[0], f);
121 if(m!=tensor.rows()-1)
128 template<
class Tensor>
131 std::string value = format_value(tensor.data()[0], f);
137 template<
class Tensor,
int X>
142 for (
auto it = tensor.
begin(); it != tensor.
end(); ++it) {
143 if (it!= tensor.
begin())
148 if (it != tensor.
end() - 1)
const char indent_delim
Definition: print.h:25
Definition: constexpr_int.h:14
std::string to_string(const Tensor &tensor, features f, bc::traits::Integer< 2 >)
Definition: print.h:78
std::string to_string(int precision=8, bool pretty=true, bool sparse=false) const
Definition: tensor_utility.h:34
features(std::size_t precision_, bool pretty_=true, bool sparse_=true)
Definition: print.h:27
bool pretty
Definition: print.h:21
int indent_lvl
Definition: print.h:24
struct bc::oper::cmath_functions::Abs abs
class::::::Args static auto find(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:124
std::string bracket_wrap(const std::string &str) const
Definition: print.h:47
std::size_t precision
Definition: print.h:20
int size_t
Definition: common.h:283
std::string indent() const
Definition: print.h:40
features inc_indent() const
Definition: print.h:34
auto end() const
Definition: tensor_base.h:95
bool sparse
Definition: print.h:22
void copy(const Tensor_Base< Xpr > &rv)
Definition: tensor_utility.h:2
auto begin() const
Definition: tensor_base.h:94
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22