Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Introduction to Object Space

Sponsored · Your Podcast. Everywhere. Effortlessly. Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
Avatar for ianozsvald ianozsvald
March 15, 2013
5.3k

Introduction to Object Space

Applied Parallel Computing at PyCon 2013 via http://ianozsvald.com (March 14th)

Avatar for ianozsvald

ianozsvald

March 15, 2013
Tweet

Transcript

  1. Problem Statement: Take II . for a in range(...): for

    b in range(...): for c in range(...): for d in range(...): rval = max(rval, func(a, b, c, d)); .
  2. Problem Statement: Take III . for a in range(...): for

    b in range(...): for c in range(...): for d in range(...): yield dict(a = a, b = b, c = c, d = d, ); .