500mhz Atom compute module for $50 ?

Discussion of chess software programming and technical issues.

Moderators: hgm, Rebel, chrisw

wgarvin
Posts: 838
Joined: Thu Jul 05, 2007 5:03 pm
Location: British Columbia, Canada

500mhz Atom compute module for $50 ?

Post by wgarvin »

I noticed the other day that Adafruit sells an Intel Edison Compute Module. Its a 500mhz intel Atom with 1GB of memory in a relatively small form factor, meant for use in embedded projects that require more compute power than the usual microcontrollers can provide. It has wireless, but I'm not sure how to hook up wired Ethernet to it. Anyhoo..

I'm not crazy enough to try and do it, but it did occur to me that it might be interesting to get, e.g. 64 of these and try to build a dedicated chess machine out of them.

Though I guess these days, you'd get more bang for your buck from a Phi coprocessor PCI card, which is same order of magnitude cost. oh well. =)
matthewlai
Posts: 793
Joined: Sun Aug 03, 2014 4:48 am
Location: London, UK

Re: 500mhz Atom compute module for $50 ?

Post by matthewlai »

wgarvin wrote:I noticed the other day that Adafruit sells an Intel Edison Compute Module. Its a 500mhz intel Atom with 1GB of memory in a relatively small form factor, meant for use in embedded projects that require more compute power than the usual microcontrollers can provide. It has wireless, but I'm not sure how to hook up wired Ethernet to it. Anyhoo..

I'm not crazy enough to try and do it, but it did occur to me that it might be interesting to get, e.g. 64 of these and try to build a dedicated chess machine out of them.

Though I guess these days, you'd get more bang for your buck from a Phi coprocessor PCI card, which is same order of magnitude cost. oh well. =)
Not really worth it for $/perf.

An Atom has about 1/2 the instruction per clock of a recent Intel desktop CPU, so a 500 MHz Atom would be roughly equivalent to 1 core of a 250 MHz Haswell for example.

You can get a i5-4690k (3.5 GHz quad) for about $230 (maybe $400 including motherboard and memory). That's equivalent to about 56 Atoms assuming linear scaling. Of course, as we all know, scaling is never linear. In reality, a single i5-4690k will be much faster than 56 Atoms.
Disclosure: I work for DeepMind on the AlphaZero project, but everything I say here is personal opinion and does not reflect the views of DeepMind / Alphabet.
User avatar
sje
Posts: 4675
Joined: Mon Mar 13, 2006 7:43 pm

Testing shows

Post by sje »

For a multithreaded bitboard program:

A single 3.0 GHz Core i7-5860X = 65.6 x 1.6 GHz Atom
User avatar
sje
Posts: 4675
Joined: Mon Mar 13, 2006 7:43 pm

Edison

Post by sje »

SparkFun also sells many (all?) of the Edison boards and blocks. See: https://www.sparkfun.com/categories/272

Edison is just one of the boards I researched for utilization in a multiple CPU chess processor. Basically, it's a nice board but it just doesn't have enough power compared to other similarly priced boards.

Indeed, until some of these US$30 to US$60 boards start offering 64 bit CPUs, they will likely remain non-competitive with desktop systems for throughput value.

The new 900 MHz Raspberry Pi model B2 quad core plus a required SD card is less expensive than an Edison and has more throughput. But that board also is limited to 100 Mbps Ethernet speed and so will place inter-thread/inter-process communications restrictions on any program compared to a program running on a multicore desktop CPU.