[pypy-commit] extradoc extradoc: Update

arigo noreply at buildbot.pypy.org
Wed Jul 16 17:13:46 CEST 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: extradoc
Changeset: r5356:f11577c01209
Date: 2014-07-16 17:13 +0200
http://bitbucket.org/pypy/extradoc/changeset/f11577c01209/

Log:	Update

diff --git a/talk/ep2014/stm/talk.rst b/talk/ep2014/stm/talk.rst
--- a/talk/ep2014/stm/talk.rst
+++ b/talk/ep2014/stm/talk.rst
@@ -45,13 +45,15 @@
   for C: simplify your life for some problems, with a
   reasonable performance cost
 
-- the problems are:
+- this is about anything where the GIL is a blocker, obviously
 
-  - anything where the GIL is a blocker, obviously
+- but also any program with "often-parallelizable" sections of
+  code
 
-  - but also any program with "often-parallelizable"
-    sections of code
-
+- there are actually a lot of such programs around when we think about
+  it: Bottle, Twisted, Tornado, etc. serve multiple clients; many
+  CPU-consuming programs at some point need to iterate over some
+  large-ish data structure in some mostly-composable way; etc.
 
 
 ===========================================
@@ -99,11 +101,3 @@
 
 - picture with nursery -- the GC can use the same write barrier
 
-
-
-===========================================
-Part 3 - Multithreading Revisited
-===========================================
-
-
-- 


More information about the pypy-commit mailing list