Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.

Commit bdb94de

Browse files
committed
clean code
1 parent 3bb434f commit bdb94de

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/operator/nn/pooling.cc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,6 @@ void PoolingComputeExCPU(const nnvm::NodeAttrs &attrs, const OpContext &ctx,
274274

275275
// Pooling does not currently support working with views
276276
if (inputs[0].IsView() || outputs[0].IsView()) {
277-
std::cout << "Fall back to Pooling backward pass..." << std::endl;
278277
FallBackCompute(PoolingCompute<cpu>, attrs, ctx, inputs, req, outputs);
279278
return;
280279
}
@@ -289,7 +288,6 @@ void PoolingComputeExCPU(const nnvm::NodeAttrs &attrs, const OpContext &ctx,
289288
MKLDNN_OPCHECK_RUN(PoolingCompute<cpu>, attrs, ctx, inputs, req, outputs);
290289
return;
291290
}
292-
std::cout << "Fall back to Pooling forward pass..." << std::endl;
293291
FallBackCompute(PoolingCompute<cpu>, attrs, ctx, inputs, req, outputs);
294292
}
295293

@@ -301,7 +299,6 @@ void PoolingGradComputeExCPU(const nnvm::NodeAttrs &attrs, const OpContext &ctx,
301299

302300
// Pooling does not currently support working with views
303301
if (inputs[0].IsView() || outputs[0].IsView()) {
304-
std::cout << "Fall back to Pooling backward pass..." << std::endl;
305302
FallBackCompute(PoolingGradCompute<cpu>, attrs, ctx, inputs, req, outputs);
306303
return;
307304
}
@@ -330,7 +327,6 @@ void PoolingGradComputeExCPU(const nnvm::NodeAttrs &attrs, const OpContext &ctx,
330327
outputs);
331328
return;
332329
}
333-
std::cout << "Fall back to Pooling backward pass..." << std::endl;
334330
FallBackCompute(PoolingGradCompute<cpu>, attrs, ctx, inputs, req, outputs);
335331
}
336332

0 commit comments

Comments
 (0)