Skip to content

24. Omega Networks

Apr 12, 2021

Omega Networks (cont.)

img

  • omega networks built using shuffle exchange
  • number of wires/nodes = 4
  • Hardware cost HW$=Θ(P)+#stagescost of stage=P+logP×P/2=Θ(PlgP)
  • Latency <2lgP (logP == number of stages)
  • Work = THW$
  • everything is slowed down a log factor on this hardware
  • there are embedded binary trees in the hardware → we can do associative ops in same time as PRAM: WlogP

How to enforce EREW/CREW/CRCW?

  • EREW: runtime error if using the same wires
  • CRCW: use combining switch that does combining
    • remembers that outgoing message must follow along multiple wires
    • broadcast reads on both output wires

Writes

  • common: combine messages, do 1 write
  • arbitrary: randomly drop message
  • priority: compare sources and drop lower priority message

Not all permutations are possible → can have blocks

  • such network is called blocking network
  • combining does not help because the carried values may be different
  • need higher bandwidth to carry more values

Are there non-blocking networks?

  • yes, solution exists for non-blocking networks of depth Θ(logP)
  • on practice there exists depth Θ(lg2P)
  • simplest: omega network repeated logP times
  • routing of this network gets very complicated and requires an additional controller connected to all stages → controller computes route over logP stages offline

Pipelining

The logarithmic overhead of omega network does not always apply, e.g.

z sets
1 lgP
2 +1
3 +1
  • HW$=Tz=logP+(z1)
  • W=Tz(PlgP)<Plg2P+zPlgP=Θz(PlgP) (amortized)
  • make z>lgP to amortize the HW$ overhead → good for pipelining

Recirculating Network

Idea is to use one stage to perform as if there were multiple stages.

img

Complications:

  • each switch must have a counter to know which action to perform on input; counter is mod logP
  • need to store logP routing info
  • pro: HW$ is now Θ(P)
  • has same blocking issue, cannot pipeline
  • this is not a universal hardware → need to know what you are doing when using it!

Prefix sum with omega network

Read 2 inputs, add, send up

N=8, P=7, NP

P=2L1=2N21=Θ(N)

img

  • T(1)=Θ(lgN)
  • T(2)=+1
  • T(7)=+1
  • T=Θ(lgN)+21
  • W=Θ(NlgN)+Θ(P2)