mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
This commit contains the sb-simd contrib in its most recent form. The original sb-simd repository will be archived, and development of sb-simd will now be a part of the regular SBCL development. Thanks for everyone who made this work possible!
16 lines
311 B
Common Lisp
16 lines
311 B
Common Lisp
(cl:in-package #:common-lisp-user)
|
|
|
|
(defpackage #:sb-simd-test-suite
|
|
(:use #:common-lisp #:sb-simd-internals)
|
|
(:export
|
|
#:run-test-suite
|
|
#:define-test
|
|
#:is
|
|
#:signals
|
|
#:all-tests
|
|
#:check-package
|
|
#:run-tests
|
|
#:define-simple-simd-test
|
|
#:define-horizontal-test
|
|
#:define-aref-test))
|