Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
codeamic committed Mar 31, 2022
1 parent e8eda9e commit 5ec897e
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ RAM housed at IITM.
The `sequential.json` file may be filtered based on the tag. For example,

```bash
$ TAG='"macro_bench"' make run_config_filtered.json
$ TAG='"macro_bench"' make sequential_filtered.json
```

filters the `sequential.json` file to only contain the benchmarks tagged as
Expand Down
8 changes: 4 additions & 4 deletions ocaml-versions/custom.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
{
"url": "https://github.com/ocaml/ocaml/archive/trunk.tar.gz",
"tag": "macro_bench",
"config_json": "run_config_filtered.json",
"config_json": "sequential_filtered.json",
"name": "5.0.0+trunk+sequential",
"expiry": "2100-01-01"
},
{
"url": "https://github.com/ocaml/ocaml/archive/b73cbbea4bc40ffd26a459d594a39b99cec4273d.zip",
"tag": "macro_bench",
"config_json": "run_config_filtered.json",
"config_json": "sequential_filtered.json",
"name": "5.0.0+stable+sequential",
"expiry": "2100-01-01"
},
Expand All @@ -30,8 +30,8 @@
{
"url": "https://github.com/sadiqj/ocaml/archive/refs/heads/eventring-pr.zip",
"tag": "run_in_ci",
"config_json": "run_config_filtered.json",
"config_json": "sequential_filtered.json",
"name": "5.0.0+trunk+sadiqj+pr10964",
"expiry": "2022-02-25"
}
]
]
4 changes: 2 additions & 2 deletions ocaml-versions/custom_navajo.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
"url": "https://github.com/ocaml/ocaml/archive/trunk.tar.gz",
"tag": "macro_bench",
"config_json": "run_config_filtered.json",
"config_json": "sequential_filtered.json",
"name": "5.0.0+trunk+sequential",
"expiry": "2100-01-01"
},
Expand All @@ -16,7 +16,7 @@
{
"url": "https://github.com/gadmm/ocaml/archive/refs/heads/multicore_async_actions.zip",
"tag": "macro_bench",
"config_json": "run_config_filtered.json",
"config_json": "sequential_filtered.json",
"name": "5.0.0+trunk+sequential+gadmm+pr11057",
"expiry": "2022-03-20"
},
Expand Down
4 changes: 2 additions & 2 deletions ocaml-versions/custom_turing.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
"url": "https://github.com/ocaml/ocaml/archive/trunk.tar.gz",
"tag": "macro_bench",
"config_json": "run_config_filtered.json",
"config_json": "sequential_filtered.json",
"name": "5.0.0+trunk+sequential",
"expiry": "2100-01-01"
},
Expand All @@ -16,7 +16,7 @@
{
"url": "https://github.com/gadmm/ocaml/archive/refs/heads/multicore_async_actions.zip",
"tag": "macro_bench",
"config_json": "run_config_filtered.json",
"config_json": "sequential_filtered.json",
"name": "5.0.0+trunk+sequential+gadmm+pr11057",
"expiry": "2022-03-20"
},
Expand Down
2 changes: 1 addition & 1 deletion run_all_custom.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ while [ $i -lt ${COUNT} ]; do
CONFIG_TAG=`jq -r '.['$i'].tag // "macro_bench"' "${CUSTOM_FILE}"`

if [ $j -eq 0 ]; then
CONFIG_RUN_JSON="run_config_filtered.json"
CONFIG_RUN_JSON="sequential_filtered.json"
CONFIG_NAME="${CONFIG_NAME}+sequential"
else
CONFIG_NAME="${CONFIG_NAME}+parallel"
Expand Down
4 changes: 2 additions & 2 deletions run_all_serial.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash

TAG='"macro_bench"' make run_config_filtered.json
TAG='"macro_bench"' make sequential_filtered.json

USE_SYS_DUNE_HACK=1 RUN_CONFIG_JSON=run_config_filtered.json make ocaml-versions/5.0.0+stable.bench
USE_SYS_DUNE_HACK=1 RUN_CONFIG_JSON=sequential_filtered.json make ocaml-versions/5.0.0+stable.bench

0 comments on commit 5ec897e

Please sign in to comment.