diff --git a/benchmark/fft/fft_benchmark.cc b/benchmark/fft/fft_benchmark.cc index 1cbf8f7ad..01eab98ed 100644 --- a/benchmark/fft/fft_benchmark.cc +++ b/benchmark/fft/fft_benchmark.cc @@ -59,7 +59,7 @@ template void CheckResult(bool check_result, const PolyOrEvals& tachyon_result, const PolyOrEvals& vendor_result) { if (check_result) { - CHECK_EQ(tachyon_result, vendor_result) << "Results not matched"; + CHECK_EQ(tachyon_result, vendor_result) << "Results do not match"; } } diff --git a/benchmark/fft/fft_benchmark_gpu.cc b/benchmark/fft/fft_benchmark_gpu.cc index ea66e0924..094bd8594 100644 --- a/benchmark/fft/fft_benchmark_gpu.cc +++ b/benchmark/fft/fft_benchmark_gpu.cc @@ -79,7 +79,7 @@ void Run(const FFTConfig& config) { domain.get(), input, kShouldRecord, gpu_result); } if (config.check_results()) { - CHECK_EQ(cpu_result, gpu_result) << "Results not matched"; + CHECK_EQ(cpu_result, gpu_result) << "Results do not match"; } } diff --git a/benchmark/fft_batch/fft_batch_benchmark.cc b/benchmark/fft_batch/fft_batch_benchmark.cc index 1bdcc0a16..73606f9d7 100644 --- a/benchmark/fft_batch/fft_batch_benchmark.cc +++ b/benchmark/fft_batch/fft_batch_benchmark.cc @@ -26,7 +26,7 @@ void CheckResults(bool check_results, const math::RowMajorMatrix& tachyon_result, const math::RowMajorMatrix& vendor_result) { if (check_results) { - CHECK_EQ(tachyon_result, vendor_result) << "Results not matched"; + CHECK_EQ(tachyon_result, vendor_result) << "Results do not match"; } } diff --git a/benchmark/fri/fri_benchmark.cc b/benchmark/fri/fri_benchmark.cc index 563de3537..84e4cc164 100644 --- a/benchmark/fri/fri_benchmark.cc +++ b/benchmark/fri/fri_benchmark.cc @@ -39,7 +39,7 @@ template void CheckResult(bool check_results, const Result& tachyon_result, const Result& vendor_result) { if (check_results) { - CHECK_EQ(tachyon_result, vendor_result) << "Results not matched"; + CHECK_EQ(tachyon_result, vendor_result) << "Results do not match"; } } diff --git a/benchmark/msm/msm_benchmark.cc b/benchmark/msm/msm_benchmark.cc index 1144d46fd..b64855336 100644 --- a/benchmark/msm/msm_benchmark.cc +++ b/benchmark/msm/msm_benchmark.cc @@ -89,7 +89,7 @@ int RealMain(int argc, char** argv) { } if (config.check_results()) { - CHECK(results == results_vendor) << "Result not matched"; + CHECK(results == results_vendor) << "Results do not match"; } } diff --git a/benchmark/msm/msm_benchmark_gpu.cc b/benchmark/msm/msm_benchmark_gpu.cc index 2e4278d55..71d87863f 100644 --- a/benchmark/msm/msm_benchmark_gpu.cc +++ b/benchmark/msm/msm_benchmark_gpu.cc @@ -66,7 +66,7 @@ int RealMain(int argc, char** argv) { tachyon_bn254_g1_destroy_msm_gpu(msm_gpu); if (config.check_results()) { - CHECK(results_cpu == results_gpu) << "Result not matched"; + CHECK(results_cpu == results_gpu) << "Results do not match"; } reporter.Show(); diff --git a/benchmark/poseidon/poseidon_benchmark.cc b/benchmark/poseidon/poseidon_benchmark.cc index 76dab3108..b0966f7bb 100644 --- a/benchmark/poseidon/poseidon_benchmark.cc +++ b/benchmark/poseidon/poseidon_benchmark.cc @@ -47,7 +47,7 @@ int RealMain(int argc, char** argv) { runner.RunExternal(Vendor::Arkworks(), run_poseidon_arkworks); if (config.check_results()) { - CHECK_EQ(result, result_arkworks) << "Result not matched"; + CHECK_EQ(result, result_arkworks) << "Results do not match"; } reporter.AddAverageAsLastColumn();