You're looking at Less Wrong's discussion board. This includes all posts, including those that haven't been promoted to the front page yet. For more information, see About Less Wrong.

BrassLion comments on LINK: Nematode brain uploaded with success - Less Wrong Discussion

3 Post author: polymathwannabe 23 December 2014 11:27PM

You are viewing a comment permalink. View the original post to see all comments and the full post content.

Comments (19)

You are viewing a single comment's thread. Show more comments above.

Comment author: BrassLion 24 December 2014 02:17:09AM 2 points [-]

For those of you not familiar with the technology, Python is a programming language not know for speed and the Raspberry Pi is a cheap, low-powered computer smaller than your palm.

For those of you familiar with the technology, this is just another reason why Python is amazing.

Comment author: skeptical_lurker 24 December 2014 10:59:24AM 5 points [-]

Basic Python is very slow, but numerical computing libraries such as Numpy are almost as fast as C, and Cython can compile Python into C if you add in type declarations. (more reasons why Python is awsome!)

I would imagine that you might use numerical computing libraries for neural simulations, so their program might have been running at close to C speeds.