Skip to content

Commit

Permalink
update 2.0.41 benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
wenshao committed Sep 17, 2023
1 parent 4631c83 commit de09ea2
Show file tree
Hide file tree
Showing 4 changed files with 1,492 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
public class GenReport {
public void gen() throws Exception {
File dir = new File("/Users/wenshao/Work/git/fastjson2/docs/benchmark/");
File file = new File(dir, "benchmark_2.0.40_raw.md");
File outFile = new File(dir, "benchmark_2.0.40.md");
File file = new File(dir, "benchmark_2.0.41_raw.md");
File outFile = new File(dir, "benchmark_2.0.41.md");

Map<String, BenchmarkResult> benchResults = new LinkedHashMap<>();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,17 @@

public class ReadResult {
public static void main(String[] args) throws Exception {
File outFile = new File("/Users/wenshao/Work/git/fastjson2/docs/benchmark/benchmark_2.0.40_raw.md");
File outFile = new File("/Users/wenshao/Work/git/fastjson2/docs/benchmark/benchmark_2.0.41_raw.md");
// File file = new File("/Users/wenshao/Downloads/result_2.0.25.out");

Map<String, String> files = new LinkedHashMap<>();
files.put("aliyun_ecs.c8i.large", "/Users/wenshao/Downloads/result_2.0.40_g8i.out");
files.put("aliyun_ecs.c8i.large", "/Users/wenshao/Downloads/result_2.0.41_g8i.out");
// files.put("aliyun_ecs.g7.large", "/Users/wenshao/Downloads/result_2.0.33_g7.out");
files.put("aliyun_ecs.c8y.large", "/Users/wenshao/Downloads/result_2.0.40_g8y.out");
// files.put("aws_ecs.c6g.large", "/Users/wenshao/Downloads/result_2.0.33_aws_c6g.out");
// files.put("aws_ecs.c7g.large", "/Users/wenshao/Downloads/result_2.0.33_aws_c7g.out");
// files.put("orangepi5p", "/Users/wenshao/Downloads/result_2.0.38_orangepi5.out");
files.put("aliyun_ecs.c8y.large", "/Users/wenshao/Downloads/result_2.0.41_g8y.out");
// files.put("aws_ecs.c6g.large", "/Users/wenshao/Downloads/result_2.0.41_aws_c6g.out");
// files.put("aws_ecs.c7g.large", "/Users/wenshao/Downloads/result_2.0.41_aws_c7g.out");
files.put("orangepi5p", "/Users/wenshao/Downloads/result_2.0.41_orangepi5.out");
// files.put("MacBookM1Pro", "/Users/wenshao/Downloads/result_2.0.41_applem1pro.out");

PrintStream out = new PrintStream(new FileOutputStream(outFile));
files.forEach((k, v) -> {
Expand Down
Loading

0 comments on commit de09ea2

Please sign in to comment.