This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| hogehoge |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ahya@debian:~/work/NPB3.0/NPB3.0-RUB$ which jruby | |
| /usr/local/jruby-1.6.0.RC1/bin/jruby | |
| ahya@debian:~/work/NPB3.0/NPB3.0-RUB$ jruby --version | |
| jruby 1.6.0.RC1 (ruby 1.8.7 patchlevel 330) (2011-01-10 769f847) (OpenJDK Client VM 1.6.0_18) [linux-i386-java] | |
| ahya@debian:~/work/NPB3.0/NPB3.0-RUB$ jruby -d LU.rb -CLASSS -serial | |
| warning: could not compile: LU.rb because of: "Unknown constant tag 111 in class file LU" | |
| java.lang.ClassFormatError: Unknown constant tag 111 in class file LU | |
| at java.lang.ClassLoader.defineClass1(Native Method) | |
| at java.lang.ClassLoader.defineClass(ClassLoader.java:634) | |
| at org.jruby.util.JRubyClassLoader.defineClass(JRubyClassLoader.java:76) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module m_CGBase | |
| implicit none | |
| type :: t_CGBase | |
| character :: CLASS | |
| integer :: na | |
| integer :: nonzer | |
| integer :: niter | |
| double precision :: shift | |
| double precision :: rcond | |
| double precision :: zeta_verify_value |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public double vranlc(double n, double x, double a, double y[],int offset){ | |
| long Lx = (long)x; | |
| long La = (long)a; | |
| for(int i=0;i<n;i++){ | |
| Lx = (Lx*La) & (i246m1); //long i246m1 = pow(2, 46) - 1 | |
| y[offset+i] = (double)(d2m46* Lx); //double d2m46 = pow(0.5, 46) | |
| } | |
| return (double) Lx; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| メッセージ投げたい場合はここに書くとたまに見るかもしれません |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html> | |
| <head><title></title></head> | |
| <body> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| processor : 0 | |
| vendor_id : GenuineIntel | |
| cpu family : 6 | |
| model : 44 | |
| model name : Intel(R) Xeon(R) CPU X5670 @ 2.93GHz | |
| stepping : 2 | |
| cpu MHz : 2932.602 | |
| cache size : 12288 KB | |
| physical id : 0 | |
| siblings : 6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| processor : 0 | |
| cpu : POWER7 (architected), altivec supported | |
| clock : 3550.000000MHz | |
| revision : 2.1 (pvr 003f 0201) | |
| processor : 1 | |
| cpu : POWER7 (architected), altivec supported | |
| clock : 3550.000000MHz | |
| revision : 2.1 (pvr 003f 0201) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for(var i=0;i<20;i++){var elem = document.querySelectorAll(".langbtn")[2]; var evt = document.createEvent( "MouseEvents" );evt.initEvent( "mouseup", false, true ); elem.dispatchEvent( evt ); } |
OlderNewer