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
ianozsvald
March 15, 2013
1
5.2k
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
Valuable Lessons Learned on Kaggle’s ARC AGI LLM Challenge (PyDataGlobal 2024)
ianozsvald
0
250
Valuable Lessons Learned on Kaggle’s ARC AGI LLM challenge
ianozsvald
0
160
ARC AGI Kaggle with llama3 - First Steps
ianozsvald
0
170
Failing to reason with LLMs (ARC AGI kaggle update with Llama3)
ianozsvald
0
87
Llama.cpp for fun (and maybe profit) - 30 minute
ianozsvald
0
180
Llama.cpp for fun (and maybe profit) - 30 minute
ianozsvald
0
94
Llama.cpp for fun (and maybe profit)
ianozsvald
0
86
CuDF – Maybe faster Pandas on the GPU via RAPIDS (NVIDIA)
ianozsvald
0
150
Running llama.cpp on the CPU
ianozsvald
0
460
Featured
See All Featured
Statistics for Hackers
jakevdp
797
220k
Building an army of robots
kneath
303
45k
Speed Design
sergeychernyshev
28
820
Building a Scalable Design System with Sketch
lauravandoore
461
33k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
32
2.2k
Site-Speed That Sticks
csswizardry
4
420
A Tale of Four Properties
chriscoyier
158
23k
Testing 201, or: Great Expectations
jmmastey
42
7.2k
How to train your dragon (web standard)
notwaldorf
91
5.9k
VelocityConf: Rendering Performance Case Studies
addyosmani
328
24k
Become a Pro
speakerdeck
PRO
26
5.2k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
330
21k
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 .