Report Freq in additional benchmarks

PiperOrigin-RevId: 272021416
diff --git a/bench/f32-gemm.cc b/bench/f32-gemm.cc
index 190a2d9..8d5637f 100644
--- a/bench/f32-gemm.cc
+++ b/bench/f32-gemm.cc
@@ -17,19 +17,18 @@
 
 #include <cpuinfo.h>
 
-#include "bench/utils.h"
+#include <benchmark/benchmark.h>
+#include "tensorflow/lite/experimental/ruy/ruy.h"
 #include "bench/gemm.h"
+#include "bench/utils.h"
 #include <xnnpack/AlignedAllocator.h>
 #include <xnnpack/gemm.h>
-#include <xnnpack/packx.h>
 #include <xnnpack/pack.h>
+#include <xnnpack/packx.h>
 #include <xnnpack/params.h>
 #include <xnnpack/ppmm.h>
 #include <xnnpack/requantization.h>
 
-#include <benchmark/benchmark.h>
-#include "tensorflow/lite/experimental/ruy/ruy.h"
-
 
 static void GEMMBenchmark(benchmark::State& state,
   xnn_f32_gemm_ukernel_function gemm,