As someone who uses supercomputers, I'm not sure I entirely understand the market of this product. It's really cool and I'd love to have one to tinker with, but due to its high parallelization, I see no benefit of using this over a graphics card. I'm not sure if $99 can get you a GPU that reaches 90 GFlops though... perhaps that's where the benefit lies. EDIT: After reviewing their website, I notice they state > One…
You can get close to 1TF in the GPU space for $99 these days, but at much lower power efficiency. The Adapteva hardware looks to be around 18GF/W, whereas a GPU is about half that at $99.
Parallella, a $99 Linux Supercomputer
131–140 of 171 posts
Re: Parallella, a $99 Linux Supercomputer
#132I'm really disappointed about how shallow the discussions about Adapteva are, and have been, on HN. To remind everyone, the H = hacker. This device is a godsend, as far as I'm concerned. For the first time ever I get fully documented access to compute array on chip. No the architecture wasn't designed for anything specific, like graphics, but that means I don't get bogged down in details I don't care about, like some…
And the Adapteva is similar. From what it sounds like, you just have this brute power at your fingertips. I'll read into the specs a little bit, but it sounds frankly awe inspiring even before opening them up. Want to PWM control 500 leds individually? From what it sounds like in this article, the thing got power for double (off the top of my head). Want to create stereooptic 3d models using a camera and an IMU in real time? It sounds like it can do that (over the thumb calculation). Want to overlay your own 3d models into it and display them using the occulus 3d?
What I'm trying to get across is, if you're not as excited as if you found out santa is real, you're not excited enough.
EDIT: THERE'S A D*"§ FPGA ON THAT THING!!!! I'll stop datasheeting to avoid hyperventilation.
Re: Parallella, a $99 Linux Supercomputer
#133Earlier quoted context omitted.
If you are correct for the first clause(8 Flops/MHz), 45GHz of Ivy Bridge core has 360k Flops (8 Flops/MHz * 45GHz ==> 8 Flops * 45k).
8 double-precision flops/cycle/core is the correct figure for Ivy Bridge and Sandy Bridge. With Haswell adding FMA, that figure doubles again(!)
Doing 8 double-precision instructions per cycle would translate to either four 128-bit SSE instructions, or two 256-bit AVX instructions per cycle, which is not possible (unless I did not keep track of the latest AVX capabilities).
Re: Parallella, a $99 Linux Supercomputer
#134Earlier quoted context omitted.
It's a developer board. The product is the chips, not this board. This board is there mainly to get a dev board in the hands of people who might want to build cool stuff with it. That they've actually managed to get it price competitive with a lot of cheap ARM computers, despite sporting a Zynq (ARM SoC with built in FPGA) is amazing.
Can't help but wonder if they are in fact taking a loss, backed by Adapteva.
So, the backers are getting a Very Good Deal, with the hopes that a successful launch will make demand high enough to make the $99 viable with volume.
Re: Parallella, a $99 Linux Supercomputer
#135Can it mine BitCoin competitively?
> Can it mine BitCoin competitively? Prior to the popularity of mining using GPUs, it would have been the shizzle. Today's ASIC-based systems will hash circles around it.
Re: Parallella, a $99 Linux Supercomputer
#136I can think of some amazing uses for this. I'm tempted to get one just to port this old hack of mine to it: http://adam.ierymenko.name/nanopond.shtml
Re: Parallella, a $99 Linux Supercomputer
#137I can think of some amazing uses for this. I'm tempted to get one just to port this old hack of mine to it: http://adam.ierymenko.name/nanopond.shtml
Re: Parallella, a $99 Linux Supercomputer
#138Re: Parallella, a $99 Linux Supercomputer
#139If I were to ever get a Desktop machine again, it would have to be cheap and light, definitely don't want anything clunky, otherwise a laptop seems preferable to me. There do not seem that many products that would fill that gap, Intel's NUC is too expensive, the Raspberry PI too slow. Apple's mini Mac seems like the best proposition in this segment.
I wonder if the Parallela could not only be used as development center, but also as a Desktop computer? It won't run any fancy games, that's clear, but it may actually be usable for browsing, watching videos and office duties.
Re: Parallella, a $99 Linux Supercomputer
#140Earlier quoted context omitted.
Could it be good for path finding and other NP Hard problems? It could do good things for the AI world if that's the case.
First of all, which is the NP-hard pathfinding problem you're talking about? When I hear "pathfinding" I think "shortest path", which is (deterministic) polynomial time (exact class dependant on exactly which variant of the problem, but even Floyd-Warshall is Θ(|V|³)). --- Anyway, no. If you have an NP-hard problem, and you want an exact answer (i.e. you are denying yourself approximate solutions), and you want to so…
Most commonly, yes, though in practice superlinear speedups can occur in some situations. (Not that this negates your overall point, just a nitpick.)