-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove Saturn_lockfree package. (#159)
- Loading branch information
Showing
76 changed files
with
169 additions
and
359 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
let benchmarks = | ||
[ | ||
("Saturn_lockfree Queue", Bench_queue.run_suite); | ||
("Saturn_lockfree Single_prod_single_cons_queue", Bench_spsc_queue.run_suite); | ||
("Saturn_lockfree Size", Bench_size.run_suite); | ||
("Saturn_lockfree Skiplist", Bench_skiplist.run_suite); | ||
("Saturn_lockfree Htbl", Bench_htbl.run_suite); | ||
("Saturn_lockfree Stack", Bench_stack.run_suite); | ||
("Saturn_lockfree Work_stealing_deque", Bench_ws_deque.run_suite); | ||
("Saturn Queue", Bench_queue.run_suite); | ||
("Saturn Single_prod_single_cons_queue", Bench_spsc_queue.run_suite); | ||
("Saturn Size", Bench_size.run_suite); | ||
("Saturn Skiplist", Bench_skiplist.run_suite); | ||
("Saturn Htbl", Bench_htbl.run_suite); | ||
("Saturn Stack", Bench_stack.run_suite); | ||
("Saturn Work_stealing_deque", Bench_ws_deque.run_suite); | ||
] | ||
|
||
let () = Multicore_bench.Cmd.run ~benchmarks () |
This file contains 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
This file contains 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
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
This file contains 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
This file contains 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,18 +26,14 @@ Copyright (c) 2017, Nicolas ASSOUAD <[email protected]> | |
######## | ||
*) | ||
|
||
module Queue = Saturn_lockfree.Queue | ||
module Queue_unsafe = Saturn_lockfree.Queue_unsafe | ||
module Stack = Saturn_lockfree.Stack | ||
module Work_stealing_deque = Saturn_lockfree.Work_stealing_deque | ||
|
||
module Single_prod_single_cons_queue = | ||
Saturn_lockfree.Single_prod_single_cons_queue | ||
|
||
module Single_prod_single_cons_queue_unsafe = | ||
Saturn_lockfree.Single_prod_single_cons_queue_unsafe | ||
|
||
module Single_consumer_queue = Saturn_lockfree.Single_consumer_queue | ||
module Skiplist = Saturn_lockfree.Skiplist | ||
module Htbl = Saturn_lockfree.Htbl | ||
module Htbl_unsafe = Saturn_lockfree.Htbl_unsafe | ||
module Queue = Michael_scott_queue | ||
module Queue_unsafe = Michael_scott_queue_unsafe | ||
module Stack = Treiber_stack | ||
module Work_stealing_deque = Ws_deque | ||
module Single_prod_single_cons_queue = Spsc_queue | ||
module Single_prod_single_cons_queue_unsafe = Spsc_queue_unsafe | ||
module Single_consumer_queue = Mpsc_queue | ||
module Size = Size | ||
module Skiplist = Skiplist | ||
module Htbl = Htbl | ||
module Htbl_unsafe = Htbl_unsafe |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,22 +26,18 @@ Copyright (c) 2017, Nicolas ASSOUAD <[email protected]> | |
######## | ||
*) | ||
|
||
(** Domain-safe data structures for Multicore OCaml *) | ||
(** Lock-free data structures for Multicore OCaml *) | ||
|
||
(** {1 Data structures} *) | ||
|
||
module Queue = Saturn_lockfree.Queue | ||
module Queue_unsafe = Saturn_lockfree.Queue_unsafe | ||
module Stack = Saturn_lockfree.Stack | ||
module Work_stealing_deque = Saturn_lockfree.Work_stealing_deque | ||
|
||
module Single_prod_single_cons_queue = | ||
Saturn_lockfree.Single_prod_single_cons_queue | ||
|
||
module Single_prod_single_cons_queue_unsafe = | ||
Saturn_lockfree.Single_prod_single_cons_queue_unsafe | ||
|
||
module Single_consumer_queue = Saturn_lockfree.Single_consumer_queue | ||
module Skiplist = Saturn_lockfree.Skiplist | ||
module Htbl = Saturn_lockfree.Htbl | ||
module Htbl_unsafe = Saturn_lockfree.Htbl_unsafe | ||
module Queue = Michael_scott_queue | ||
module Queue_unsafe = Michael_scott_queue_unsafe | ||
module Stack = Treiber_stack | ||
module Work_stealing_deque = Ws_deque | ||
module Single_prod_single_cons_queue = Spsc_queue | ||
module Single_prod_single_cons_queue_unsafe = Spsc_queue_unsafe | ||
module Single_consumer_queue = Mpsc_queue | ||
module Skiplist = Skiplist | ||
module Size = Size | ||
module Htbl = Htbl | ||
module Htbl_unsafe = Htbl_unsafe |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.