@@ -157,9 +157,6 @@ impl<E: ExtensionField, PCS: PolynomialCommitmentScheme<E>> ZKVMProver<E, PCS> {
157157 cs. w_expressions. len( ) ,
158158 cs. lk_expressions. len( ) ,
159159 ) ;
160- for lk_s in & cs. lk_expressions_namespace_map {
161- tracing:: debug!( "opcode circuit {}: {}" , circuit_name, lk_s) ;
162- }
163160 let opcode_proof = self . create_opcode_proof (
164161 circuit_name,
165162 & self . pk . pp ,
@@ -613,10 +610,9 @@ impl<E: ExtensionField, PCS: PolynomialCommitmentScheme<E>> ZKVMProver<E, PCS> {
613610 let pcs_open_span = entered_span ! ( "pcs_open" , profiling_3 = true ) ;
614611 let opening_dur = std:: time:: Instant :: now ( ) ;
615612 tracing:: debug!(
616- "[opcode {}]: build opening proof for {} polys at {:?} " ,
613+ "[opcode {}]: build opening proof for {} polys" ,
617614 name,
618- witnesses. len( ) ,
619- input_open_point
615+ witnesses. len( )
620616 ) ;
621617 let wits_opening_proof = PCS :: simple_batch_open (
622618 pp,
@@ -1051,7 +1047,7 @@ impl<E: ExtensionField, PCS: PolynomialCommitmentScheme<E>> ZKVMProver<E, PCS> {
10511047 // TODO implement mechanism to skip commitment
10521048
10531049 let pcs_opening = entered_span ! ( "pcs_opening" ) ;
1054- let ( fixed_opening_proof, fixed_commit ) = if !fixed. is_empty ( ) {
1050+ let ( fixed_opening_proof, _fixed_commit ) = if !fixed. is_empty ( ) {
10551051 (
10561052 Some (
10571053 PCS :: simple_batch_open (
@@ -1073,12 +1069,9 @@ impl<E: ExtensionField, PCS: PolynomialCommitmentScheme<E>> ZKVMProver<E, PCS> {
10731069 } ;
10741070
10751071 tracing:: debug!(
1076- "[table {}] build opening proof for {} fixed polys at {:?}: values = {:?}, commit = {:?} " ,
1072+ "[table {}] build opening proof for {} fixed polys" ,
10771073 name,
1078- fixed. len( ) ,
1079- input_open_point,
1080- fixed_in_evals,
1081- fixed_commit,
1074+ fixed. len( )
10821075 ) ;
10831076 let wits_opening_proof = PCS :: simple_batch_open (
10841077 pp,
@@ -1092,12 +1085,9 @@ impl<E: ExtensionField, PCS: PolynomialCommitmentScheme<E>> ZKVMProver<E, PCS> {
10921085 exit_span ! ( pcs_opening) ;
10931086 let wits_commit = PCS :: get_pure_commitment ( & wits_commit) ;
10941087 tracing:: debug!(
1095- "[table {}] build opening proof for {} polys at {:?}: values = {:?}, commit = {:?} " ,
1088+ "[table {}] build opening proof for {} polys" ,
10961089 name,
10971090 witnesses. len( ) ,
1098- input_open_point,
1099- wits_in_evals,
1100- wits_commit,
11011091 ) ;
11021092
11031093 Ok ( (
@@ -1249,7 +1239,6 @@ impl TowerProver {
12491239 virtual_polys. add_mle_list ( vec ! [ & eq, & q1, & q2] , * alpha_denominator) ;
12501240 }
12511241 }
1252- tracing:: debug!( "generated tower proof at round {}/{}" , round, max_round_index) ;
12531242
12541243 let wrap_batch_span = entered_span ! ( "wrap_batch" ) ;
12551244 // NOTE: at the time of adding this span, visualizing it with the flamegraph layer
0 commit comments