[go: up one dir, main page]

Menu

[r51]: / client / testspe.cpp  Maximize  Restore  History

Download this file

63 lines (45 with data), 1.2 kB

 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
#include "speclient.h"
using namespace cb;
int main(int argc, char** argv)
{
Sector::init(argv[1], atoi(argv[2]));
vector<string> s;
s.insert(s.begin(), "stream.dat");
Process* myproc = Sector::createJob();
if (myproc->open(s, "myProc") < 0)
{
cout << "failed to find any computing resources." << endl;
return -1;
}
myproc->run();
while (true)
{
char* res;
int size;
string file;
int64_t offset;
int rows;
if (-1 == myproc->read(res, size, file, offset, rows, true))
{
if (myproc->checkProgress() == -1)
{
cerr << "all SPEs failed\n";
break;
}
if (myproc->checkProgress() == 100)
break;
continue;
}
cout << "read one block " << size << endl;
for (int i = 0; i < size; i += 4)
cout << *(int*)(res + i) << endl;
}
myproc->close();
Sector::releaseJob(myproc);
Sector::close();
return 0;
}
// user defined process
//int myProc(const char* unit, const int& size, char* result, int& rsize, const char* param, const int& psize)
//{
//}