forked from ParaGroup/p3arsec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
218 lines (193 loc) · 6.57 KB
/
main.cpp
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
// main.cpp
//
// Created by Daniel Schwartz-Narbonne on 13/04/07.
// Modified by Christian Bienia
// FastFlow version by Daniele De Sensi (d.desensi.software@gmail.com)
//
// Copyright 2007-2008 Princeton University
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
// OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
// OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
// SUCH DAMAGE.
#include <iostream>
#include <math.h>
#include <stdlib.h>
#include <unistd.h>
#include <vector>
#ifdef ENABLE_THREADS
#include <pthread.h>
#endif
#ifdef ENABLE_PARSEC_HOOKS
#include <hooks.h>
#endif
#if defined(ENABLE_NORNIR) || defined(ENABLE_NORNIR_NATIVE)
#include <instrumenter.hpp>
#include <stdlib.h>
#include <iostream>
std::string getParametersPath(){
return std::string(getenv("PARSECDIR")) + std::string("/parameters.xml");
}
nornir::Instrumenter* instr;
#endif //ENABLE_NORNIR
#include "annealer_types.h"
#ifdef ENABLE_FF
#include "annealer_thread_ff.h"
#elif defined ENABLE_NORNIR_NATIVE
#include "annealer_thread_nornir.h"
#else
#include "annealer_thread.h"
#endif
#include "netlist.h"
#include "rng.h"
using namespace std;
#if defined(ENABLE_THREADS) && !defined(ENABLE_FF) && !defined(ENABLE_NORNIR_NATIVE)
void* entry_pt(void*);
#endif
#ifdef ENABLE_NORNIR
typedef struct{
void* a_thread;
size_t tid;
}ThreadData;
#endif
int main (int argc, char * const argv[]) {
#ifdef PARSEC_VERSION
#define __PARSEC_STRING(x) #x
#define __PARSEC_XSTRING(x) __PARSEC_STRING(x)
cout << "PARSEC Benchmark Suite Version " __PARSEC_XSTRING(PARSEC_VERSION) << endl << flush;
#else
cout << "PARSEC Benchmark Suite" << endl << flush;
#endif //PARSEC_VERSION
#ifdef ENABLE_PARSEC_HOOKS
__parsec_bench_begin(__parsec_canneal);
#endif
srandom(3);
if(argc != 5 && argc != 6) {
cout << "Usage: " << argv[0] << " NTHREADS NSWAPS TEMP NETLIST [NSTEPS]" << endl;
exit(1);
}
//argument 1 is numthreads
int num_threads = atoi(argv[1]);
cout << "Threadcount: " << num_threads << endl;
#if !defined(ENABLE_THREADS) && !defined(ENABLE_FF) && !defined(ENABLE_NORNIR_NATIVE)
if (num_threads != 1){
cout << "NTHREADS must be 1 (serial version)" <<endl;
exit(1);
}
#endif
#ifdef ENABLE_NORNIR
instr = new nornir::Instrumenter(getParametersPath(), num_threads);
#endif //ENABLE_NORNIR
//argument 2 is the num moves / temp
int swaps_per_temp = atoi(argv[2]);
cout << swaps_per_temp << " swaps per temperature step" << endl;
//argument 3 is the start temp
int start_temp = atoi(argv[3]);
cout << "start temperature: " << start_temp << endl;
//argument 4 is the netlist filename
string filename(argv[4]);
cout << "netlist filename: " << filename << endl;
//argument 5 (optional) is the number of temperature steps before termination
int number_temp_steps = -1;
if(argc == 6) {
number_temp_steps = atoi(argv[5]);
cout << "number of temperature steps: " << number_temp_steps << endl;
}
//now that we've read in the commandline, run the program
netlist my_netlist(filename);
#if !defined(ENABLE_FF) && !defined(ENABLE_NORNIR_NATIVE)
annealer_thread a_thread(&my_netlist,num_threads,swaps_per_temp,start_temp,number_temp_steps);
#endif
#ifdef ENABLE_PARSEC_HOOKS
__parsec_roi_begin();
#endif
#ifdef ENABLE_THREADS
#ifdef ENABLE_FF
ff::ff_farm<> farm;
farm.cleanup_all();
std::vector<ff::ff_node*> workers;
for(int i = 0; i < num_threads; i++){
workers.push_back(new annealer_thread(&my_netlist, num_threads, swaps_per_temp, start_temp));
}
farm.add_emitter(new Emitter(num_threads, number_temp_steps, farm.getlb()));
farm.add_workers(workers);
farm.wrap_around();
farm.run_and_wait_end();
#elif defined(ENABLE_NORNIR_NATIVE)
nornir::Parameters nornirparams(getParametersPath());
nornirparams.synchronousWorkers = true;
nornir::Farm<CTask, CTask> farm(&nornirparams);
farm.addScheduler(new Emitter(num_threads, number_temp_steps));
for(int i = 0; i < num_threads; i++){
farm.addWorker(new annealer_thread(&my_netlist, num_threads, swaps_per_temp, start_temp));
}
farm.setFeedback();
farm.start();
farm.wait();
#else // pthreads version
std::vector<pthread_t> threads(num_threads);
void* thread_in = static_cast<void*>(&a_thread);
for(int i=0; i<num_threads; i++){
#ifdef ENABLE_NORNIR
ThreadData* td = new ThreadData();
td->a_thread = thread_in;
td->tid = (size_t) i;
pthread_create(&threads[i], NULL, entry_pt, static_cast<void*>(td));
#else
pthread_create(&threads[i], NULL, entry_pt, thread_in);
#endif
}
for (int i=0; i<num_threads; i++){
pthread_join(threads[i], NULL);
}
#endif
#else
a_thread.Run();
#endif
#ifdef ENABLE_PARSEC_HOOKS
__parsec_roi_end();
#endif
#ifdef ENABLE_NORNIR
instr->terminate();
std::cout << "riff.time|" << instr->getExecutionTime() << std::endl;
std::cout << "riff.iterations|" << instr->getTotalTasks() << std::endl;
delete instr;
#endif //ENABLE_NORNIR
cout << "Final routing is: " << my_netlist.total_routing_cost() << endl;
cout << "Terminated" << endl;
#ifdef ENABLE_PARSEC_HOOKS
__parsec_bench_end();
#endif
return 0;
}
#if defined(ENABLE_THREADS) && !defined(ENABLE_FF) && !defined(ENABLE_NORNIR_NATIVE)
void* entry_pt(void* data)
{
#ifdef ENABLE_NORNIR
ThreadData* td = static_cast<ThreadData*>(data);
annealer_thread* ptr = static_cast<annealer_thread*>(td->a_thread);
ptr->Run(td->tid);
#else
annealer_thread* ptr = static_cast<annealer_thread*>(data);
ptr->Run();
#endif
return NULL;
}
#endif