This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- master station using pure sql, rather than python | |
-- we have an initial table of tiplocs | |
create table tmp_tiploc | |
( | |
tiploc TEXT NOT NULL | |
); | |
insert into tmp_tiploc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(** Test bigarray casting using https://discuss.ocaml.org/t/cast-bigarray-kind/8469/8 *) | |
let arr1_i = Bigarray.(Array1.init Int C_layout 512 (fun i -> i)) | |
let _ = | |
Printf.printf "Bigarray int size in bytes: %d\n" Bigarray.(kind_size_in_bytes int); | |
assert(Bigarray.(kind_size_in_bytes int) = 8) (* for 64bit arch *) | |
let _arr2_c = | |
Ctypes.bigarray_start Ctypes.array1 arr1_i |> fun (pi:int Ctypes.ptr) -> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
make -k mk_trace_stats | |
dune exec -- ./irmin/bench/irmin-pack/trace_stats.exe pp -f master,master_stat_summary.json -f lite,lite_stat_summary.json | |
-- setups -- | |
| master | lite | |
Hostname | pc1156-nvmp3 | pc1156-nvmp3 | |
Word Size | 64 bits | 64 bits | |
Start Time | 2021/09/08 08:40:55 (GMT) | 2021/09/07 18:56:49 (GMT) | |
Inode Config | mls:32 bf:32 sh:256 | mls:32 bf:32 sh:256 | |
Store Type | pack | pack | |
Path Conversion | none | none |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- setups -- | |
| master | lite | |
Hostname | pc1156-nvmp3 | pc1156-nvmp3 | |
Word Size | 64 bits | 64 bits | |
Start Time | 2021/08/24 13:09:22 (GMT) | 2021/09/07 10:45:35 (GMT) | |
Inode Config | mls:32 bf:32 sh:256 | mls:32 bf:32 sh:256 | |
Store Type | pack | pack | |
Path Conversion | none | none | |
| master | lite |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+000us application Will check commit hashes against reference. | |
Merging 400001 entries | |
Merge took 17.000000 | |
Merging 400001 entries | |
Merge took 20.000000 | |
Merging 400001 entries | |
Merge took 22.000000 | |
Merging 400001 entries | |
Merge took 26.000000 | |
Merging 400001 entries |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dune exec -- ./irmin/bench/irmin-pack/trace_stats.exe pp -f master,master_stat_summary.json -f mmap,mmap_stat_summary.json | |
-- setups -- | |
| master | mmap | |
Hostname | pc1156-nvmp3 | pc1156-nvmp3 | |
Word Size | 64 bits | 64 bits | |
Start Time | 2021/08/24 11:55:23 (GMT) | 2021/08/24 11:48:41 (GMT) | |
Inode Config | mls:32 bf:32 sh:256 | mls:32 bf:32 sh:256 | |
Store Type | pack | pack | |
Path Conversion | none | none |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
First ** BENCH entry is for plain irmin master; second is with mmap | |
** BENCH irmin master tom_m <2021-08-24 Tue 11:16> | |
--- | |
-*- mode: compilation; default-directory: "/tmp/l/github/irmin/" -*- | |
Compilation started at Tue Aug 24 11:16:26 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-*- mode: compilation; default-directory: "/tmp/l/github/index/" -*- | |
Compilation started at Mon Aug 23 14:49:14 | |
make -k bench | |
{ | |
"config": { | |
"key_size": 32, | |
"value_size": 13, | |
"nb_entries": 10000000, | |
"log_size": 500000, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-*- mode: compilation; default-directory: "/tmp/l/github/index/" -*- | |
Compilation started at Mon Aug 23 14:43:34 | |
make -k bench | |
{ | |
"config": { | |
"key_size": 32, | |
"value_size": 13, | |
"nb_entries": 10000000, | |
"log_size": 500000, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-*- mode: compilation; default-directory: "/tmp/l/github/index/" -*- | |
Compilation started at Mon Aug 23 12:20:01 | |
make -k bench_as_mmap_wip | |
+21107403us [WARNING] index_unix Semaphore merge { id=8 } was blocked for 1.122s | |
+23154010us [WARNING] index_unix Semaphore merge { id=9 } was blocked for 1.226s | |
+25153913us [WARNING] index_unix Semaphore merge { id=10 } was blocked for 1.289s | |
+27109163us [WARNING] index_unix Semaphore merge { id=11 } was blocked for 1.384s | |
+29158370us [WARNING] index_unix Semaphore merge { id=12 } was blocked for 1.48s | |
+31303899us [WARNING] index_unix Semaphore merge { id=13 } was blocked for 1.572s |
NewerOlder