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 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
|
/*
Copyright 2010-2011, D. E. Shaw Research.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions, and the following disclaimer.
* 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.
* Neither the name of D. E. Shaw Research nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 COPYRIGHT
OWNER 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.
*/
/*
* Pthreads test and timing harness for Random123 RNGs.
* Uses macros and util_expandtpl.h to "templatize" over all the
* different permutations of RNGs and NxW and R.
*/
#include "util.h"
#include <sys/stat.h>
#include "Random123/philox.h"
#include "Random123/threefry.h"
#include "Random123/ars.h"
#include "Random123/aes.h"
#include "time_misc.h"
#include "util_print.h"
#include "util_cpu.h"
#include <pthread.h>
/*
* Main thread initializes thread_info[i].started to zero, .tid to its own
* pthread_self() as a placeholder.
* Child #i sets thread_info[i].tid to pthread_self() and then
* sets .started. Only child #i ever writes to thread_info[i], and
* does so only once. So searching through thread_info is race-free
* for get_global_id, since it only ever looking for its own pthread_self
* anyway. The write to started needs to be atomic.
* This is all so that we can use the same kernel as OpenCL/CUDA.
* Note that parent keeps its own copy of thread ids returned
* by pthread_create in tids[] to avoid any races with thread_info.
*/
typedef struct {
int started; /* started == 1 means tid contains pthread_self() of thread */
pthread_t tid;
} ThreadInfo;
static volatile ThreadInfo *thread_info; /* thread_id state, one per thread */ \
static int thread_count;
/* Linear search should be fast enough for small thread count... */
R123_STATIC_INLINE int get_global_id(int x)
{
int i;
pthread_t me = pthread_self();
(void)x; /* why is this an arg? */
for (i = 0; i < thread_count; i++) {
if (thread_info[i].started && pthread_equal(me, thread_info[i].tid))
return i;
}
fprintf(stderr, "could not find thread %lu\n", (unsigned long) me);
pthread_exit(NULL);
}
#define KERNEL R123_STATIC_INLINE
#include "time_random123.h"
#define TEST_TPL(NAME, N, W, R) \
typedef struct { \
uint kcount; \
NAME##N##x##W##_ukey_t ukey; \
NAME##N##x##W##_ctr_t ctr; \
NAME##N##x##W##_ctr_t *octrs; \
} ThreadData_##NAME##N##x##W##_##R; \
\
typedef struct { \
ThreadData_##NAME##N##x##W##_##R *tp; \
volatile ThreadInfo *tip; \
} ThreadArg_##NAME##N##x##W##_##R; \
\
/* thread_run is launched in a new thread by pthread_create */ \
void *thread_run_##NAME##N##x##W##_##R(void *p) \
{ \
ThreadArg_##NAME##N##x##W##_##R *ta = p; \
ThreadData_##NAME##N##x##W##_##R *tp = ta->tp; \
volatile ThreadInfo *tip = ta->tip; \
/* store our thread id for use by get_global_info */ \
tip->tid = pthread_self(); \
tip->started = 1; \
test_##NAME##N##x##W##_##R(tp->kcount, tp->ukey, tp->ctr, tp->octrs); \
return tp; \
}\
void NAME##N##x##W##_##R(NAME##N##x##W##_ukey_t ukey, NAME##N##x##W##_ctr_t ctr, NAME##N##x##W##_ctr_t kactr, uint count, CPUInfo *tp) \
{ \
const char *kernelname = #NAME #N "x" #W "_" #R; \
double cur_time; \
int i, n, niterations = numtrials; /* we make niterations + 2 (warmup, overhead) calls to the kernel */ \
double basetime = 0., dt = 0., mindt = 0.; \
ThreadData_##NAME##N##x##W##_##R td; /* same for all threads */ \
ThreadArg_##NAME##N##x##W##_##R *tap; /* args for thread_run, 1 per thread */ \
pthread_t me = pthread_self(); /* parent thread id */ \
pthread_t *tids; /* array of child thread ids */ \
void *vp; /* return from join */ \
CHECKNOTZERO(thread_info = (ThreadInfo *) malloc(sizeof(thread_info[0])*tp->ncores)); \
CHECKNOTZERO(tap = (ThreadArg_##NAME##N##x##W##_##R *) malloc(sizeof(tap[0])*tp->ncores)); \
CHECKNOTZERO(tids = (pthread_t *) malloc(sizeof(tids[0])*tp->ncores)); \
for (i = 0; i < tp->ncores; i++) { \
thread_info[i].started = 0; \
thread_info[i].tid = me; \
tap[i].tip = &thread_info[i]; \
tap[i].tp = &td; \
} \
thread_count = tp->ncores; \
CHECKNOTZERO(td.octrs = (NAME##N##x##W##_ctr_t *) malloc(sizeof(td.octrs[0])*tp->ncores)); \
td.ukey = ukey; \
td.ctr = ctr; \
td.kcount = 0; \
for (n = -2; n < niterations; n++) { \
if (n == -2) { \
if (count == 0) { \
/* try to set a good guess for count */ \
count = (uint)(tp->hz ? tp->hz * 1e-3 : 100000); \
dprintf(("starting with count = %u\n", count)); \
} \
td.kcount = count; \
} else if (n == -1) { \
/* use first iteration time to calibrate count to get approximately sec_per_trial */ \
if (count > 1) { \
count = (uint)(count * sec_per_trial / dt); \
dprintf(("scaled count = %u\n", count)); \
} \
/* second iteration is to calculate overhead after warmup */ \
td.kcount = 1; \
} else if (n == 0) { \
int xj; \
/* Check that we got the expected value */ \
for (xj = 0; xj < N; xj++) { \
if (kactr.v[xj] != td.octrs[0].v[xj]) { \
printf("%s mismatch: xj = %d, expected\n", kernelname, xj); \
printline_##NAME##N##x##W##_##R(ukey, ctr, &kactr, 1); \
printf(" but got\n"); \
printline_##NAME##N##x##W##_##R(ukey, ctr, td.octrs, 1); \
if(!debug) exit(1); \
else break; \
} else { \
dprintf(("%s matched word %d\n", kernelname, xj)); \
} \
} \
basetime = dt; \
if (verbose) { \
dprintf(("%s %.3f secs\n", kernelname, basetime)); \
printline_##NAME##N##x##W##_##R(ukey, ctr, td.octrs, tp->ncores); \
} \
td.kcount = count + 1; \
} \
dprintf(("call function %s\n", kernelname)); \
(void)timer(&cur_time); \
for (i = 0; i < tp->ncores; i++) { \
CHECKZERO(pthread_create(&tids[i], NULL, thread_run_##NAME##N##x##W##_##R, &tap[i])); \
dprintf(("thread %d started\n", i)); \
} \
for (i = 0; i < thread_count; i++) { \
CHECKZERO(pthread_join(tids[i], &vp)); \
dprintf(("thread %d done\n", i)); \
} \
dt = timer(&cur_time); \
dprintf(("iteration %d took %.3f secs\n", n, dt)); \
ALLZEROS(td.octrs, tp->ncores, N); \
if (n == 0 || dt < mindt) mindt = dt; \
} \
if (count > 1) { \
double tpB = (mindt - basetime) / ( (td.kcount - 1.) * tp->ncores * (N * W / 8.) ); \
printf("%-17s %#5.3g cpB %#5.3g GB/s %u B granularity (best %u in %.3f s - %.6f s)\n", \
kernelname, tpB * tp->hz * tp->ncores, 1e-9/tpB, \
(uint)(N*W/8), td.kcount, mindt, basetime ); \
fflush(stdout); \
} \
thread_count = 0; \
free((void *) thread_info); \
thread_info = NULL; \
free(td.octrs); \
free(tap); \
free(tids); \
}
#include "util_expandtpl.h"
int main(int argc, char **argv)
{
char *cp;
uint count = 0;
CPUInfo *infop;
int keyctroffset = 0;
progname = argv[0];
if (argc > 3|| (argv[1] && argv[1][0] == '-')) {
fprintf(stderr, "Usage: %s [COUNT [NCORES]]\n", progname);
exit(1);
}
if (argc > 1)
count = atoi(argv[1]);
if ((cp = getenv("TIME_THREAD_VERBOSE")) != NULL) {
verbose = atoi(cp);
}
if ((cp = getenv("TIME_THREAD_DEBUG")) != NULL) {
debug = atoi(cp);
}
if ((cp = getenv("TIME_THREAD_OFFSET")) != NULL) {
keyctroffset = atoi(cp);
}
if ((cp = getenv("TIME_THREAD_NUMTRIALS")) != NULL) {
numtrials = atoi(cp);
}
if ((cp = getenv("TIME_THREAD_SEC_PER_TRIAL")) != NULL) {
sec_per_trial = atof(cp);
}
infop = cpu_init(argc > 2 ? argv[2] : NULL);
# include "time_initkeyctr.h"
cpu_done(infop);
return 0;
}
|