]> gitweb.factorcode.org Git - factor.git/commitdiff
random.pcg-mwc[-vec]: new vocabs to choose from
authorAlexander Ilin <alex.ilin@protonmail.com>
Tue, 4 Jan 2022 03:21:03 +0000 (04:21 +0100)
committerJohn Benediktsson <mrjbq7@gmail.com>
Fri, 20 Jan 2023 22:15:14 +0000 (14:15 -0800)
extra/random/pcg-mwc-vec/authors.txt [new file with mode: 0644]
extra/random/pcg-mwc-vec/pcg-mwc-vec.factor [new file with mode: 0644]
extra/random/pcg-mwc-vec/tags.txt [new file with mode: 0644]
extra/random/pcg-mwc/authors.txt [new file with mode: 0644]
extra/random/pcg-mwc/pcg-mwc.factor [new file with mode: 0644]
extra/random/pcg-mwc/tags.txt [new file with mode: 0644]

diff --git a/extra/random/pcg-mwc-vec/authors.txt b/extra/random/pcg-mwc-vec/authors.txt
new file mode 100644 (file)
index 0000000..8e1955f
--- /dev/null
@@ -0,0 +1 @@
+Alexander Ilin
diff --git a/extra/random/pcg-mwc-vec/pcg-mwc-vec.factor b/extra/random/pcg-mwc-vec/pcg-mwc-vec.factor
new file mode 100644 (file)
index 0000000..0211ff0
--- /dev/null
@@ -0,0 +1,43 @@
+! Copyright (C) 2022 Alexander Ilin.
+! See http://factorcode.org/license.txt for BSD license.
+USING: accessors alien.c-types arrays kernel math math.bitwise
+random sequences ;
+IN: random.pcg-mwc-vec
+
+! https://github.com/tkaitchuck/Mwc256XXA64/blob/main/impl/src/gen64.rs
+! https://www.pcg-random.org/
+
+! The state is an array of four u64 values in this order: x1, x2, x3, c.
+TUPLE: Mwc256XXA64 state ;
+
+<PRIVATE
+
+CONSTANT: MULTIPLIER 0xfeb3_4465_7c0a_f413
+
+: big>d/d ( n -- low high )
+    dup -64 shift [ 64 bits ] bi@ ; inline
+
+: multiply ( n -- low high )
+    MULTIPLIER * big>d/d ; inline
+
+: permute ( high x1 x2 x3 -- n )
+    [ bitxor ] 2bi@ W+ ; inline
+
+: rot-state ( obj x1 c -- obj' )
+    [ over state>> first2 ] dip 4array >>state ; inline
+
+: update-state ( obj low high -- )
+    [ over state>> last + big>d/d ] dip W+ rot-state drop ; inline
+
+: next-u64 ( obj -- n )
+    dup state>> third multiply [ pick state>> first3 permute ] keep
+    swap [ update-state ] dip ;
+
+PRIVATE>
+
+: <Mwc256XXA64> ( key1 key2 -- obj )
+    0xcafef00dd15ea5e5 0x14057B7EF767814F 4array \ Mwc256XXA64 boa
+    6 [ dup next-u64 drop ] times ; inline
+
+M: Mwc256XXA64 random-32*
+    next-u64 32 bits ;
diff --git a/extra/random/pcg-mwc-vec/tags.txt b/extra/random/pcg-mwc-vec/tags.txt
new file mode 100644 (file)
index 0000000..fb5bea3
--- /dev/null
@@ -0,0 +1 @@
+rng
diff --git a/extra/random/pcg-mwc/authors.txt b/extra/random/pcg-mwc/authors.txt
new file mode 100644 (file)
index 0000000..8e1955f
--- /dev/null
@@ -0,0 +1 @@
+Alexander Ilin
diff --git a/extra/random/pcg-mwc/pcg-mwc.factor b/extra/random/pcg-mwc/pcg-mwc.factor
new file mode 100644 (file)
index 0000000..cf3ea1f
--- /dev/null
@@ -0,0 +1,51 @@
+! Copyright (C) 2022 Alexander Ilin.
+! See http://factorcode.org/license.txt for BSD license.
+USING: accessors alien.c-types classes.struct kernel locals math
+math.bitwise random ;
+IN: random.pcg-mwc
+
+! https://github.com/tkaitchuck/Mwc256XXA64/blob/main/impl/src/gen64.rs
+! https://www.pcg-random.org/
+
+STRUCT: Mwc256XXA64
+    { x1 ulonglong } { x2 ulonglong } { x3 ulonglong } { c ulonglong } ;
+
+<PRIVATE
+
+CONSTANT: MULTIPLIER 0xfeb3_4465_7c0a_f413
+
+: big>d/d ( n -- low high )
+    dup -64 shift [ 64 bits ] bi@ ; inline
+
+: multiply ( n -- low high )
+    MULTIPLIER * big>d/d ; inline
+
+: permute ( high x1 x2 x3 -- n )
+    [ bitxor ] 2bi@ W+ ; inline
+
+:: rot-state ( struct x1 c -- struct' )
+    struct
+        struct x2>> >>x3
+        struct x1>> >>x2
+        x1 >>x1
+        c >>c ; inline
+
+: update-state ( struct low high -- )
+    [ over c>> + big>d/d ] dip W+ rot-state drop ; inline
+
+: next-u64 ( struct -- n )
+    dup x3>> multiply [ pick [ x1>> ] [ x2>> ] [ x3>> ] tri permute ] keep
+    swap [ update-state ] dip ;
+
+PRIVATE>
+
+: <Mwc256XXA64> ( key1 key2 -- obj )
+    0xcafef00dd15ea5e5 0x14057B7EF767814F Mwc256XXA64 <struct-boa>
+    6 [ dup next-u64 drop ] times ;
+
+M: Mwc256XXA64 random-32*
+    next-u64 32 bits ;
+
+! USING: random random.pcg-mwc random.pcg-mwc-vec ;
+! gc 0 0 random.pcg-mwc:<Mwc256XXA64> [ 10,000,000 [ dup random-32* drop ] times ] time drop
+! gc 0 0 random.pcg-mwc-vec:<Mwc256XXA64> [ 10,000,000 [ dup random-32* drop ] times ] time drop
\ No newline at end of file
diff --git a/extra/random/pcg-mwc/tags.txt b/extra/random/pcg-mwc/tags.txt
new file mode 100644 (file)
index 0000000..fb5bea3
--- /dev/null
@@ -0,0 +1 @@
+rng