- add boinc_opencl.h to set of installed headers

- emulator tweaks

svn path=/trunk/boinc/; revision=24407
This commit is contained in:
David Anderson 2011-10-17 17:02:05 +00:00
parent c22f8f41b9
commit 7e41a84c16
4 changed files with 20 additions and 6 deletions

View File

@ -47,6 +47,7 @@ if INSTALL_HEADERS
## install only headers that are meant for exporting the API !!
pkginclude_HEADERS = \
boinc_api.h \
boinc_opencl.h \
graphics2.h \
gutil.h
endif ## INSTALL_HEADERS

View File

@ -7327,3 +7327,12 @@ David 16 Oct 2011
util.inc
client/
sim.cpp
David 17 Oct 2011
- add boinc_opencl.h to set of installed headers
- emulator tweaks
lib/
Makefile.am
client/
sim.cpp
sim_util.cpp

View File

@ -837,10 +837,8 @@ void show_resource(int rsc_type) {
if (rsc_type) {
if (rp->avp->gpu_usage.rsc_type != rsc_type) continue;
ninst = rp->avp->gpu_usage.usage;
sprintf(buf, " GPU %d", rp->coproc_indices[0]);
} else {
ninst = rp->avp->avg_ncpus;
strcpy(buf, "");
}
PROJECT* p = rp->project;
@ -848,10 +846,16 @@ void show_resource(int rsc_type) {
found = true;
fprintf(html_out,
"<table>\n"
"<tr><th>#devs</th><th>Job name</th><th>FLOPS left</th></tr>\n"
"<tr><th>#devs</th><th>Job name</th><th>GFLOPs left</th>%s</tr>\n",
rsc_type?"<th>GPU</th>":""
);
}
fprintf(html_out, "<tr><td>%.2f</td><td bgcolor=%s><font color=#ffffff>%s%s</font></td><td>%.0fG%s</td></tr>\n",
if (rsc_type) {
sprintf(buf, "<td>%d</td>", rp->coproc_indices[0]);
} else {
strcpy(buf, "");
}
fprintf(html_out, "<tr><td>%.2f</td><td bgcolor=%s><font color=#ffffff>%s%s</font></td><td>%.0f</td>%s</tr>\n",
ninst,
colors[p->index%NCOLORS],
atp->result->rr_sim_misses_deadline?"*":"",
@ -906,7 +910,7 @@ void html_start() {
"<table border=0 cellpadding=4><tr><th width=%d>Time</th>\n", WIDTH1
);
fprintf(html_out,
"<th width=%d>CPU<br>* means EDF mode</th>", WIDTH2
"<th width=%d>CPU</th>", WIDTH2
);
if (coprocs.have_nvidia()) {
fprintf(html_out, "<th width=%d>NVIDIA GPU</th>", WIDTH2);

View File

@ -104,7 +104,7 @@ int ACTIVE_TASK::resume_or_start(bool first_time) {
}
set_task_state(PROCESS_EXECUTING, "start");
char buf[256];
sprintf(buf, "Starting %s: %.2fG<br>", result->name, flops_left/1e9);
sprintf(buf, "Starting %s<br>", result->name);
html_msg += buf;
return 0;
}