tuple-arrays: completely rewritten to use functors, 10x faster on benchmark
							parent
							
								
									cc44597ea7
								
							
						
					
					
						commit
						291ac48a17
					
				| 
						 | 
					@ -12,7 +12,7 @@ IN: inverse
 | 
				
			||||||
ERROR: fail ;
 | 
					ERROR: fail ;
 | 
				
			||||||
M: fail summary drop "Matching failed" ;
 | 
					M: fail summary drop "Matching failed" ;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
: assure ( ? -- ) [ fail ] unless ;
 | 
					: assure ( ? -- ) [ fail ] unless ; inline
 | 
				
			||||||
 | 
					
 | 
				
			||||||
: =/fail ( obj1 obj2 -- ) = assure ;
 | 
					: =/fail ( obj1 obj2 -- ) = assure ;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1 +1 @@
 | 
				
			||||||
Daniel Ehrenberg
 | 
					Slava Pestov
 | 
				
			||||||
| 
						 | 
					@ -1 +0,0 @@
 | 
				
			||||||
Packed homogeneous tuple arrays
 | 
					 | 
				
			||||||
| 
						 | 
					@ -1 +0,0 @@
 | 
				
			||||||
collections
 | 
					 | 
				
			||||||
| 
						 | 
					@ -1,13 +0,0 @@
 | 
				
			||||||
USING: help.syntax help.markup splitting kernel sequences ;
 | 
					 | 
				
			||||||
IN: tuple-arrays
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
HELP: tuple-array
 | 
					 | 
				
			||||||
{ $description "The class of packed homogeneous tuple arrays. They are created with " { $link <tuple-array> } ". All elements are of the same tuple class. Mutations done to an element are not copied back to the packed array unless it is explicitly written back. To convert a sequence to a tuple array, use the word " { $link >tuple-array } "." } ;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
HELP: <tuple-array>
 | 
					 | 
				
			||||||
{ $values { "class" "a tuple class" } { "length" "a non-negative integer" } { "tuple-array" tuple-array } }
 | 
					 | 
				
			||||||
{ $description "Creates an instance of the " { $link <tuple-array> } " class with the given length and containing the given tuple class." } ;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
HELP: >tuple-array
 | 
					 | 
				
			||||||
{ $values { "seq" sequence } { "tuple-array" tuple-array } }
 | 
					 | 
				
			||||||
{ $description "Converts a sequence into a homogeneous unboxed tuple array of the type indicated by the first element." } ;
 | 
					 | 
				
			||||||
| 
						 | 
					@ -5,17 +5,21 @@ IN: tuple-arrays.tests
 | 
				
			||||||
SYMBOL: mat
 | 
					SYMBOL: mat
 | 
				
			||||||
TUPLE: foo bar ;
 | 
					TUPLE: foo bar ;
 | 
				
			||||||
C: <foo> foo
 | 
					C: <foo> foo
 | 
				
			||||||
[ 2 ] [ 2 foo <tuple-array> dup mat set length ] unit-test
 | 
					TUPLE-ARRAY: foo
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ 2 ] [ 2 <foo-array> dup mat set length ] unit-test
 | 
				
			||||||
[ T{ foo } ] [ mat get first ] unit-test
 | 
					[ T{ foo } ] [ mat get first ] unit-test
 | 
				
			||||||
[ T{ foo f 2 } ] [ T{ foo f 2 } 0 mat get [ set-nth ] keep first ] unit-test
 | 
					[ T{ foo f 2 } ] [ T{ foo f 2 } 0 mat get [ set-nth ] keep first ] unit-test
 | 
				
			||||||
[ t ] [ { T{ foo f 1 } T{ foo f 2 } } >tuple-array dup mat set tuple-array? ] unit-test
 | 
					[ t ] [ { T{ foo f 1 } T{ foo f 2 } } >foo-array dup mat set foo-array? ] unit-test
 | 
				
			||||||
[ T{ foo f 3 } t ] 
 | 
					[ T{ foo f 3 } t ] 
 | 
				
			||||||
[ mat get [ bar>> 2 + <foo> ] map [ first ] keep tuple-array? ] unit-test
 | 
					[ mat get [ bar>> 2 + <foo> ] map [ first ] keep foo-array? ] unit-test
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[ 2 ] [ 2 foo <tuple-array> dup mat set length ] unit-test
 | 
					[ 2 ] [ 2 <foo-array> dup mat set length ] unit-test
 | 
				
			||||||
[ T{ foo } ] [ mat get first ] unit-test
 | 
					[ T{ foo } ] [ mat get first ] unit-test
 | 
				
			||||||
[ T{ foo f 1 } ] [ T{ foo f 1 } 0 mat get [ set-nth ] keep first ] unit-test
 | 
					[ T{ foo f 1 } ] [ T{ foo f 1 } 0 mat get [ set-nth ] keep first ] unit-test
 | 
				
			||||||
 | 
					
 | 
				
			||||||
TUPLE: baz { bing integer } bong ;
 | 
					TUPLE: baz { bing integer } bong ;
 | 
				
			||||||
[ 0 ] [ 1 baz <tuple-array> first bing>> ] unit-test
 | 
					TUPLE-ARRAY: baz
 | 
				
			||||||
[ f ] [ 1 baz <tuple-array> first bong>> ] unit-test
 | 
					
 | 
				
			||||||
 | 
					[ 0 ] [ 1 <baz-array> first bing>> ] unit-test
 | 
				
			||||||
 | 
					[ f ] [ 1 <baz-array> first bong>> ] unit-test
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,34 +1,68 @@
 | 
				
			||||||
! Copyright (C) 2007 Daniel Ehrenberg.
 | 
					! Copyright (C) 2009 Slava Pestov.
 | 
				
			||||||
! See http://factorcode.org/license.txt for BSD license.
 | 
					! See http://factorcode.org/license.txt for BSD license.
 | 
				
			||||||
USING: splitting grouping classes.tuple classes math kernel
 | 
					USING: accessors arrays combinators.smart fry functors grouping
 | 
				
			||||||
sequences arrays accessors ;
 | 
					kernel macros sequences sequences.private stack-checker
 | 
				
			||||||
 | 
					parser ;
 | 
				
			||||||
 | 
					FROM: inverse => undo ;
 | 
				
			||||||
IN: tuple-arrays
 | 
					IN: tuple-arrays
 | 
				
			||||||
 | 
					
 | 
				
			||||||
TUPLE: tuple-array { seq read-only } { class read-only } ;
 | 
					<PRIVATE
 | 
				
			||||||
 | 
					
 | 
				
			||||||
: <tuple-array> ( length class -- tuple-array )
 | 
					MACRO: infer-in ( class -- quot ) infer in>> '[ _ ] ;
 | 
				
			||||||
    [
 | 
					 | 
				
			||||||
        new tuple>array 1 tail
 | 
					 | 
				
			||||||
        [ <repetition> concat ] [ length ] bi <sliced-groups>
 | 
					 | 
				
			||||||
    ] [ ] bi tuple-array boa ;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
M: tuple-array nth
 | 
					: smart-tuple>array ( tuple class -- array )
 | 
				
			||||||
    [ seq>> nth ] [ class>> ] bi prefix >tuple ;
 | 
					    '[ [ _ boa ] undo ] output>array ; inline
 | 
				
			||||||
 | 
					
 | 
				
			||||||
M: tuple-array set-nth ( elt n seq -- )
 | 
					: smart-array>tuple ( array class -- tuple )
 | 
				
			||||||
    [ tuple>array 1 tail ] 2dip seq>> set-nth ;
 | 
					    '[ _ boa ] input<sequence ; inline
 | 
				
			||||||
 | 
					
 | 
				
			||||||
M: tuple-array new-sequence
 | 
					: tuple-arity ( class -- quot ) '[ _ boa ] infer-in ; inline
 | 
				
			||||||
    class>> <tuple-array> ;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
: >tuple-array ( seq -- tuple-array )
 | 
					: tuple-prototype ( class -- array )
 | 
				
			||||||
 | 
					    [ new ] [ smart-tuple>array ] bi ; inline
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					PRIVATE>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					FUNCTOR: define-tuple-array ( CLASS -- )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					CLASS IS ${CLASS}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					CLASS-array DEFINES-CLASS ${CLASS}-array
 | 
				
			||||||
 | 
					CLASS-array? IS ${CLASS-array}?
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<CLASS-array> DEFINES <${CLASS}-array>
 | 
				
			||||||
 | 
					>CLASS-array DEFINES >${CLASS}-array
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					WHERE
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					TUPLE: CLASS-array { seq sliced-groups read-only } ;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					: <CLASS-array> ( length -- tuple-array )
 | 
				
			||||||
 | 
					    CLASS tuple-prototype <repetition> concat
 | 
				
			||||||
 | 
					    CLASS tuple-arity <sliced-groups>
 | 
				
			||||||
 | 
					    CLASS-array boa ;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					M: CLASS-array nth-unsafe
 | 
				
			||||||
 | 
					    seq>> nth-unsafe CLASS smart-array>tuple ;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					M: CLASS-array set-nth-unsafe
 | 
				
			||||||
 | 
					    [ CLASS smart-tuple>array ] 2dip seq>> set-nth-unsafe ;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					M: CLASS-array new-sequence
 | 
				
			||||||
 | 
					    drop <CLASS-array> ;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					: >CLASS-array ( seq -- tuple-array )
 | 
				
			||||||
    dup empty? [
 | 
					    dup empty? [
 | 
				
			||||||
        0 over first class <tuple-array> clone-like
 | 
					        0 <CLASS-array> clone-like
 | 
				
			||||||
    ] unless ;
 | 
					    ] unless ;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
M: tuple-array like 
 | 
					M: CLASS-array like 
 | 
				
			||||||
    drop dup tuple-array? [ >tuple-array ] unless ;
 | 
					    drop dup CLASS-array? [ >CLASS-array ] unless ;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
M: tuple-array length seq>> length ;
 | 
					M: CLASS-array length seq>> length ;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
INSTANCE: tuple-array sequence
 | 
					INSTANCE: CLASS-array sequence
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					;FUNCTOR
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					SYNTAX: TUPLE-ARRAY: scan-word define-tuple-array ;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					Slava Pestov
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,20 @@
 | 
				
			||||||
 | 
					! Copyright (C) 2009 Slava Pestov.
 | 
				
			||||||
 | 
					! See http://factorcode.org/license.txt for BSD license.
 | 
				
			||||||
 | 
					USING: kernel math math.functions tuple-arrays accessors fry sequences
 | 
				
			||||||
 | 
					prettyprint ;
 | 
				
			||||||
 | 
					IN: benchmark.tuple-arrays
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					TUPLE: point { x float } { y float } { z float } ;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					TUPLE-ARRAY: point
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					: tuple-array-benchmark ( -- )
 | 
				
			||||||
 | 
					    100 [
 | 
				
			||||||
 | 
					        drop 5000 <point-array> [
 | 
				
			||||||
 | 
					            [ 1+ ] change-x
 | 
				
			||||||
 | 
					            [ 1- ] change-y
 | 
				
			||||||
 | 
					            [ 1+ 2 / ] change-z
 | 
				
			||||||
 | 
					        ] map [ z>> ] sigma
 | 
				
			||||||
 | 
					    ] sigma . ;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					MAIN: tuple-array-benchmark
 | 
				
			||||||
		Loading…
	
		Reference in New Issue