1 \documentclass{article}
2 \usepackage[utf8]{inputenc}
3 \usepackage[T1]{fontenc}
10 \title{Efficient generation of pseudo random numbers based on chaotic iterations on GPU}
18 \section{Introduction}
20 Interet des itérations chaotiques pour générer des nombre alea\\
21 Interet de générer des nombres alea sur GPU
24 \section{Chaotic iterations}
26 Présentation des itérations chaotiques
28 \section{Efficient prng based on chaotic iterations}
30 On parle du séquentiel avec des nombres 64 bits\\
32 Faire le lien avec le paragraphe précédent (je considère que la stratégie s'appelle $S^i$\\
34 In order to implement efficiently a PRNG based on chaotic iterations it is
35 possible to improve previous works [ref]. One solution consists in considering
36 that the strategy used $S^i$ contains all the bits for which the negation is
37 achieved out. Then instead of applying the negation on these bits we can simply
38 apply the xor operator between the current number and the strategy $S^i$.
43 \begin{minipage}{14cm}
44 unsigned int CIprng() \{\\
45 static unsigned int x = 123123123;\\
46 unsigned long t1 = xorshift();\\
47 unsigned long t2 = xor128();\\
48 unsigned long t3 = xorwow();\\
49 x = x\^\ (unsigned int)t;\\
50 x = x\^\ (unsigned int)(t2$>>$32);\\
51 x = x\^\ (unsigned int)(t3$>>$32);\\
52 x = x\^\ (unsigned int)t2;\\
53 x = x\^\ (unsigned int)(t$>>$32);\\
54 x = x\^\ (unsigned int)t3;\\
60 \caption{sequential Chaotic Iteration PRNG}
61 \label{algo:seqCIprng}
64 In Figure~\ref{algo:seqCIprng} a sequential version of our chaotic iterations based PRNG is
65 presented. This version uses three classical 64-bits PRNG: the xorshift, the
66 xor128 and the xorwow. These three PRNGs are presented in~\cite{Marsaglia2003}.
68 \section{Efficient prng based on chaotic iterations on GPU}
70 On parle du passage du sequentiel au GPU
74 On passe le BigCrush\\
75 On donne des temps de générations sur GPU/CPU\\
76 On donne des temps de générations de nombre sur GPU puis on rappatrie sur CPU / CPU ? bof bof, on verra
81 \bibliographystyle{plain}