Skip to content

Commit 0092ad3

Browse files
committed
delete unused log
1 parent 329a8c5 commit 0092ad3

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

paddle/fluid/inference/tensorrt/convert/concat_op.cc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,7 @@ class ConcatOpConverter : public OpConverter {
3030
framework::OpDesc op_desc(op, nullptr);
3131
// Declare inputs
3232
std::vector<nvinfer1::ITensor*> itensors;
33-
std::cout << "Concat op: " << std::endl;
3433
for (auto& input_name : op_desc.Input("X")) {
35-
std::cout << input_name << std::endl;
3634
itensors.push_back(engine_->GetITensor(input_name));
3735
}
3836
int axis = boost::get<int>(op_desc.GetAttr("axis"));

paddle/fluid/inference/tensorrt/convert/conv2d_op.cc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@ class Conv2dOpConverter : public OpConverter {
2626
<< "convert a fluid conv2d op to tensorrt conv layer without bias";
2727

2828
framework::OpDesc op_desc(op, nullptr);
29-
std::cout << "Conv op: " << std::endl;
30-
std::cout << op_desc.Input("Input").front() << std::endl;
31-
std::cout << op_desc.Output("Output").front() << std::endl;
3229
PADDLE_ENFORCE_EQ(op_desc.Input("Input").size(), 1);
3330
PADDLE_ENFORCE_EQ(op_desc.Input("Filter").size(), 1); // Y is a weight
3431
PADDLE_ENFORCE_EQ(op_desc.Output("Output").size(), 1);

0 commit comments

Comments
 (0)