Re: [boinc_dev] OpenCL under MESA (Clover)

2015-04-27 Thread Rom Walton
In theory this should already work with BOINC 7.4 or better.

Give it a try, BOINC should report detecting the OpenCL GPU device.

- Rom

-Original Message-
From: boinc_dev [mailto:boinc_dev-boun...@ssl.berkeley.edu] On Behalf Of Benji 
Wiebe
Sent: Monday, April 27, 2015 4:24 PM
To: boinc_dev@ssl.berkeley.edu
Subject: [boinc_dev] OpenCL under MESA (Clover)

Is there any plans to support Clover? I'm looking forward to being able to run 
Collatz on my GPU with only FOSS drivers. I might be interested in helping get 
it to work, too.

Thanks,

Benji
___
boinc_dev mailing list
boinc_dev@ssl.berkeley.edu
http://lists.ssl.berkeley.edu/mailman/listinfo/boinc_dev
To unsubscribe, visit the above URL and
(near bottom of page) enter your email address.
___
boinc_dev mailing list
boinc_dev@ssl.berkeley.edu
http://lists.ssl.berkeley.edu/mailman/listinfo/boinc_dev
To unsubscribe, visit the above URL and
(near bottom of page) enter your email address.


[boinc_dev] Android help

2015-04-27 Thread Kevin Vinsen
Does anyone know how I force Android clients off the old (non-PIE) code? They 
Android’s aren’t downloading the new version

Regards
Kevin



___
boinc_dev mailing list
boinc_dev@ssl.berkeley.edu
http://lists.ssl.berkeley.edu/mailman/listinfo/boinc_dev
To unsubscribe, visit the above URL and
(near bottom of page) enter your email address.

[boinc_dev] size_census.php

2015-04-27 Thread Kevin Vinsen
I’m getting the following error from the size_census.php code.


Warning: Division by zero in /mnt/disk0/projects/pogs/html/ops/size_census.php 
on line 59
PHP Warning:  Division by zero in 
/mnt/disk0/projects/pogs/html/ops/size_census.php on line 59

The code is as follows:

48while ($x = _mysql_fetch_object($result)) {
49if (is_gpu($x-plan_class)) {
50$av = $x-on_frac;
51if ($x-gpu_active_frac) {
52$av *= $x-gpu_active_frac;
53} else {
54$av *= $x-active_frac;
55}
56} else {
57   $av = $x-on_frac * $x-active_frac;
58}
59$a[] = (1/$x-et_avg) * $av;
60}

A quick check of the database shows I do indeed have values of et_avg that are 
equal to 0


Regards
Kevin



___
boinc_dev mailing list
boinc_dev@ssl.berkeley.edu
http://lists.ssl.berkeley.edu/mailman/listinfo/boinc_dev
To unsubscribe, visit the above URL and
(near bottom of page) enter your email address.