[pypy-svn] r15020 - pypy/dist/pypy/translator/goal

hpk at codespeak.net hpk at codespeak.net
Mon Jul 25 15:21:18 CEST 2005


Author: hpk
Date: Mon Jul 25 15:21:18 2005
New Revision: 15020

Modified:
   pypy/dist/pypy/translator/goal/ISSUES.txt
Log:
a few more notes on how to run the translation 


Modified: pypy/dist/pypy/translator/goal/ISSUES.txt
==============================================================================
--- pypy/dist/pypy/translator/goal/ISSUES.txt	(original)
+++ pypy/dist/pypy/translator/goal/ISSUES.txt	Mon Jul 25 15:21:18 2005
@@ -197,9 +197,21 @@
 How to work in parallel:
 There is an environment variable to be set with your personal random seed.
 Seeds taken so far are
-Armin: 42, Samuele: 46, Chris: 49, Arre: 97
+Armin: 42, Samuele: 46, Chris: 49, Arre: 97, hpk/rxe: 23
 Under Windows, use
 SET RTYPERSEED=xx
 where xx is your seed. When you run translate_pypy, you will get a message
 with your seed, if everything is fine. The purpose of the seed is to
 shuffle the annotated blocks, in order to create different errors.
+
+To get the above RTYPER problems, do:: 
+
+    RTYPERORDER=order,SOMEFILE 
+    # stopping on the first error
+    python translate_pypy.py -no-c -no-o -fork -text  -t-insist
+
+    # seeing things in the graph
+    python translate_pypy.py -no-c -no-o 
+
+In the SOMEFILE you put: 
+    pypy.rpython.rarithmetic.ovfcheck_float_to_int 



More information about the Pypy-commit mailing list