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

delay_ring.h - github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 22ac8dd307f8c950d683aba34094fdf87c774063 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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* ex, size_t count);
void delay_global_example(example* ex);
bool thread_done(size_t thread);

#endif