@@ -45,12 +45,8 @@ constexpr auto analyze<PrecompileId::ecpairing> = ecpairing_analyze;
4545template <>
4646constexpr auto analyze<PrecompileId::point_evaluation> = point_evaluation_analyze;
4747template <>
48- constexpr auto analyze<PrecompileId::bls12_g1mul> = bls12_g1mul_analyze;
49- template <>
5048constexpr auto analyze<PrecompileId::bls12_g1msm> = bls12_g1msm_analyze;
5149template <>
52- constexpr auto analyze<PrecompileId::bls12_g2mul> = bls12_g2mul_analyze;
53- template <>
5450constexpr auto analyze<PrecompileId::bls12_g2msm> = bls12_g2msm_analyze;
5551
5652template <PrecompileId>
@@ -177,10 +173,6 @@ const inline std::array inputs<PrecompileId::point_evaluation>{
177173 " 01ff83fbe4488061b695d9e4632e9ab23c5b9dfb046241fac921659c2e3b6a4e5e88a0c20ef27ae5dea6e83a748115df152b207362c022a43c8ebbfbec73ea2a2b38376a1de4ed9abd35175ac422af7df2c6ddf1503979964b1d217747c108978969cc0fcbd47dba8b1e3cbba16920f3fc694fadbf203b55aa66aaf138a38ace946a7ccddc20f45d796cd60268df8a2487d06c11cdc50247c580c5dd25f6fb486053b73868038cb92c2ae6d429a7bde850177f31c9fde00ca824c8c59cd4ef49" _hex,
178174};
179175
180- template <>
181- const inline std::array inputs<PrecompileId::bls12_g1mul>{generate_g1_mul_input ()};
182- template <>
183- const inline std::array inputs<PrecompileId::bls12_g2mul>{generate_g2_mul_input ()};
184176template <>
185177const inline std::array inputs<PrecompileId::bls12_g1msm>{generate_g1_msm_input (256 )};
186178template <>
@@ -363,13 +355,6 @@ constexpr auto evmone_blst = point_evaluation_execute;
363355BENCHMARK_TEMPLATE (precompile, PrecompileId::point_evaluation, evmone_blst);
364356} // namespace bench_kzg
365357
366- namespace bench_mul_g1
367- {
368- constexpr auto evmone_blst = bls12_g1mul_execute;
369- BENCHMARK_TEMPLATE (precompile, PrecompileId::bls12_g1mul, evmone_blst)
370- ->Unit (benchmark::TimeUnit::kMicrosecond );
371- } // namespace bench_mul_g1
372-
373358namespace bench_msm_g1
374359{
375360constexpr auto evmone_blst = bls12_g1msm_execute;
@@ -379,14 +364,6 @@ BENCHMARK_TEMPLATE(precompile, PrecompileId::bls12_g1msm, evmone_blst)
379364 ->Unit(benchmark::TimeUnit::kMicrosecond );
380365} // namespace bench_msm_g1
381366
382- namespace bench_mul_g2
383- {
384- constexpr auto evmone_blst = bls12_g2mul_execute;
385- BENCHMARK_TEMPLATE (precompile, PrecompileId::bls12_g2mul, evmone_blst)
386- // ->Complexity(benchmark::oN)
387- ->Unit (benchmark::TimeUnit::kMicrosecond );
388- } // namespace bench_mul_g2
389-
390367namespace bench_msm_g2
391368{
392369constexpr auto evmone_blst = bls12_g2msm_execute;
0 commit comments