[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 173: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3823)
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 174: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3823)
Parallella Community Supercomputing for Everyone 2015-04-19T00:14:47+00:00 https://parallella.org/forums/feed.php?f=18&t=2317 2015-04-19T00:14:47+00:00 2015-04-19T00:14:47+00:00 https://parallella.org/forums/viewtopic.php?t=2317&p=13515#p13515 <![CDATA[Re: communication time]]>
If you can find another OpenCL library for the epiphany give it a try and let us all know how it goes.

Personally, I'm not concerned about bandwidth issues. It is something that I can't control and will improve over time. I'm just focused on getting efficient routines working correctly. The efficiency comes from the optimal use of all of the power available within the constraints of the platform. Communication overhead is just one of those constraints.

Statistics: Posted by nickoppen — Sun Apr 19, 2015 12:14 am


]]>
2015-04-18T18:51:44+00:00 2015-04-18T18:51:44+00:00 https://parallella.org/forums/viewtopic.php?t=2317&p=13512#p13512 <![CDATA[Re: communication time]]> Statistics: Posted by Nader_Jendoubi — Sat Apr 18, 2015 6:51 pm


]]>
2015-04-18T05:58:57+00:00 2015-04-18T05:58:57+00:00 https://parallella.org/forums/viewtopic.php?t=2317&p=13509#p13509 <![CDATA[Re: communication time]]>
I don't think that there is any technical way of reducing the transmission time. The fundamental speed is governed by the bandwidth of the channel.

Having said that:

1. Only send data that you need to send and no more
2. copy the inbound data to local storage, process it locally and then transmit the results (see ).
3. Keep the kernel itself as small as you can
4. try and figure out a way of sending the next block of data while the kernel is still running (if you find a way to do this please let me know)

nick

Statistics: Posted by nickoppen — Sat Apr 18, 2015 5:58 am


]]>
2015-04-17T14:37:52+00:00 2015-04-17T14:37:52+00:00 https://parallella.org/forums/viewtopic.php?t=2317&p=13506#p13506 <![CDATA[communication time]]>
i'm trying to optimize the sobel application https://github.com/sclukey/parallella-o ... ter/opencl

I think the transmission time between epiphany(kernel) and ARM is too long, when i took the initial sobel program and delete all the instructions and i tried gbb[i] = gaa[i]

the time measured is 0.33 second .

Is there any solution to minimize the transmission time between ARM and epiphany ???

Statistics: Posted by Nader_Jendoubi — Fri Apr 17, 2015 2:37 pm


]]>