forked from VowpalWabbit/vowpal_wabbit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsender.cc
173 lines (157 loc) · 4.23 KB
/
sender.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
#include <pthread.h>
#include <vector>
#include <netdb.h>
#include "io.h"
#include "parse_args.h"
#include "cache.h"
#include "vw.h"
#include "simple_label.h"
#include "network.h"
#include "multisource.h"
#include "delay_ring.h"
using namespace std;
pthread_t* thread;
size_t d_1;
size_t d_2;
v_array<v_array<io_buf *> > bufs;
bool second_of_pair[256];
bool pairs_exist=false;
size_t log_int_r(size_t v)
{
if (v > 1)
return 1+log_int_r(v >> 1);
else
return 0;
}
size_t log_int(size_t v)
{//find largest number n such that 2^n <= v
return log_int_r(v);
}
size_t find_split(size_t number)
{// approximately factor number into d_1 and d_2, each a power of 2 as large as possible so that (1) d_1 >= d_2, and (2) d_1 * d_2 <= number
d_1 = 1;
d_2 = 1;
if (number > 1)
{
size_t log_2 = log_int(number);
if (!pairs_exist)
d_1 = 1 << log_2;
else
{
size_t a = log_2 / 2;
d_1 = 1 << (log_2 - a);
d_2 = 1 << a;
}
if (d_1 * d_2 < number)
cerr << "warning: number of remote hosts is not a factor of 2, so some are wasted" << endl;
return log_2;
}
return 0;
}
void open_sockets(vector<string>& hosts)
{
size_t new_id = global.unique_id;
for (size_t i = 0; i < d_1; i++)
{
v_array<io_buf *> t;
push(bufs,t);
for (size_t j = 0; j< d_2; j++)
{
size_t number = j + d_2*i;
int sd = open_socket(hosts[number].c_str());
if (new_id == 0)
global.local_prediction = sd;
new_id++;
io_buf *b = new io_buf();
push(b->files, sd);
push(bufs[i], b);
}
}
}
void parse_send_args(po::variables_map& vm, vector<string> pairs)
{
if (vm.count("sendto"))
{
if (pairs.size() > 0)
{
pairs_exist=true;
for (int i = 0; i<256;i++)
second_of_pair[i]=false;
for (vector<string>::iterator i = pairs.begin(); i != pairs.end();i++)
second_of_pair[(int)(*i)[1]] = true;
}
vector<string> hosts = vm["sendto"].as< vector<string> >();
global.partition_bits = find_split(hosts.size());
open_sockets(hosts);
}
}
void send_features(int i, int j, io_buf *b, example* ec)
{
// note: subtracting 1 b/c not sending constant
output_byte(*b,ec->indices.index()-1);
for (size_t* index = ec->indices.begin; index != ec->indices.end; index++) {
if (*index == constant_namespace)
continue;
if (second_of_pair[*index])
output_features(*b, *index, ec->subsets[*index][j*d_1], ec->subsets[*index][(j+1)*d_1]);
else
output_features(*b, *index, ec->subsets[*index][i*d_2], ec->subsets[*index][(i+1)*d_2]);
}
b->flush();
}
void* send_thread(void*)
{
example* ec = NULL;
v_array<char> null_tag;
null_tag.erase();
bool finished = false;
while ( true )
{//this is a poor man's select operation.
if ((ec = get_example(0)) != NULL)//semiblocking operation.
{
if (finished)
cout << "NOT POSSIBLE! " << endl;
label_data* ld = (label_data*)ec->ld;
set_minmax(ld->label);
for (size_t i = 0; i < d_1; i++)
for (size_t j = 0; j < d_2; j++)
{
simple_label.cache_label(ld, *bufs[i][j]);//send label information.
cache_tag(*bufs[i][j], ec->tag);
send_features(i,j,bufs[i][j],ec);
}
delay_example(ec,0);
}
else if (!finished && parser_done())
{ //close our outputs to signal finishing.
finished = true;
for (size_t i = 0; i < d_1; i++)
{
for (size_t j = 0; j < d_2; j++)
{
bufs[i][j]->flush();
shutdown(bufs[i][j]->files[0],SHUT_WR);
free(bufs[i][j]->files.begin);
free(bufs[i][j]->space.begin);
}
free(bufs[i].begin);
}
free(bufs.begin);
}
else if (!finished)
;
else
return NULL;
}
return NULL;
}
void setup_send()
{
thread = (pthread_t*)calloc(1,sizeof(pthread_t));
pthread_create(thread, NULL, send_thread, NULL);
}
void destroy_send()
{
pthread_join(*thread, NULL);
free(thread);
}