On Tue, 2007-04-03 at 10:43 -0400, Chris King wrote: > On 4/3/07, skaller <[EMAIL PROTECTED]> wrote: > > I'd like to collect results from others, but so far no > > one has volunteered any. I haven't tried with MSVC++ tests. > > > > Be nice to have result for other processors. > > I've got a Mac with a 1.5GHz Core Solo, I'll volunteer some tests. > How should I go about running them?
./umk speed to see the results ./umk doc then look at the performance stuff (I use bookmarks to help). To run longer tests: python speed/measure minutes-total seconds-per-bench or in more detail: #------ command line arguments ----------------- max_test_time = 5.0 try: max_test_time = float(sys.argv[1]) except:pass # maximum allowed time per test, seconds maxtime = 5.0 try: maxtime = float(sys.argv[2]) except:pass mintime = 0.5 try: mintime = float(sys.argv[3]) except:pass gracetime = 10.0 try: gracetime = float(sys.argv[4]) except:pass process_count = 1 try: process_count = int(sys.argv[5]) except:pass #------------------------------------------- I often run 600 minutes (10 hours) with 120 second test limit. > Most of the tests under bagely/ > work (exceptions noted below); should I use the alioth shootout > scripts or do you have your own scripts I should use? The speed system is what I use for comparatives, however I haven't ported any bagley tests other than ackermann and takfp. > Broken bagley scripts (under 1.1.3rc1): Please use svn trunk .. so any bugs can be fixed and then you can check they're fixed :) The bagley code hasn't been exercise for ages and ages. Since then we got typeclasses and everything is different now. > wordfreq.flx looks like it wants Stl::HashMap to implement Sequence, > which (at least in 1.1.3rc1) it doesn't. Yes, I haven't typeclassed hash containers, in fact I haven't even typeclassed random iterators -- same old problem: not enough resources. If you want to become a developer you need to email me (or Erick) and specifically request it. -- John Skaller <skaller at users dot sf dot net> Felix, successor to C++: http://felix.sf.net ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Felix-language mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/felix-language
