"vscode:/vscode.git/clone" did not exist on "c1b6ea3dce7099fc7bed6792777c5862cc3257a6"
random.cc 1.82 KB
Newer Older
1
/**
2
 *  Copyright (c) 2017 by Contributors
3
4
 * @file random.cc
 * @brief Random number generator interfaces
5
6
 */

7
8
#include <dgl/array.h>
#include <dgl/random.h>
9
#include <dgl/runtime/packed_func.h>
10
#include <dgl/runtime/parallel_for.h>
11
12
#include <dgl/runtime/registry.h>
#include <dmlc/omp.h>
13
14
15
16
17
18

using namespace dgl::runtime;

namespace dgl {

DGL_REGISTER_GLOBAL("rng._CAPI_SetSeed")
19
20
    .set_body([](DGLArgs args, DGLRetValue *rv) {
      const int seed = args[0];
21

22
23
24
25
26
27
      runtime::parallel_for(0, omp_get_max_threads(), [&](size_t b, size_t e) {
        for (auto i = b; i < e; ++i) {
          RandomEngine::ThreadLocal()->SetSeed(seed);
        }
      });
    });
28

29
DGL_REGISTER_GLOBAL("rng._CAPI_Choice")
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
    .set_body([](DGLArgs args, DGLRetValue *rv) {
      const int64_t num = args[0];
      const int64_t population = args[1];
      const NDArray prob = args[2];
      const bool replace = args[3];
      const int bits = args[4];
      CHECK(bits == 32 || bits == 64)
          << "Supported bit widths are 32 and 64, but got " << bits << ".";
      if (aten::IsNullArray(prob)) {
        if (bits == 32) {
          *rv = RandomEngine::ThreadLocal()->UniformChoice<int32_t>(
              num, population, replace);
        } else {
          *rv = RandomEngine::ThreadLocal()->UniformChoice<int64_t>(
              num, population, replace);
        }
46
      } else {
47
48
49
50
51
52
53
54
55
56
57
        if (bits == 32) {
          ATEN_FLOAT_TYPE_SWITCH(prob->dtype, FloatType, "probability", {
            *rv = RandomEngine::ThreadLocal()->Choice<int32_t, FloatType>(
                num, prob, replace);
          });
        } else {
          ATEN_FLOAT_TYPE_SWITCH(prob->dtype, FloatType, "probability", {
            *rv = RandomEngine::ThreadLocal()->Choice<int64_t, FloatType>(
                num, prob, replace);
          });
        }
58
      }
59
    });
60

61
};  // namespace dgl