What can you do with Parallella? - that question still haunts me in the night. Even though we wrote the scheduler application before, I think we all agree that there must be a better way to utilize Epiphany chip. In the search for a better usecase, I found a Tensorflow port for microcontrollers. That got me thinking...
Category Archives: C/C++
# Parallella (part 11): malloc
If I were to name one thing that makes modern programming languages great, I'd pick dynamic memory allocator (often interfaced via malloc/free functions). Imagine yourself keeping track of memory allocations, drowning in seemingly random addresses, and handling the fragmentation manually... Madness to say, at least.
# Parallella (part 10): Power efficiency
Power consumption undoubtedly is one of the most important factors we look at today. Whether it's your smartphone, tablet, laptop, or machine in the datacenter, the goal is the same. You want to get the best possible performance for the lowest power cost.
# Parallella (part 5): elibs
In previous articles, such as Kernel or ISA, we saw how complicated interacting with Epiphany chip could be. A whole bunch of registers, memory banks, and funky addressing scheme. It's a lot to know, for someone who just wants to run a "hello world" program... If only we had some C library that would hide all this complex logic from us?!