File: config_defaults.json

package info (click to toggle)
rocrand 6.4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 102,860 kB
  • sloc: cpp: 203,022; f90: 2,500; python: 1,417; sh: 359; xml: 212; asm: 90; makefile: 50
file content (60 lines) | stat: -rw-r--r-- 1,172 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// This file is used for generating rng/config/config_defaults.hpp and for
// select_best_config.py to find the baseline performance for config-tuning.
// The names of the generators have to fit the ones in benchmark/benchmark_rocrand_utils.hpp.
{
    "xorwow":
    {
        "block_size": 256,
        "grid_size": 512
    },
    "mrg32k3a":
    {
        "block_size": 256,
        "grid_size": 512
    },
    "mtgp32":
    {
        "block_size": 256,
        "grid_size": 512
    },
    "philox4_32_10":
    {
        "block_size": 256,
        "grid_size": 1024
    },
    "mrg31k3p":
    {
        "block_size": 256,
        "grid_size": 512
    },
    "lfsr113":
    {
        "block_size": 256,
        "grid_size": 512
    },
    "mt19937":
    {
        "block_size": 256,
        "grid_size": 256
    },
    "threefry2_32_20":
    {
        "block_size": 256,
        "grid_size": 1024
    },
    "threefry2_64_20":
    {
        "block_size": 256,
        "grid_size": 1024
    },
    "threefry4_32_20":
    {
        "block_size": 256,
        "grid_size": 1024
    },
    "threefry4_64_20":
    {
        "block_size": 256,
        "grid_size": 1024
    }
}