Skip to content

Commit 7462692

Browse files
author
xuwei06
committed
Formatted by pre-commit
Change-Id: I2b58c8d854aa31096a6b6e49c1c120f7acec622b
1 parent bcd280d commit 7462692

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

paddle/gserver/layers/ConvProjection.cpp

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -131,11 +131,9 @@ void ConvProjection::reshape(int batchSize) {
131131
size_t width = calOutputSize();
132132
CHECK_EQ(width, out_->value->getWidth());
133133
CHECK_EQ(channels_ * imageH_ * imageW_, in_->value->getWidth())
134-
<< "Wrong input size for convolution"
135-
<< " channels=" << channels_
136-
<< " imageH=" << imageH_
137-
<< " imageW=" << imageW_
138-
<< " inputSize=" << in_->value->getWidth();
134+
<< "Wrong input size for convolution"
135+
<< " channels=" << channels_ << " imageH=" << imageH_
136+
<< " imageW=" << imageW_ << " inputSize=" << in_->value->getWidth();
139137

140138
isSelectAlgo_ = (batchSize == batchNum_);
141139
batchNum_ = batchSize;

0 commit comments

Comments
 (0)