Fix some load errors in various places
parent
5b924ff910
commit
48d3f10c81
|
@ -20,8 +20,9 @@ ERROR: bad-base-type type ;
|
||||||
PRIVATE>
|
PRIVATE>
|
||||||
|
|
||||||
: define-simd-vocab ( type -- vocab )
|
: define-simd-vocab ( type -- vocab )
|
||||||
|
parse-base-type
|
||||||
[ simd-vocab ] keep '[
|
[ simd-vocab ] keep '[
|
||||||
_ parse-base-type
|
_
|
||||||
[ define-simd-128 ]
|
[ define-simd-128 ]
|
||||||
[ define-simd-256 ] bi
|
[ define-simd-256 ] bi
|
||||||
] generate-vocab ;
|
] generate-vocab ;
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
USING: specialized-arrays sequences.complex
|
USING: specialized-arrays sequences.complex
|
||||||
kernel sequences tools.test arrays accessors ;
|
kernel sequences tools.test arrays accessors ;
|
||||||
SPECIALIZED-ARRAY: float
|
QUALIFIED-WITH: alien.c-types c
|
||||||
|
SPECIALIZED-ARRAY: c:float
|
||||||
IN: sequences.complex.tests
|
IN: sequences.complex.tests
|
||||||
|
|
||||||
: test-array ( -- x )
|
: test-array ( -- x )
|
||||||
|
|
|
@ -5,7 +5,8 @@ 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
|
QUALIFIED-WITH: alien.c-types c
|
||||||
|
SIMD: c:double
|
||||||
IN: benchmark.raytracer-simd
|
IN: benchmark.raytracer-simd
|
||||||
|
|
||||||
! parameters
|
! parameters
|
||||||
|
|
|
@ -2,7 +2,8 @@
|
||||||
! 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
|
QUALIFIED-WITH: alien.c-types c
|
||||||
|
SIMD: c:float
|
||||||
SPECIALIZED-ARRAY: float-4
|
SPECIALIZED-ARRAY: float-4
|
||||||
IN: benchmark.simd-1
|
IN: benchmark.simd-1
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue