You can subscribe to this list here.
| 2009 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(10) |
Nov
|
Dec
|
|---|
|
From: Discussion a. B. u. <bro...@li...> - 2009-10-23 03:11:24
|
Hi, I'm Kiyotaka ATSUMI Since I found the information on the restriction about a scatter function, I tell that to you. http://developer.amd.com/gpu/ATIStreamSDK/pages/ATIStreamSystemRequirements.aspx A scatter function cannot run on Radion HD 3xxx series and a graphics adapter on AMD780G/790GX mother boards. -- Kiyotaka ATSUMI, Suzuka National College of Technology Web: https://www.ka-lab.jp/ PGP Public Key: https://www.ka-lab.jp/pubkey/20090703.kiyotaka-at-ka-lab.jp.asc Finger Print: 9E2A 80B4 0F3D 424E 035F B594 991F 7795 DD6D 560F |
|
From: Discussion a. B. u. <bro...@li...> - 2009-10-23 02:08:17
|
I'm kiyotaka.
The problem about which I asked yesterday was solved.
The Debian lenny system which carried out installation which was
mistaken about fglrx was the cause.
On the ubuntu 9.0.4 system, the program ran correctly.
Thanks you for Gaurav and everyone.
Discussion among Brook+ users <bro...@li...> wrote (Thu, 22 Oct 2009 11:56:25 +0530)
> Hi Kiyotaka,
>
> I am getting the expected results. Try to check error and errorLog on your
> output stream.
>
> - Gaurav
>
> -----Original Message-----
> From: Discussion among Brook+ users
> [mailto:bro...@li...]
> Sent: Wednesday, 21 October, 2009 5:48 PM
> To: bro...@li...
> Subject: [Brookplus-users] I don't write scatter function.
>
> Hi, I'm Kiyotaka.
>
> I write scatter function as follows in brook+ 1.4.1.
>
> ----- begin test.br -----
> kernel void scatter( float index<>, out float b[])
> {
> b[index] = index;
> }
>
> int main( void)
> {
> int i;
> float index<10>;
> float b<10>;
> float input_index[10];
> float input_b[10];
>
> for ( i = 0; i < 10; i++) {
> input_index[i] = i;
> }
>
> streamRead( index, input_index);
> scatter( index, b);
> streamWrite( b, input_b);
>
> for ( i = 0; i < 10; i++) {
> printf( "%f ", input_b[i]);
> }
> putchar('\n');
>
> return 0;
> }
> ----- end test.br -----
>
> But this program incorrect run. For example this program output as
> follows.
>
> % ./test
> -1.387920 0.693147 0.000000 0.000000 -1.387921 -1.387922 -1.387923
> 0.000000 0.000000 0.000000
>
> I want this proguram output
> 0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0
>
> Please tell me how it should correct of this program.
--
Kiyotaka ATSUMI, Suzuka National College of Technology
Web: https://www.ka-lab.jp/
PGP Public Key: https://www.ka-lab.jp/pubkey/20090703.kiyotaka-at-ka-lab.jp.asc
Finger Print: 9E2A 80B4 0F3D 424E 035F B594 991F 7795 DD6D 560F
|
|
From: Discussion a. B. u. <bro...@li...> - 2009-10-22 12:53:57
|
Discussion among Brook+ users <bro...@li...> wrote (Thu, 22 Oct 2009 14:01:21 +0530) > Which driver version are you using? I installed Catalyst Proprientary Display Driver Ver.9.9 (2009/9/8) But, the debian sysmem package is also contained in a jumble for compatibility with the debian system. Hmm. I try on a ubuntu system. -- Kiyotaka ATSUMI, Suzuka National College of Technology Web: https://www.ka-lab.jp/ PGP Public Key: https://www.ka-lab.jp/pubkey/20090703.kiyotaka-at-ka-lab.jp.asc Finger Print: 9E2A 80B4 0F3D 424E 035F B594 991F 7795 DD6D 560F |
|
From: Discussion a. B. u. <bro...@li...> - 2009-10-22 12:00:52
|
Discussion among Brook+ users <bro...@li...> wrote (Thu, 22 Oct 2009 14:01:21 +0530) > Which driver version are you using? I installed Catalyst Proprientary Display Driver Ver.9.9 (2009/9/8) But, the debian sysmem package is also contained in a jumble for compatibility with the debian system. Hmm. I try on a ubuntu system. -- Kiyotaka ATSUMI, Suzuka National College of Technology Web: https://www.ka-lab.jp/ PGP Public Key: https://www.ka-lab.jp/pubkey/20090703.kiyotaka-at-ka-lab.jp.asc Finger Print: 9E2A 80B4 0F3D 424E 035F B594 991F 7795 DD6D 560F |
|
From: Discussion a. B. u. <bro...@li...> - 2009-10-22 08:29:21
|
Which driver version are you using? -----Original Message----- From: Discussion among Brook+ users [mailto:bro...@li...] Sent: Thursday, 22 October, 2009 1:22 PM To: bro...@li... Subject: Re: [Brookplus-users] I don't write scatter function. Thank you reply, Gaurav. Discussion among Brook+ users <bro...@li...> wrote (Thu, 22 Oct 2009 11:56:25 +0530) > I am getting the expected results. Try to check error and errorLog on your > output stream. Hmm, I don't find error messages. Installed software status are as follows. CAL: (/usr/local/atical/bin/lnx32/FindNumDevices) PATH: /usr/local/atical Supported CAL Runtime Version: 1.3.185 Found CAL Runtime Version: 1.4.368 Use -? for help CAL initialized. Finding out number of devices :- Device Count = 1 CAL shutdown successful. ATI Stream SDK: PATH: /usr/local/ati-stream-sdk VER: v1.4-beta Brook+: PATH: /usr/local/Brook-1.4 VER: v1.4.1 Devices are as follows. CPU: AMD Phenom x4 9550 M/B: TA780G M2+ OS: Debian GNU/Linux Lenny (i386) CC: g++ 4.1.3 I build and run this program as follows. % brcc -o test test.br brcc -o test test.br deleting file : test.cpp deleting file : test.h deleting file : test_gpu.h % g++-4.1 -I /usr/local/Brook-1.4/sdk/include/ -L /usr/local/Brook-1.4/sdk/lib -o test test.cpp -l brook -lbrook_cal (no error) % ./test -1.155931 0.693147 0.000000 0.000000 -1.155932 -1.155933 -1.155934 0.000000 0.000000 0.000000 The method of installation of CAL is wrong? -- Kiyotaka ATSUMI, Suzuka National College of Technology Web: https://www.ka-lab.jp/ PGP Public Key: https://www.ka-lab.jp/pubkey/20090703.kiyotaka-at-ka-lab.jp.asc Finger Print: 9E2A 80B4 0F3D 424E 035F B594 991F 7795 DD6D 560F ---------------------------------------------------------------------------- -- Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ Brookplus-users mailing list Bro...@li... https://lists.sourceforge.net/lists/listinfo/brookplus-users |
|
From: Discussion a. B. u. <bro...@li...> - 2009-10-22 07:55:41
|
Thank you reply, Gaurav. Discussion among Brook+ users <bro...@li...> wrote (Thu, 22 Oct 2009 11:56:25 +0530) > I am getting the expected results. Try to check error and errorLog on your > output stream. Hmm, I don't find error messages. Installed software status are as follows. CAL: (/usr/local/atical/bin/lnx32/FindNumDevices) PATH: /usr/local/atical Supported CAL Runtime Version: 1.3.185 Found CAL Runtime Version: 1.4.368 Use -? for help CAL initialized. Finding out number of devices :- Device Count = 1 CAL shutdown successful. ATI Stream SDK: PATH: /usr/local/ati-stream-sdk VER: v1.4-beta Brook+: PATH: /usr/local/Brook-1.4 VER: v1.4.1 Devices are as follows. CPU: AMD Phenom x4 9550 M/B: TA780G M2+ OS: Debian GNU/Linux Lenny (i386) CC: g++ 4.1.3 I build and run this program as follows. % brcc -o test test.br brcc -o test test.br deleting file : test.cpp deleting file : test.h deleting file : test_gpu.h % g++-4.1 -I /usr/local/Brook-1.4/sdk/include/ -L /usr/local/Brook-1.4/sdk/lib -o test test.cpp -l brook -lbrook_cal (no error) % ./test -1.155931 0.693147 0.000000 0.000000 -1.155932 -1.155933 -1.155934 0.000000 0.000000 0.000000 The method of installation of CAL is wrong? -- Kiyotaka ATSUMI, Suzuka National College of Technology Web: https://www.ka-lab.jp/ PGP Public Key: https://www.ka-lab.jp/pubkey/20090703.kiyotaka-at-ka-lab.jp.asc Finger Print: 9E2A 80B4 0F3D 424E 035F B594 991F 7795 DD6D 560F |
|
From: Discussion a. B. u. <bro...@li...> - 2009-10-22 06:51:02
|
Hi Kiyotaka,
I am getting the expected results. Try to check error and errorLog on your
output stream.
- Gaurav
-----Original Message-----
From: Discussion among Brook+ users
[mailto:bro...@li...]
Sent: Wednesday, 21 October, 2009 5:48 PM
To: bro...@li...
Subject: [Brookplus-users] I don't write scatter function.
Hi, I'm Kiyotaka.
I write scatter function as follows in brook+ 1.4.1.
----- begin test.br -----
kernel void scatter( float index<>, out float b[])
{
b[index] = index;
}
int main( void)
{
int i;
float index<10>;
float b<10>;
float input_index[10];
float input_b[10];
for ( i = 0; i < 10; i++) {
input_index[i] = i;
}
streamRead( index, input_index);
scatter( index, b);
streamWrite( b, input_b);
for ( i = 0; i < 10; i++) {
printf( "%f ", input_b[i]);
}
putchar('\n');
return 0;
}
----- end test.br -----
But this program incorrect run. For example this program output as
follows.
% ./test
-1.387920 0.693147 0.000000 0.000000 -1.387921 -1.387922 -1.387923
0.000000 0.000000 0.000000
I want this proguram output
0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0
Please tell me how it should correct of this program.
--
Kiyotaka ATSUMI, Suzuka National College of Technology
Web: https://www.ka-lab.jp/
PGP Public Key:
https://www.ka-lab.jp/pubkey/20090703.kiyotaka-at-ka-lab.jp.asc
Finger Print: 9E2A 80B4 0F3D 424E 035F B594 991F 7795 DD6D 560F
----------------------------------------------------------------------------
--
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
_______________________________________________
Brookplus-users mailing list
Bro...@li...
https://lists.sourceforge.net/lists/listinfo/brookplus-users
|
|
From: Discussion a. B. u. <bro...@li...> - 2009-10-22 05:09:05
|
Hi, everyone. Possibly, nobody is looking at this mailing list? orz... -- Kiyotaka ATSUMI, Suzuka National College of Technology Web: https://www.ka-lab.jp/ PGP Public Key: https://www.ka-lab.jp/pubkey/20090703.kiyotaka-at-ka-lab.jp.asc Finger Print: 9E2A 80B4 0F3D 424E 035F B594 991F 7795 DD6D 560F |
|
From: Discussion a. B. u. <bro...@li...> - 2009-10-21 12:38:37
|
Hi, I'm Kiyotaka.
I write scatter function as follows in brook+ 1.4.1.
----- begin test.br -----
kernel void scatter( float index<>, out float b[])
{
b[index] = index;
}
int main( void)
{
int i;
float index<10>;
float b<10>;
float input_index[10];
float input_b[10];
for ( i = 0; i < 10; i++) {
input_index[i] = i;
}
streamRead( index, input_index);
scatter( index, b);
streamWrite( b, input_b);
for ( i = 0; i < 10; i++) {
printf( "%f ", input_b[i]);
}
putchar('\n');
return 0;
}
----- end test.br -----
But this program incorrect run. For example this program output as
follows.
% ./test
-1.387920 0.693147 0.000000 0.000000 -1.387921 -1.387922 -1.387923
0.000000 0.000000 0.000000
I want this proguram output
0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0
Please tell me how it should correct of this program.
--
Kiyotaka ATSUMI, Suzuka National College of Technology
Web: https://www.ka-lab.jp/
PGP Public Key: https://www.ka-lab.jp/pubkey/20090703.kiyotaka-at-ka-lab.jp.asc
Finger Print: 9E2A 80B4 0F3D 424E 035F B594 991F 7795 DD6D 560F
|
|
From: Discussion a. B. u. <bro...@li...> - 2009-10-21 12:38:22
|
Hi, I'm Kiyotaka.
I write scatter function as follows in brook+ 1.4.1.
----- begin test.br -----
kernel void scatter( float index<>, out float b[])
{
b[index] = index;
}
int main( void)
{
int i;
float index<10>;
float b<10>;
float input_index[10];
float input_b[10];
for ( i = 0; i < 10; i++) {
input_index[i] = i;
}
streamRead( index, input_index);
scatter( index, b);
streamWrite( b, input_b);
for ( i = 0; i < 10; i++) {
printf( "%f ", input_b[i]);
}
putchar('\n');
return 0;
}
----- end test.br -----
But this program incorrect run. For example this program output as
follows.
% ./test
-1.387920 0.693147 0.000000 0.000000 -1.387921 -1.387922 -1.387923
0.000000 0.000000 0.000000
I want this proguram output
0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0
Please tell me how it should correct of this program.
--
Kiyotaka ATSUMI, Suzuka National College of Technology
Web: https://www.ka-lab.jp/
PGP Public Key: https://www.ka-lab.jp/pubkey/20090703.kiyotaka-at-ka-lab.jp.asc
Finger Print: 9E2A 80B4 0F3D 424E 035F B594 991F 7795 DD6D 560F
|
|
From: Naganna <gen...@vi...> - 2009-04-05 12:38:58
|