Dreadlockyx Posted February 1, 2013 Author Posted February 1, 2013 I've got the first version Raspberry Pi (I think 128MB). Not sure if it'll run... Quote
Bobnova Posted February 1, 2013 Posted February 1, 2013 Nope, didn't move in the slightest overnight. I'm on a vanilla 256MB pie. Quote
Devroush Posted February 5, 2013 Posted February 5, 2013 (edited) The estimating speed part was pretty slow, 10 min is "normal". I made some changes to the code a few days ago so that it just reads the speed from a OS file, it's pretty much instant now. The benchmark itself gives you regular progress updates, but slows down near the end. But yeah it took me +2 hr with the cpu OCed to 1 GHz . Crazy if you see that the same work can be done in 30 seconds on a modern pc. What OS/Java version do you have? I have Raspbian hard float ABI installed. Java version: dennis@raspberrypi ~ $ java -version java version "1.7.0_07" OpenJDK Runtime Environment (IcedTea7 2.3.2) (7u7-2.3.2a-1+rpi1) OpenJDK Zero VM (build 22.0-b10, mixed mode) http://hwbot.org/submission/2350613_devroush_hwbotprime_arm1176_s_2h_39min_19sec_5ms Edited February 5, 2013 by Devroush Quote
Devroush Posted February 6, 2013 Posted February 6, 2013 Just tried a java 8 preview, that adds support for arm hf architectures to java, a benchmark run now completes in half an hour. Certainly an improvement. http://www.savagehomeautomation.com/projects/raspberry-pi-installing-oracle-java-se-8-with-javafx-develop.html Quote
Bobnova Posted February 7, 2013 Posted February 7, 2013 (edited) Trying the new benchbot and new Java, just started the bench. As I type the above I just got the first update! Looks like it's working. Further updates as events warrant. Thanks guys! EDIT: http://hwbot.org/submission/2353479_ I like this benchmark, giving a link to use for people SSHing into CLI is awesome. Edited February 7, 2013 by Bobnova Quote
zzolio Posted February 7, 2013 Posted February 7, 2013 just ordered a Raspberry Pi version B hope it comes next week Quote
Devroush Posted February 7, 2013 Posted February 7, 2013 Got a 35min score on my 200Mhz Netgear ReadyNAS 200. http://hwbot.org/submission/2353620_richba5tard_hwbotprime_arm926ej_s_35min_1sec_716ms 28 min, Pi supremacy! Although I must admit I had hoped it would've been faster. http://hwbot.org/submission/2353668_devroush_hwbotprime_arm1176_s_28min_21sec_125ms/ Quote
geoffrey Posted May 22, 2013 Posted May 22, 2013 Arch linux might do a better job as it has less overhead? Quote
geoffrey Posted May 23, 2013 Posted May 23, 2013 looking forward to explore the Raspberry-pi in different ways than I'm doing now, but it will have to wait until I get back to Belgium in august. richba5tard, who wrote/writes the code of this benchmark anyway? I've been having the same idea for quite a long time but never came to finish something. Maybe I'll try to write/add openCl functionality, some Java wrapper libraries have appeared but I'm not sure if they allow the same functionality as native OpenCL C/C++ applications. Until now I didn't found OpenCL to be as platform independent as they claim it to be. Code compiled for one system seems to act different on other machines, even though the openCL program is only compiled at runtime. Quote
geoffrey Posted May 28, 2013 Posted May 28, 2013 offtopic, but: what kind of IDE are you using? In Netbeans I can't properly import the source files without manually creating each file and copying its content. Quote
Massman Posted May 28, 2013 Posted May 28, 2013 Picked up one of these today ... no idea how to get the benchmark running, but I'm trying! Quote
geoffrey Posted May 28, 2013 Posted May 28, 2013 install a java virtual machine: sudo apt-get update sudo apt-get instal openjdk-7-jre download the compiled zip, unzip it, and open the directory with a terminal, then execute the jar file: java -jar filename.jar Quote
Massman Posted May 28, 2013 Posted May 28, 2013 Yeah. I need to set up the internet connection first . (ps: how's it going, Geoffrey? Long time no speak!) Quote
geoffrey Posted May 28, 2013 Posted May 28, 2013 ah, hmm, DHCP right? With Raspbian I got it more or less working without much hassle. Me, I'm fine, thanks for asking I'm still in Portugal for a few more weeks, enjoying the sun, beaches, good food and nice parties off course Since I started my school carrier again I haven't been fooling around with hardware anymore. Well... not in a way of making it faster... But one never looses the thrill of playing around with hardware right It's nice to see you're still doing this hwbot thing, I never expected OC to stay so successful, muito fixe Quote
geoffrey Posted May 29, 2013 Posted May 29, 2013 hah, yeah, I could already imagine that would not be a smart thing to do, adding that to the git Well I managed to get it working in netbeans, I don't know exactly where to put the C codes but the program functions without so it seems, I only have the .so file in the same directory as the jar file I build through netbeans. Anyway, looking at the code gives me more questions than was hoping for. I don't really understand for example why you use the return statements in the constructor like you do in the following line of code: @Override public Benchmark instantiateBenchmark() { BenchmarkConfiguration configuration = new BenchmarkConfiguration(); configuration.setValue(PrimeBenchmark.TIME_SPAN, TimeUnit.SECONDS.toMillis(10)); configuration.setValue(PrimeBenchmark.SILENT, false); return new PrimeBenchmark(configuration, super.availableProcessors, super.progressBar); } The ThreadFactory is also something I haven't read upon yet, until now I was always manually creating threads and executing them through calling the start() method. Hmmm, inspiring Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.