diff --git a/extra/benchmark/nbody-simd/nbody-simd.factor b/extra/benchmark/nbody-simd/nbody-simd.factor index 6648c52639..2797558a4b 100644 --- a/extra/benchmark/nbody-simd/nbody-simd.factor +++ b/extra/benchmark/nbody-simd/nbody-simd.factor @@ -2,9 +2,8 @@ ! See http://factorcode.org/license.txt for BSD license. USING: accessors alien.c-types fry kernel locals math math.constants math.functions math.vectors math.vectors.simd -prettyprint combinators.smart sequences hints classes.struct -specialized-arrays ; -SIMD: double +math.vectors.simd.cords prettyprint combinators.smart sequences +hints classes.struct specialized-arrays ; IN: benchmark.nbody-simd : solar-mass ( -- x ) 4 pi sq * ; inline diff --git a/extra/benchmark/raytracer-simd/raytracer-simd.factor b/extra/benchmark/raytracer-simd/raytracer-simd.factor index 5a3c232b5a..45407e5ad2 100644 --- a/extra/benchmark/raytracer-simd/raytracer-simd.factor +++ b/extra/benchmark/raytracer-simd/raytracer-simd.factor @@ -3,10 +3,9 @@ USING: arrays accessors io io.files io.files.temp io.encodings.binary kernel math math.constants math.functions -math.vectors math.vectors.simd math.parser make sequences -sequences.private words hints classes.struct ; +math.vectors math.vectors.simd math.vectors.simd.cords math.parser +make sequences sequences.private words hints classes.struct ; QUALIFIED-WITH: alien.c-types c -SIMD: c:double IN: benchmark.raytracer-simd ! parameters