Kalpana Kalpana (Editor)

Manycore processor

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

Manycore processors are specialist multi-core processors designed for a high degree of parallel processing, containing a large number of simpler, independent processor cores (e.g. 10s, 100s, or 1,000s). Manycore processors are used extensively in embedded computers and high-performance computing. As of July 2016, the world's fastest supercomputer (as ranked by the TOP500 list), the Chinese Sunway TaihuLight, obtains its performance from 40,960 260-core SW26010 manycore processors.

Contents

Contrast with multicore architecture

Manycore processors are distinct from multi-core processors in that: they are optimised from the outset for a higher degree of explicit parallelism, and for higher throughput (or lower power consumption) at the expense of latency and lower single thread performance.

The broader category of multi-core processors, by contrast are usually designed to efficiently run both parallel and serial code, and therefore place more emphasis on high single thread performance (e.g. devoting more silicon to out of order execution, deeper pipelines, more superscalar execution units, and larger, more general caches), and shared memory. These techniques devote runtime resources toward figuring out implicit parallelism in a single thread. They are used in systems where they have evolved continuously (with backward compatibility) from single core processors. They usually have a 'few' cores (e.g. 2,4,8), and may be complemented by a manycore accelerator (such as a GPU) in a heterogeneous system.

Motivation

Cache coherency is an issue limiting the scaling of multicore processors. Manycore processors may bypass this with tricks such as message passing, scratchpad memory, DMA, partitioned global address space, or read-only/non-coherent caches. A manycore processor using a network on a chip and local memories gives software the opportunity to explicitly optimise the spatial layout of tasks (e.g. as seen in tooling developed for TrueNorth).

Manycore processors may have more in common (conceptually) with technologies originating in high performance computing such as clusters and vector processors.

GPUs may be considered a form of manycore processor having multiple shader processing units, and only being suitable for highly parallel code (high throughput, but extremely poor single thread performance).

Suitable programming models

  • Message passing interface
  • OpenCL or other APIs supporting compute kernels
  • Partitioned global address space
  • Actor model
  • OpenMP
  • Dataflow
  • Examples

  • Sunway TaihuLight, a Chinese supercomputer using a home grown manycore architecture.
  • GPUs, which can be described as manycore vector processors
  • Xeon Phi coprocessor, referred to as MIC (Many Integrated Cores)
  • Knights Landing (microarchitecture) manycore CPU, the successor to Xeon Phi
  • Tilera
  • adapteva Epiphany Architecture, a manycore chip using PGAS scratchpad memory
  • Coherent Logix hx3100 Processor, a 100-core DSP/GPP processor based on HyperX Architecture
  • Movidius Myriad 2, a manycore Vision processing unit
  • kalray, a manycore PCI-e accelerator for data-intensive tasks
  • Teraflops Research Chip a manycore processor using message passing
  • TrueNorth a neuromophic processor with a manycore network on a chip architecture.
  • Massively parallel processor array
  • Asynchronous array of simple processors
  • Green arrays a manycore processor using message passing aimed at low power applications
  • Eyeriss, a manycore processor designed for running convolutional neural nets for embedded vision applications
  • SpiNNaker
  • XMOS Software Defined Silicon quad-core XS1-G4
  • References

    Manycore processor Wikipedia