/mobile Handheld Friendly website
x64 Ubuntu : Intel® Q6600® quad-core |
Each table row shows performance measurements for this OCaml program with a particular command-line input value N.
| N | CPU secs | Elapsed secs | Memory KB | Code B | ≈ CPU Load |
|---|---|---|---|---|---|
| 250,000 | 1.05 | 0.49 | 28,540 | 1205 | 26% 29% 72% 96% |
| 2,500,000 | 9.13 | 3.84 | 44,044 | 1205 | 38% 79% 28% 93% |
| 25,000,000 | 85.15 | 36.74 | 437,928 | 1205 | 32% 31% 81% 88% |
Read the ↓ make, command line, and program output logs to see how this program was run.
Read k-nucleotide benchmark to see what this program should do.
The OCaml native-code compiler, version 4.00.1
(* The Computer Language Benchmarks Game * http://benchmarksgame.alioth.debian.org/ * * contributed by Troestler Christophe * modified by Mauricio Fernandez *) module C(S : sig val k : int val dna : string end) = struct let dna, k = S.dna, S.k module K = struct type t = int let equal k1 k2 = let rec cmp n ka kb = if n = 0 then true else if dna.[ka] = dna.[kb] then cmp (n - 1) (ka + 1) (kb + 1) else false in cmp k k1 k2 let hash n = let h = ref 0 in for i = n to n + k - 1 do h := !h * 5 + Char.code dna.[i] done; !h end let c = 0x40000 include Hashtbl.Make(K) let h = create c let count () = for i = 0 to String.length dna - k - 1 do try incr (find h i) with Not_found -> add h i (ref 1) done let compare_freq ((k1:string),(f1:float)) (k2, f2) = if f1 > f2 then -1 else if f1 < f2 then 1 else String.compare k1 k2 let write_frequencies () = count (); let tot = float(fold (fun _ n t -> !n + t) h 0) in let frq = fold (fun off n l -> (String.sub dna off k, 100. *. float !n /. tot) :: l) h [] in let frq = List.sort compare_freq frq in String.concat "" (List.map (fun (k,f) -> Printf.sprintf "%s %.3f\n" k f) frq) let write_count seq = assert (String.length seq = k); count (); String.blit seq 0 dna 0 k; Printf.sprintf "%d\t%s" (try !(find h 0) with Not_found -> 0) seq end (* Extract DNA sequence "THREE" from stdin *) let dna_three = let is_not_three s = try String.sub s 0 6 <> ">THREE" with _ -> true in while is_not_three(input_line stdin) do () done; let buf = Buffer.create 1000 in (* Skip possible comment *) (try while true do let line = input_line stdin in if line.[0] <> ';' then (Buffer.add_string buf (String.uppercase line); raise Exit) done with _ -> ()); (* Read the DNA sequence *) (try while true do let line = input_line stdin in if line.[0] = '>' then raise End_of_file; Buffer.add_string buf (String.uppercase line) done with End_of_file -> ()); Buffer.contents buf let invoke (f : 'a -> 'b) x : unit -> 'b = let input, output = Unix.pipe() in match Unix.fork() with | -1 -> Unix.close input; Unix.close output; (let v = f x in fun () -> v) | 0 -> Unix.close input; let output = Unix.out_channel_of_descr output in Marshal.to_channel output (try `Res(f x) with e -> `Exn e) []; close_out output; exit 0 | pid -> Unix.close output; let input = Unix.in_channel_of_descr input in fun () -> let v = Marshal.from_channel input in ignore (Unix.waitpid [] pid); close_in input; match v with `Res x -> x | `Exn e -> raise e let parallelize f l = List.iter (fun g -> print_endline (g ())) (List.map (invoke f) l) let () = parallelize (fun i -> let module M = C(struct let k = i let dna = dna_three end) in M.write_frequencies ()) [1; 2]; parallelize (fun k -> let module M = C(struct let k = String.length k let dna = dna_three end) in M.write_count k) ["GGT"; "GGTA"; "GGTATT"; "GGTATTTTAATT"; "GGTATTTTAATTTATAGT"]
Sat, 02 Feb 2013 20:36:22 GMT MAKE: mv knucleotide.ocaml-2.ocaml knucleotide.ocaml-2.ml /usr/local/bin/ocamlopt -noassert -unsafe -fno-PIC -nodynlink -inline 100 unix.cmxa knucleotide.ocaml-2.ml -o knucleotide.ocaml-2.ocaml_run File "knucleotide.ocaml-2.ml", line 1: Warning 24: bad source file name: "Knucleotide.ocaml-2" is not a valid module name. rm knucleotide.ocaml-2.ml 0.25s to complete and log all make actions COMMAND LINE: ./knucleotide.ocaml-2.ocaml_run 0 < knucleotide-input25000000.txt PROGRAM OUTPUT: A 30.295 T 30.151 C 19.800 G 19.754 AA 9.177 TA 9.132 AT 9.131 TT 9.091 CA 6.002 AC 6.001 AG 5.987 GA 5.984 CT 5.971 TC 5.971 GT 5.957 TG 5.956 CC 3.917 GC 3.911 CG 3.909 GG 3.902 1471758 GGT 446535 GGTA 47336 GGTATT 893 GGTATTTTAATT 893 GGTATTTTAATTTATAGT