aboutsummaryrefslogtreecommitdiff
path: root/tests/TypePrinter.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/TypePrinter.h')
-rw-r--r--tests/TypePrinter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/TypePrinter.h b/tests/TypePrinter.h
index 394ee9d87c..c207c1d634 100644
--- a/tests/TypePrinter.h
+++ b/tests/TypePrinter.h
@@ -360,7 +360,7 @@ inline std::string to_string(const PoolingType &type)
/** Formatted output of @ref PoolingLayerInfo. */
inline ::std::ostream &operator<<(::std::ostream &os, const PoolingLayerInfo &info)
{
- os << info.pool_type();
+ os << info.pool_type() << ";" << info.pool_size() << ";" << info.pad_stride_info();
return os;
}