@@ -214,7 +214,7 @@ void IfOp::Print(pir::IrPrinter &printer) {
214214}
215215
216216void IfOp::VerifySig () {
217- VLOG (4 ) << " Start Verifying inputs, outputs and attributes for: IfOp." ;
217+ VLOG (6 ) << " Start Verifying inputs, outputs and attributes for: IfOp." ;
218218 auto input_size = num_operands ();
219219 PADDLE_ENFORCE_EQ (
220220 input_size,
@@ -243,8 +243,8 @@ void IfOp::VerifySig() {
243243}
244244
245245void IfOp::VerifyRegion () {
246- VLOG (4 ) << " Start Verifying sub regions for: IfOp." ;
247- VLOG (4 ) << " Start Verifying true branch." ;
246+ VLOG (6 ) << " Start Verifying sub regions for: IfOp." ;
247+ VLOG (6 ) << " Start Verifying true branch." ;
248248 PADDLE_ENFORCE_EQ (
249249 (*this )->region (0 ).size (),
250250 1u ,
@@ -267,7 +267,7 @@ void IfOp::VerifyRegion() {
267267 common::errors::PreconditionNotMet (
268268 " The size of last of true block op's input must be "
269269 " equal to IfOp's outputs num." ));
270- VLOG (4 ) << " Start Verifying false branch." ;
270+ VLOG (6 ) << " Start Verifying false branch." ;
271271 PADDLE_ENFORCE_EQ ((*this )->region (1 ).size (),
272272 1u ,
273273 common::errors::PreconditionNotMet (
@@ -545,7 +545,7 @@ void WhileOp::Print(pir::IrPrinter &printer) {
545545}
546546
547547void WhileOp::VerifySig () {
548- VLOG (4 ) << " Start Verifying inputs, outputs and attributes for: WhileOp." ;
548+ VLOG (6 ) << " Start Verifying inputs, outputs and attributes for: WhileOp." ;
549549 auto input_size = num_operands ();
550550 PADDLE_ENFORCE_GE (
551551 input_size,
@@ -1153,8 +1153,8 @@ OpInfoTuple AssertOp::GetOpInfo() {
11531153}
11541154
11551155void AssertOp::VerifySig () {
1156- VLOG (4 ) << " Start Verifying inputs, outputs and attributes for: AssertOp." ;
1157- VLOG (4 ) << " Verifying inputs:" ;
1156+ VLOG (6 ) << " Start Verifying inputs, outputs and attributes for: AssertOp." ;
1157+ VLOG (6 ) << " Verifying inputs:" ;
11581158 {
11591159 auto input_size = num_operands ();
11601160 PADDLE_ENFORCE_EQ (
@@ -1199,7 +1199,7 @@ void AssertOp::VerifySig() {
11991199 " Type validation failed for the 1th input." ));
12001200 }
12011201 }
1202- VLOG (4 ) << " Verifying attributes:" ;
1202+ VLOG (6 ) << " Verifying attributes:" ;
12031203 {
12041204 auto &attributes = this ->attributes ();
12051205 PADDLE_ENFORCE_GT (
@@ -1212,7 +1212,7 @@ void AssertOp::VerifySig() {
12121212 common::errors::InvalidArgument (
12131213 " Type of attribute: summarize is not pir::Int64Attribute." ));
12141214 }
1215- VLOG (4 ) << " Verifying outputs:" ;
1215+ VLOG (6 ) << " Verifying outputs:" ;
12161216 {
12171217 auto output_size = num_results ();
12181218 PADDLE_ENFORCE_EQ (
@@ -1222,7 +1222,7 @@ void AssertOp::VerifySig() {
12221222 " The size %d of outputs must be equal to 0." , output_size));
12231223 // Outputs num is 0, not need to check outputs type.
12241224 }
1225- VLOG (4 ) << " End Verifying for: AssertOp." ;
1225+ VLOG (6 ) << " End Verifying for: AssertOp." ;
12261226}
12271227
12281228void SelectInputOp::VerifySig () {
0 commit comments