コード例 #1
0
ファイル: Kokkos_Random.hpp プロジェクト: rorypeck/trilinos
 KOKKOS_INLINE_FUNCTION
 static int64_t draw(Generator& gen, const int64_t& range)
                       {return gen.rand64(range);}
コード例 #2
0
ファイル: Kokkos_Random.hpp プロジェクト: rorypeck/trilinos
 KOKKOS_INLINE_FUNCTION
 static int64_t draw(Generator& gen, const int64_t& start, const int64_t& end)
                       {return gen.rand64(start,end);}
コード例 #3
0
ファイル: Kokkos_Random.hpp プロジェクト: rorypeck/trilinos
 KOKKOS_INLINE_FUNCTION
 static int64_t draw(Generator& gen)
                       {return gen.rand64();}