gem5/splash2/codes/kernels/cholesky/mf.C
Sanchayan Maity 0f4b39775c Fix splash2 benchmark
During the last commit of splash2 benchmark it seems before committing
when we ran "make clean", it effectively undid what the patch at below
link did
http://www.capsl.udel.edu/splash/Download.html

Fix this since without this it is not possible to build the arcane
splash2 benchmark.
2017-04-26 21:33:02 +05:30

170 lines
4.2 KiB
C

/*************************************************************************/
/* */
/* Copyright (c) 1994 Stanford University */
/* */
/* All rights reserved. */
/* */
/* Permission is given to use, copy, and modify this software for any */
/* non-commercial purpose as long as this copyright notice is not */
/* removed. All other uses, including redistribution in whole or in */
/* part, are forbidden without prior written permission. */
/* */
/* This software is provided with absolutely no warranty and no */
/* support. */
/* */
/*************************************************************************/
EXTERN_ENV
#include "matrix.h"
#define HashNum 1024
#define Bucket(desti, destj, src) ((desti+destj+src)%HashNum)
long uMiss = 0;
extern struct GlobalMemory *Global;
struct Update **updateHash;
struct taskQ {
LOCKDEC(taskLock)
struct Task *volatile taskQ;
struct Task *volatile taskQlast;
struct Task *volatile probeQ;
struct Task *volatile probeQlast;
} *tasks;
extern BMatrix LB;
void InitTaskQueues(long P)
{
long i;
tasks = (struct taskQ *) MyMalloc(P*sizeof(struct taskQ), DISTRIBUTED);
for (i=0; i<P; i++) {
LOCKINIT(tasks[i].taskLock)
tasks[i].taskQ = (struct Task *) NULL;
tasks[i].taskQlast = (struct Task *) NULL;
tasks[i].probeQ = (struct Task *) NULL;
tasks[i].probeQlast = (struct Task *) NULL;
}
}
/* Find block number of block at position (i,j) */
long FindBlock(long i, long j)
{
long lo, hi, probe;
lo = LB.col[j]; hi = LB.col[j+1];
for (;;) {
if (lo == hi)
break;
probe = (lo+hi)/2;
if (LB.row[probe] == i)
break;
else if (LB.row[probe] > i)
hi = probe;
else
lo = probe+1;
}
if (LB.row[probe] == i)
return(probe);
else
return(-1);
}
/* p is processor no if block_num = -1, ignored otherwise */
void Send(long src_block, long dest_block, long desti, long destj, struct Update *update, long p, long MyNum, struct LocalCopies *lc)
{
long procnum, is_probe;
struct Task *t;
procnum = p;
is_probe = (dest_block == -2);
if (lc->freeTask) {
t = lc->freeTask;
lc->freeTask = t->next;
}
else {
t = (struct Task *) MyMalloc(sizeof(struct Task), MyNum);
}
t->block_num = dest_block;
t->desti = desti; t->destj = destj; t->src = src_block; t->update = update;
t->next = NULL;
LOCK(tasks[procnum].taskLock)
if (is_probe) {
if (tasks[procnum].probeQlast)
tasks[procnum].probeQlast->next = t;
else
tasks[procnum].probeQ = t;
tasks[procnum].probeQlast = t;
}
else {
if (tasks[procnum].taskQlast)
tasks[procnum].taskQlast->next = t;
else
tasks[procnum].taskQ = t;
tasks[procnum].taskQlast = t;
}
UNLOCK(tasks[procnum].taskLock)
}
long TaskWaiting(long MyNum)
{
return(tasks[MyNum].taskQ != NULL);
}
void GetBlock(long *desti, long *destj, long *src, struct Update **update, long MyNum, struct LocalCopies *lc)
{
struct Task *t;
for (;;) {
if (tasks[MyNum].taskQ || tasks[MyNum].probeQ) {
LOCK(tasks[MyNum].taskLock)
t = NULL;
if (tasks[MyNum].probeQ) {
t = (struct Task *) tasks[MyNum].probeQ;
tasks[MyNum].probeQ = t->next;
if (!t->next)
tasks[MyNum].probeQlast = NULL;
}
else if (tasks[MyNum].taskQ) {
t = (struct Task *) tasks[MyNum].taskQ;
tasks[MyNum].taskQ = t->next;
if (!t->next)
tasks[MyNum].taskQlast = NULL;
}
UNLOCK(tasks[MyNum].taskLock)
if (t)
break;
}
else {
while (!tasks[MyNum].taskQ && !tasks[MyNum].probeQ)
;
}
}
*desti = t->desti; *destj = t->destj; *src = t->src; *update = t->update;
/* free task */
t->next = lc->freeTask;
lc->freeTask = t;
/* straight through is 32 cycles */
}