File: bench.ml

package info (click to toggle)
opam 2.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,500 kB
  • sloc: ml: 61,414; sh: 2,963; ansic: 1,147; makefile: 479; sed: 6; csh: 1
file content (327 lines) | stat: -rw-r--r-- 10,542 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
let fmt = Printf.sprintf

let time_cmd ~exit cmd =
  let cmd = cmd ^ " 2> /dev/null > /dev/null" in
  let before = Unix.gettimeofday () in
  let code = Sys.command cmd in
  let timer = Unix.gettimeofday () -. before in
  if Int.equal code exit then
    timer
  else
    failwith (fmt "Command %S exited with error code %d" cmd code)

let () =
  let bin = "./opam" in
  let bin_size = (Unix.stat bin).st_size in
  let launch cmd  =
    let code = Sys.command cmd in
    if not (Int.equal code 0) then
      failwith (fmt "Preliminary command %S exited with error code %d" cmd code)
  in
  let time_misspelled_cmd =
    (* NOTE: https://github.com/ocaml/opam/issues/5479 *)
    Gc.compact ();
    time_cmd ~exit:2 (fmt "%s sitch" bin)
  in
  let time_install_cmd =
    (* NOTE: https://github.com/ocaml/opam/issues/5502 *)
    Gc.compact ();
    launch "opam switch create one --empty";
    time_cmd ~exit:0 (fmt "%s install magic-trace -y --fake --sw one" bin)
  in
  let time_install_cmd_w_invariant =
    (* NOTE: https://github.com/ocaml/opam/issues/5502 *)
    Gc.compact ();
    launch "opam switch create two --empty";
    launch "opam switch set-invariant core -n --sw two";
    time_cmd ~exit:0 (fmt "%s install magic-trace -y --fake --sw two" bin)
  in
  let time_OpamSystem_read_100 =
    (* NOTE: https://github.com/ocaml/opam/pull/5896 *)
    Gc.compact ();
    let files =
      let ic = Stdlib.open_in_bin "/home/opam/all-opam-files" in
      let rec loop files =
        match Stdlib.input_line ic with
        | file -> loop (file :: files)
        | exception End_of_file -> files
      in
      loop []
    in
    let n = 100 in
    let l = List.init n (fun _ ->
        let before = Unix.gettimeofday () in
        List.iter (fun file -> ignore (OpamSystem.read file)) files;
        Unix.gettimeofday () -. before)
    in
    List.fold_left (+.) 0.0 l /. float_of_int n
  in
  let time_deps_only_installed_pkg =
    (* NOTE: https://github.com/ocaml/opam/pull/5908 *)
    Gc.compact ();
    launch (fmt "%s switch create three --fake ocaml-base-compiler.4.14.0" bin);
    launch (fmt "%s install -y --fake core.v0.15.0" bin);
    time_cmd ~exit:0 (fmt "%s install --show --deps-only core.v0.15.0" bin)
  in
  let time_OpamPackage_Version_compare_100 =
    (* NOTE: https://github.com/ocaml/opam/pull/5518 *)
    Gc.compact ();
    let ic = Stdlib.open_in_bin "/home/opam/all-packages" in
    let pkgs =
      let rec loop pkgs =
        match Stdlib.input_line ic with
        | pkg -> loop (OpamPackage.version (OpamPackage.of_string pkg) :: pkgs)
        | exception End_of_file -> pkgs
      in
      loop []
    in
    let n = 100 in
    let l = List.init n (fun _ ->
        let before = Unix.gettimeofday () in
        let _ = List.stable_sort OpamPackage.Version.compare pkgs in
        Unix.gettimeofday () -. before)
    in
    List.fold_left (+.) 0.0 l /. float_of_int n
  in
  let time_install_check_installed =
    Gc.compact ();
    launch (fmt "%s switch create four --fake ocaml-base-compiler.4.14.0" bin);
    launch (fmt "%s install -y --fake core.v0.15.0" bin);
    time_cmd ~exit:0 (fmt "%s install --check core.v0.15.0" bin)
  in
  let time_install_check_not_installed =
    Gc.compact ();
    launch (fmt "%s switch create five --fake ocaml-base-compiler.4.14.0" bin);
    time_cmd ~exit:1 (fmt "%s install --check core.v0.15.0" bin)
  in
  let time_list_installed_noninstalled_packages =
    Gc.compact ();
    launch (fmt "%s switch create six --empty" bin);
    time_cmd ~exit:0 (fmt "%s list --installed --short --safe --color=never ocp-indent ocp-index merlin" bin)
  in
  launch (fmt "%s switch create seven --empty" bin);
  launch (fmt "%s install -y --fake dune" bin);
  let time_show_installed =
    Gc.compact ();
    time_cmd ~exit:0 (fmt "%s show dune" bin)
  in
  let time_show_with_depexts =
    Gc.compact ();
    time_cmd ~exit:0 (fmt "%s show conf-llvm" bin)
  in
  let time_show_raw =
    Gc.compact ();
    time_cmd ~exit:0 (fmt "%s show --raw conf-llvm" bin)
  in
  let time_show_precise =
    Gc.compact ();
    time_cmd ~exit:0 (fmt "%s show --raw conf-llvm.14.0.6" bin)
  in
  let time_OpamStd_String_split_10 =
    Gc.compact ();
    let lines =
      let ic = Stdlib.open_in_bin "/home/opam/all-opam-content" in
      let rec loop files =
        match Stdlib.input_line ic with
        | file -> loop (file :: files)
        | exception End_of_file -> files
      in
      loop []
    in
    let n = 10 in
    let l = List.init n (fun _ ->
        let before = Unix.gettimeofday () in
        List.iter (fun line -> ignore (OpamStd.String.split line ' ')) lines;
        Unix.gettimeofday () -. before)
    in
    List.fold_left (+.) 0.0 l /. float_of_int n
  in
  let init_root tmp_root_dir repo =
    launch (fmt "rm -rf %s" tmp_root_dir);
    launch (fmt "mkdir -p %s" tmp_root_dir);
    launch (fmt "OPAMROOT=%s %s init --bare -n --disable-sandboxing %s" tmp_root_dir bin repo);
  in
  let time_update_no_diff_local =
    Gc.compact ();
    init_root "/tmp/opam-update-test-no-diff" "file:///rep/opam-repository";
    time_cmd ~exit:0 (fmt "OPAMROOT=/tmp/opam-update-test-no-diff %s update" bin)
  in
  let time_update_no_diff_git =
    Gc.compact ();
    init_root "/tmp/opam-update-test-no-diff-git" "git+file:///rep/opam-repository.git";
    time_cmd ~exit:0 (fmt "OPAMROOT=/tmp/opam-update-test-no-diff-git %s update" bin)
  in
  let time_update_small_diff_local =
    Gc.compact ();
    init_root "/tmp/opam-update-test-small-diff" "file:///rep/opam-repository-small-diff";
    launch (fmt "git -C /rep/opam-repository-small-diff checkout $OPAMREPOSHAPHASE1");
    time_cmd ~exit:0 (fmt "OPAMROOT=/tmp/opam-update-test-small-diff %s update" bin)
  in
  let time_update_small_diff_git =
    Gc.compact ();
    init_root "/tmp/opam-update-test-small-diff-git" "git+file:///rep/opam-repository-small-diff.git";
    launch (fmt "git -C /rep/opam-repository-small-diff.git update-ref HEAD $OPAMREPOSHAPHASE1");
    time_cmd ~exit:0 (fmt "OPAMROOT=/tmp/opam-update-test-small-diff-git %s update" bin)
  in
  let time_update_large_diff_local =
    Gc.compact ();
    init_root "/tmp/opam-update-test-large-diff" "file:///rep/opam-repository";
    (* NOTE: this changes the main repository content to a newer commit
       (currently defined in bench.Dockerfile as $OPAMREPOSHA). This will impact
       any benchmarks defined in the future that are using /rep/opam-repository. *)
    launch (fmt "git -C /rep/opam-repository checkout $OPAMREPOSHAPHASE1");
    time_cmd ~exit:0 (fmt "OPAMROOT=/tmp/opam-update-test-large-diff %s update" bin)
  in
  let time_update_large_diff_git =
    Gc.compact ();
    init_root "/tmp/opam-update-test-large-diff-git" "git+file:///rep/opam-repository.git";
    launch (fmt "git -C /rep/opam-repository.git update-ref HEAD $OPAMREPOSHAPHASE1");
    time_cmd ~exit:0 (fmt "OPAMROOT=/tmp/opam-update-test-large-diff-git %s update" bin)
  in
  let json = fmt {|{
  "results": [
    {
      "name": "Timings",
      "metrics": [
        {
          "name": "Misspelled command",
          "value": %f,
          "units": "secs"
        },
        {
          "name": "Fake install with no invariant",
          "value": %f,
          "units": "secs"
        },
        {
          "name": "Fake install with invariant",
          "value": %f,
          "units": "secs"
        },
        {
          "name": "OpamSystem.read amortised over 100 runs",
          "value": %f,
          "units": "secs"
        },
        {
          "name": "Deps-only install of an already installed package",
          "value": %f,
          "units": "secs"
        },
        {
          "name": "OpamPackage.Version.compare amortised over 100 runs",
          "value": %f,
          "units": "secs"
        },
        {
          "name": "opam install --check on an already installed package",
          "value": %f,
          "units": "secs"
        },
        {
          "name": "opam install --check on a non-installed package",
          "value": %f,
          "units": "secs"
        },
        {
          "name": "opam list --installed on non-installed packages",
          "value": %f,
          "units": "secs"
        },
        {
          "name": "opam show of an installed package",
          "value": %f,
          "units": "secs"
        },
        {
          "name": "opam show with depexts",
          "value": %f,
          "units": "secs"
        },
        {
          "name": "opam show --raw pkgname",
          "value": %f,
          "units": "secs"
        },
        {
          "name": "opam show --raw pkgname.version",
          "value": %f,
          "units": "secs"
        },
        {
          "name": "OpamStd.String.split amortised over 10 runs",
          "value": %f,
          "units": "secs"
        }
      ]
    },
    {
      "name": "Update Benchmarks",
      "metrics": [
        {
          "name": "opam update - no diff (local repo)",
          "value": %f,
          "units": "secs"
        },
        {
          "name": "opam update - no diff (git repo)",
          "value": %f,
          "units": "secs"
        },
        {
          "name": "opam update - small diff (local repo)",
          "value": %f,
          "units": "secs"
        },
        {
          "name": "opam update - small diff (git repo)",
          "value": %f,
          "units": "secs"
        },
        {
          "name": "opam update - large diff (local repo)",
          "value": %f,
          "units": "secs"
        },
        {
          "name": "opam update - large diff (git repo)",
          "value": %f,
          "units": "secs"
        }
      ]
    },
    {
      "name": "Misc",
      "metrics": [
        {
          "name": "Size of opam.exe",
          "value": %d,
          "units": "bytes"
        }
      ]
    }
  ]
}|}
      time_misspelled_cmd
      time_install_cmd
      time_install_cmd_w_invariant
      time_OpamSystem_read_100
      time_deps_only_installed_pkg
      time_OpamPackage_Version_compare_100
      time_install_check_installed
      time_install_check_not_installed
      time_list_installed_noninstalled_packages
      time_show_installed
      time_show_with_depexts
      time_show_raw
      time_show_precise
      time_OpamStd_String_split_10
      time_update_no_diff_local
      time_update_no_diff_git
      time_update_small_diff_local
      time_update_small_diff_git
      time_update_large_diff_local
      time_update_large_diff_git
      bin_size
  in
  print_endline json