コード例 #1
0
ファイル: Kokkos_Random.hpp プロジェクト: rorypeck/trilinos
 KOKKOS_INLINE_FUNCTION
 static int draw(Generator& gen, const int& range)
                       {return gen.rand(range);}
コード例 #2
0
ファイル: Kokkos_Random.hpp プロジェクト: rorypeck/trilinos
 KOKKOS_INLINE_FUNCTION
 static int draw(Generator& gen, const int& start, const int& end)
                       {return gen.rand(start,end);}
コード例 #3
0
ファイル: Kokkos_Random.hpp プロジェクト: rorypeck/trilinos
 KOKKOS_INLINE_FUNCTION
 static int draw(Generator& gen)
                       {return gen.rand();}
コード例 #4
0
ファイル: Kokkos_Random.hpp プロジェクト: rorypeck/trilinos
 KOKKOS_INLINE_FUNCTION
 static short draw(Generator& gen, const short& start, const short& end)
                       {return short(gen.rand(start,end));}
コード例 #5
0
ファイル: Kokkos_Random.hpp プロジェクト: rorypeck/trilinos
 KOKKOS_INLINE_FUNCTION
 static short draw(Generator& gen, const short& range)
                       {return short(gen.rand(range));}
コード例 #6
0
ファイル: Kokkos_Random.hpp プロジェクト: rorypeck/trilinos
 KOKKOS_INLINE_FUNCTION
 static short draw(Generator& gen)
                       {return short((gen.rand()&0xffff+65536)%32768);}
コード例 #7
0
ファイル: Kokkos_Random.hpp プロジェクト: rorypeck/trilinos
 KOKKOS_INLINE_FUNCTION
 static short draw(Generator& gen)
                       {return short((gen.rand()&0xff+256)%256);}