Fix benchmarks for SIMD: syntax change

db4
Slava Pestov 2009-09-23 20:28:48 -05:00
parent 735a093152
commit 4c10707df3
3 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ USING: accessors fry kernel locals math math.constants
math.functions math.vectors math.vectors.simd prettyprint math.functions math.vectors math.vectors.simd prettyprint
combinators.smart sequences hints classes.struct combinators.smart sequences hints classes.struct
specialized-arrays ; specialized-arrays ;
SIMD: double-4 SIMD: double
IN: benchmark.nbody-simd IN: benchmark.nbody-simd
: solar-mass ( -- x ) 4 pi sq * ; inline : solar-mass ( -- x ) 4 pi sq * ; inline

View File

@ -5,7 +5,7 @@ USING: arrays accessors io io.files io.files.temp
io.encodings.binary kernel math math.constants math.functions io.encodings.binary kernel math math.constants math.functions
math.vectors math.vectors.simd math.parser make sequences math.vectors math.vectors.simd math.parser make sequences
sequences.private words hints classes.struct ; sequences.private words hints classes.struct ;
SIMD: double-4 SIMD: double
IN: benchmark.raytracer-simd IN: benchmark.raytracer-simd
! parameters ! parameters

View File

@ -2,7 +2,7 @@
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: kernel io math math.functions math.parser math.vectors USING: kernel io math math.functions math.parser math.vectors
math.vectors.simd sequences specialized-arrays ; math.vectors.simd sequences specialized-arrays ;
SIMD: float-4 SIMD: float
SPECIALIZED-ARRAY: float-4 SPECIALIZED-ARRAY: float-4
IN: benchmark.simd-1 IN: benchmark.simd-1