Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Introduction to Object Space
Search
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
ianozsvald
March 15, 2013
1
5.3k
Introduction to Object Space
Applied Parallel Computing at PyCon 2013 via
http://ianozsvald.com
(March 14th)
ianozsvald
March 15, 2013
Tweet
Share
More Decks by ianozsvald
See All by ianozsvald
LLMs vs Chess
ianozsvald
0
50
Amusing Abliteration
ianozsvald
0
120
playgroup - PyDataLondon 2025-10 Lightning Talk
ianozsvald
0
32
Successful Projects through a bit of Rebellion
ianozsvald
0
94
Valuable Lessons Learned on Kaggle’s ARC AGI LLM Challenge (PyDataGlobal 2024)
ianozsvald
0
480
Valuable Lessons Learned on Kaggle’s ARC AGI LLM challenge
ianozsvald
0
250
ARC AGI Kaggle with llama3 - First Steps
ianozsvald
0
270
Failing to reason with LLMs (ARC AGI kaggle update with Llama3)
ianozsvald
0
130
Llama.cpp for fun (and maybe profit) - 30 minute
ianozsvald
0
250
Featured
See All Featured
Navigating the Design Leadership Dip - Product Design Week Design Leaders+ Conference 2024
apolaine
0
210
WCS-LA-2024
lcolladotor
0
470
Thoughts on Productivity
jonyablonski
75
5.1k
SEOcharity - Dark patterns in SEO and UX: How to avoid them and build a more ethical web
sarafernandez
0
130
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
287
14k
Kristin Tynski - Automating Marketing Tasks With AI
techseoconnect
PRO
0
180
The Curse of the Amulet
leimatthew05
1
9.4k
Public Speaking Without Barfing On Your Shoes - THAT 2023
reverentgeek
1
330
How to build a perfect <img>
jonoalderson
1
5.2k
WENDY [Excerpt]
tessaabrams
9
36k
Building the Perfect Custom Keyboard
takai
2
700
sira's awesome portfolio website redesign presentation
elsirapls
0
170
Transcript
Exploiting Parallelism: Object Space Whiteboard → Producer(s) Consumers → .
.
Problem Statement: Take I . rval = max(rval, func(a, b,
c, d ...)); .
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)); .
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, ); .
Solutions .