Noddy speed test for Squeue; alternative array impl

This commit is contained in:
Tony Garnock-Jones 2012-05-03 10:08:30 -04:00
parent 784304ed5d
commit ca3bc78501
2 changed files with 133 additions and 0 deletions

81
squeue_arrays.ml Normal file
View File

@ -0,0 +1,81 @@
(* Copyright 2012 Tony Garnock-Jones <tonygarnockjones@gmail.com>. *)
(* This file is part of Hop. *)
(* Hop is free software: you can redistribute it and/or modify it *)
(* under the terms of the GNU General Public License as published by the *)
(* Free Software Foundation, either version 3 of the License, or (at your *)
(* option) any later version. *)
(* Hop is distributed in the hope that it will be useful, but *)
(* WITHOUT ANY WARRANTY; without even the implied warranty of *)
(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *)
(* General Public License for more details. *)
(* You should have received a copy of the GNU General Public License *)
(* along with Hop. If not, see <http://www.gnu.org/licenses/>. *)
(* Shared queue *)
type 'a t = {
mtx: Mutex.t;
mutable capacity: int;
nonfull: Condition.t;
nonempty: Condition.t;
queue: 'a array;
mutable read_pointer: int;
mutable write_pointer: int;
}
let create n = {
mtx = Mutex.create ();
capacity = n;
nonfull = Condition.create ();
nonempty = Condition.create ();
queue = Array.make n (Obj.magic None);
read_pointer = 0;
write_pointer = 0
}
let approx_capacity q = q.capacity
let add v q =
Mutex.lock q.mtx;
while q.capacity < 1 do
Condition.wait q.nonfull q.mtx
done;
q.capacity <- q.capacity - 1;
Array.set q.queue q.write_pointer v;
q.write_pointer <- (q.write_pointer + 1) mod (Array.length q.queue);
Condition.signal q.nonempty;
Mutex.unlock q.mtx
let _locked_empty q =
q.capacity = (Array.length q.queue)
let pop q =
Mutex.lock q.mtx;
while _locked_empty q do
Condition.wait q.nonempty q.mtx
done;
let result = Array.get q.queue q.read_pointer in
q.read_pointer <- (q.read_pointer + 1) mod (Array.length q.queue);
q.capacity <- q.capacity + 1;
Condition.signal q.nonfull;
Mutex.unlock q.mtx;
result
let peek q =
Mutex.lock q.mtx;
let result =
if _locked_empty q
then None
else
(let result = Array.get q.queue q.read_pointer in
q.read_pointer <- (q.read_pointer + 1) mod (Array.length q.queue);
q.capacity <- q.capacity + 1;
Condition.signal q.nonfull;
Some result)
in
Mutex.unlock q.mtx;
result

52
squeue_speed.ml Normal file
View File

@ -0,0 +1,52 @@
(* Copyright 2012 Tony Garnock-Jones <tonygarnockjones@gmail.com>. *)
(* This file is part of Hop. *)
(* Hop is free software: you can redistribute it and/or modify it *)
(* under the terms of the GNU General Public License as published by the *)
(* Free Software Foundation, either version 3 of the License, or (at your *)
(* option) any later version. *)
(* Hop is distributed in the hope that it will be useful, but *)
(* WITHOUT ANY WARRANTY; without even the implied warranty of *)
(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *)
(* General Public License for more details. *)
(* You should have received a copy of the GNU General Public License *)
(* along with Hop. If not, see <http://www.gnu.org/licenses/>. *)
open Sexp
let nmessages = 500000
let receiver_done = Squeue.create 1
let receiver ch =
let count = ref 0 in
while !count < nmessages do
ignore (Squeue.pop ch);
count := !count + 1
done;
Log.info "done" [];
Squeue.add () receiver_done
let sender () =
let ch = Squeue.create 1000 in
ignore (Util.create_thread "Speed test receiver" None receiver ch);
(try
let starttime = Unix.gettimeofday () in
let count = ref 0 in
while !count < nmessages do
Squeue.add () ch;
count := !count + 1
done;
let stoptime = Unix.gettimeofday () in
let delta = stoptime -. starttime in
Log.info (Printf.sprintf "Speedtest took %d ms (%d Hz)"
(int_of_float (delta *. 1000.0))
(int_of_float ((float_of_int nmessages) /. delta))) []
with exn -> Log.error "Uncaught exception in speedtest" [Str (Printexc.to_string exn)])
let _ =
sender ();
Squeue.pop receiver_done