[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]/includes/bbcode.php on line 112: 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-10-19T20:24:23+00:00 https://parallella.org/forums/feed.php?f=9&t=140 2015-10-19T20:24:23+00:00 2015-10-19T20:24:23+00:00 https://parallella.org/forums/viewtopic.php?t=140&p=15996#p15996 <![CDATA[Re: Ruby on Epiphany]]>
thread in basic virtual machine i c ruby is still for one processor.

Statistics: Posted by xoru — Mon Oct 19, 2015 8:24 pm


]]>
2013-11-18T12:49:36+00:00 2013-11-18T12:49:36+00:00 https://parallella.org/forums/viewtopic.php?t=140&p=4767#p4767 <![CDATA[Re: Ruby on Epiphany]]>
There are both some big challenges and opportunities: On one hand, executing Ruby is conceptually very simple: Pretty much everything is a method call (and optimizing away the method calls is hard). On the downside, pretty much everything is a method call. This means that even simple things like an addition potentially consists of dozens of instructions. Ruby also wastes lot of memory on meta-data about the objects and classes.

I'm working on a Ruby compiler, and would love to be able to get it to the point were generating code to run straight on Epiphany cores was realistic, but for now at least, the class hierarchy itself would exhaust the memory of a Epiphany core and force lots of access to off-core memory.

It might be better to provide Ruby on the host and focus on something similar to Ruby Inline to allow you to write Epiphany code in Ruby. E.g. start with a module to allow you to inline Epiphany assembly, and then layer convenience methods to built higher level code for it as a way to accelerate specific functionality.

Statistics: Posted by vidarh — Mon Nov 18, 2013 12:49 pm


]]>
2013-06-07T11:47:45+00:00 2013-06-07T11:47:45+00:00 https://parallella.org/forums/viewtopic.php?t=140&p=2143#p2143 <![CDATA[Re: Ruby on Epiphany]]> https://github.com/mattn/mruby-thread

Haven't got much time to tinker with it or see if it works, but if it works then it could be an excellent starting point for an epiphany version. This post is more for my future self's own benefit than anything, but if anyone wants to give this a go please let me know!

Statistics: Posted by undecided — Fri Jun 07, 2013 11:47 am


]]>
2013-02-08T07:05:24+00:00 2013-02-08T07:05:24+00:00 https://parallella.org/forums/viewtopic.php?t=140&p=872#p872 <![CDATA[Re: Ruby on Epiphany]]> Statistics: Posted by olivererxleben — Fri Feb 08, 2013 7:05 am


]]>
2013-02-06T12:40:41+00:00 2013-02-06T12:40:41+00:00 https://parallella.org/forums/viewtopic.php?t=140&p=862#p862 <![CDATA[Re: Ruby on Epiphany]]>
Given the host is simply an arm device that can run Ubuntu, ruby will already be available (both as binaries, and probably via something like RVM) and it will run a sinatra / rails app without breaking a sweat. The epiphany sdk gem will be the interesting part - something that mimics the standard Thread library would be pretty amazing. Not sure whether that would be feasible, or whether the memory available to each 'daughter' CPU would limit what Ruby would be able to do.

Another possibility is mruby - an MRB gem may solve some of the problems above.

Need to do more research, but yeah - full ruby support would be pretty epic!

Statistics: Posted by undecided — Wed Feb 06, 2013 12:40 pm


]]>
2013-01-28T15:11:42+00:00 2013-01-28T15:11:42+00:00 https://parallella.org/forums/viewtopic.php?t=140&p=763#p763 <![CDATA[Ruby on Epiphany]]>
thanks again to 9600 and the other staff on the parallella-project. Great work so far what I have seen.

In case there is interest in having ruby to do multi- and many-core programming on a parallella board, this topic is right for ideas, thoughts and (technical) design questions.

I will update this post here with upcoming ideas, questions, ...

First some initial specifications/ideas
* The ruby implementation should offer the same features as the c/c++ implementation.
* should be possible to test via simulator

The Project should offer:
* a ruby gem (the product) as a wrapper for the epiphany sdk (cause rubygems are C Extensions for Ruby in many cases)
* a cli based project-tool. Like the way RubyOnRails or RubyMotion offer, so you can use an editor+terminal or eclipse/ide and use these build tools. Free for decision.

Questions so far:
* As I understand the Epiphany Architecture, we do not need to build ruby on top of Epiphany?! Is that right? So a comprehensive ruby lib which uses the c lib should do the trick?

Use Cases:
* The first use case that comes in mind is having easy access to epiphany with a ruby framework like sinatra or rails.

Thanks for reading,

Oli

Statistics: Posted by olivererxleben — Mon Jan 28, 2013 3:11 pm


]]>