-
2052579·text·11.4 KB·2011-05-01 18:13 UTC
//NETCODE//
rate "100000"
cl_cmdrate "100"
cl_updaterate "100"
cl_interpolate "1"
cl_interp "0.01"
cl_interp_ratio "1"
cl_lagcompensation "1"
cl_lagcomp_erro
-
2052577·text·347 B·2011-05-01 18:07 UTC
em@leibniz:/usr/local/lib/python2.6/dist-packages$ python
Python 2.6.6 (r266:84292, Sep 15 2010, 16:22:56)
[GCC 4.4.5] on linux2
Type "help", "copyright", "credits" or "license" for more informati
-
2052576·text·520 B·2011-05-01 18:06 UTC
em@leibniz:/usr/local/lib/python2.6/dist-packages$ sudo easy_install pyopencl
install_dir /usr/local/lib/python2.6/dist-packages/
Searching for pyopencl
Best match: pyopencl 0.92
Processing pyopen
-
2052575·text·131 B·2011-05-01 17:54 UTC
em@leibniz:~/pyopencl-0.92$ ls /usr/local/lib/python2.6/dist-packages/pyopencl*
EGG-INFO pyopencl
em@leibniz:~/pyopencl-0.92$
-
2052574·text·364 B·2011-05-01 17:52 UTC
em@leibniz:~/pyopencl-0.92$ file /usr/local/lib/python2.6/dist-packages/pyopencl-0.92-py2.6-linux-x86_64.egg/_cl.so
/usr/local/lib/python2.6/dist-packages/pyopencl-0.92-py2.6-linux-x86_64.egg/_cl.so:
-
2052573·text·89 B·2011-05-01 17:49 UTC
file
/usr/local/lib/python2.6/dist-packages/pyopencl-0.92-py2.6-linux-x86_64.egg/_cl.so
-
2052572·text·439 B·2011-05-01 17:45 UTC
em@leibniz:~/pyopencl-0.92$ PYTHONPATH=/usr/local/lib/python2.6/ python
Python 2.6.6 (r266:84292, Sep 15 2010, 16:22:56)
[GCC 4.4.5] on linux2
Type "help", "copyright", "credits" or "license" for
-
2052571·perl·1.2 KB·2011-05-01 17:43 UTC
#!/usr/bin/perl
use strict;
use warnings;
sub average {
my ($summ, $count) = "0";
foreach (@{ $_["0"] }) {
$count++;
$summ = $summ + $_;
-
2052570·text·445 B·2011-05-01 17:41 UTC
em@leibniz:~/pyopencl-0.92$ sudo ldconfig
em@leibniz:~/pyopencl-0.92$ python
Python 2.6.6 (r266:84292, Sep 15 2010, 16:22:56)
[GCC 4.4.5] on linux2
Type "help", "copyright", "credits" or "license
-
2052569·text·4.4 KB·2011-05-01 17:37 UTC
em@leibniz:~/pyopencl-0.92$ sudo make install
ctags -R src || true
/bin/sh: ctags: not found
/usr/bin/python setup.py install
running install
install_dir /usr/local/lib/python2.6/dist-packages/
-
2052568·perl·1.2 KB·2011-05-01 17:35 UTC
#!/usr/bin/perl
use strict;
use warnings;
sub average {
my ($summ, $count) = "0";
foreach (@{ $_["0"] }) {
$count++;
$summ = $summ + $_;
-
2052567·perl·1.2 KB·2011-05-01 17:35 UTC
#!/usr/bin/perl
use strict;
use warnings;
sub average {
my ($summ, $count) = "0";
foreach (@{ $_["0"] }) {
$count++;
$summ = $summ + $_;
-
2052566·text·1.0 KB·2011-05-01 17:35 UTC
n
gcc -pthread -fno-strict-aliasing -fwrapv -Wall -O3 -DNDEBUG -fPIC -DBOOST_MULTI_INDEX_DISABLE_SERIALIZATION=1 -Isrc/cpp -Ibpl-subset/bpl_subset -I/home/em/AMD-APP-SDK-v2.4-lnx64/include/ -I/usr/li
-
2052565·perl·1.2 KB·2011-05-01 17:34 UTC
#!/usr/bin/perl
use strict;
use warnings;
sub average {
my ($summ, $count) = "0";
foreach (@{ $_["0"] }) {
$count++;
$summ = $summ + $_;
-
2052564·text·785 B·2011-05-01 17:31 UTC
em@leibniz:~$ cd pyopencl-0.92/
em@leibniz:~/pyopencl-0.92$ ls
aksetup_helper.py doc PKG-INFO README_SETUP.txt test
bpl-subset examples pyopencl setup
-
2052562·text·599 B·2011-05-01 17:27 UTC
em@leibniz:~/pyopencl-0.92$ make
ctags -R src || true
/bin/sh: ctags: not found
/usr/bin/python setup.py build
running build
running build_py
running build_ext
em@leibniz:~/pyopencl-0.92$ cat s
-
2052561·text·126 B·2011-05-01 17:23 UTC
./configure.py --cl-inc-dir=/home/em/AMD-APP-SDK-v2.4-lnx64/include/ --cl-lib-dir=/home/em/AMD-APP-SDK-v2.4-lnx64/lib/x86_64
-
2052560·text·1.4 KB·2011-05-01 17:13 UTC
NOTE: Running task 1632 of 1706 (ID: 102, /foobar/beagle/beagle-oe/setup-scripts/sources/openembedded/recipes/u-boot/u-boot_git.bb, do_fetch)
NOTE: package u-boot-2010.06+gitr0+bd2313078114c4b44c4a5c
-
2052559·text·120 B·2011-05-01 17:10 UTC
int count (int*a, int n, int x)
{
int i,result=0;
for (i= 0; i< n; i++)
if (a[i] == x)
result++;
return result;
}
-
2052557·text·402 B·2011-05-01 16:58 UTC
em@leibniz:~/pyopencl-0.92$ python
Python 2.6.6 (r266:84292, Sep 15 2010, 16:22:56)
[GCC 4.4.5] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import pyopenc