Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Langford <jl@hunch.net>2009-09-29 01:38:09 +0400
committerJohn Langford <jl@hunch.net>2009-09-29 01:38:09 +0400
commit84d09d675d929d3938a106d33f448dd5b74e14ee (patch)
tree868a1307d7e21d5a113630fa579493aae3431a40 /delay_ring.h
parent287eaed15af80a0fd954ea5a54b34cf7b365c0c6 (diff)
Half of cluster parallel once again working.
Diffstat (limited to 'delay_ring.h')
-rw-r--r--delay_ring.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/delay_ring.h b/delay_ring.h
new file mode 100644
index 00000000..50c137e4
--- /dev/null
+++ b/delay_ring.h
@@ -0,0 +1,11 @@
+#ifndef DELAY_RING_H
+#define DELAY_RING_H
+
+void initialize_delay_ring();
+void destroy_delay_ring();
+example* get_delay_example(size_t thread);
+example* blocking_get_delay_example(size_t thread);
+void delay_example(example* ec);
+bool thread_done(size_t thread);
+
+#endif