generator_py.cc 3.7 KB
Newer Older
Y
yaoxuefeng 已提交
1 2 3 4 5 6 7 8 9 10 11 12
/* Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */
#include <fcntl.h>

13 14
#include "paddle/phi/core/generator.h"

Y
yaoxuefeng 已提交
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
#ifdef _POSIX_C_SOURCE
#undef _POSIX_C_SOURCE
#endif

#ifdef _XOPEN_SOURCE
#undef _XOPEN_SOURCE
#endif

#include <memory>
#include <string>
#include <vector>

#include "paddle/fluid/framework/generator.h"
#include "paddle/fluid/pybind/generator_py.h"

namespace py = pybind11;

namespace paddle {
namespace pybind {
L
Leo Chen 已提交
34 35
void BindGenerator(py::module* m_ptr) {
  auto& m = *m_ptr;
36 37 38
  py::class_<phi::Generator::GeneratorState,
             std::shared_ptr<phi::Generator::GeneratorState>>(m,
                                                              "GeneratorState")
L
Leo Chen 已提交
39
      .def("current_seed",
40
           [](std::shared_ptr<phi::Generator::GeneratorState>& self) {
L
Leo Chen 已提交
41
             return self->current_seed;
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
           })
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
      // NOTE(shenliang03): Due to the inability to serialize mt19937_64
      // type, resulting in a problem with precision under the cpu.
      .def(py::pickle(
          [](const phi::Generator::GeneratorState& s) {  // __getstate__
            return py::make_tuple(s.device, s.current_seed, s.thread_offset);
          },
          [](py::tuple s) {  // __setstate__
            if (s.size() != 3)
              throw std::runtime_error(
                  "Invalid Random state. Please check the format(device, "
                  "current_seed, thread_offset).");

            phi::Generator::GeneratorState state;
            state.device = s[0].cast<std::int64_t>();
            state.current_seed = s[1].cast<std::uint64_t>();
            state.thread_offset = s[2].cast<std::uint64_t>();

            std::seed_seq seq({state.current_seed});
            auto engine = std::make_shared<std::mt19937_64>(seq);
            state.cpu_engine = *engine;
            return state;
          }))
#endif
      .def("__str__", [](const phi::Generator::GeneratorState& self) {
        std::stringstream ostr;
        ostr << self.device << " " << self.current_seed << " "
             << self.thread_offset << " " << self.cpu_engine;
        return ostr.str();
      });

L
Leo Chen 已提交
74
  py::class_<std::mt19937_64>(m, "mt19937_64", "");
Y
yaoxuefeng 已提交
75
  py::class_<framework::Generator, std::shared_ptr<framework::Generator>>(
L
Leo Chen 已提交
76 77 78 79 80 81
      m, "Generator")
      .def("__init__",
           [](framework::Generator& self) {
             new (&self) framework::Generator();
           })
      .def("get_state", &framework::Generator::GetState)
Y
yaoxuefeng 已提交
82
      .def("set_state", &framework::Generator::SetState)
L
Leo Chen 已提交
83 84 85 86 87
      .def("manual_seed",
           [](std::shared_ptr<framework::Generator>& self, uint64_t seed) {
             self->SetCurrentSeed(seed);
             return self;
           })
Y
yaoxuefeng 已提交
88 89
      .def("seed", &framework::Generator::Seed)
      .def("initial_seed", &framework::Generator::GetCurrentSeed)
90
      .def("random", &framework::Generator::Random64);
L
Leo Chen 已提交
91
  m.def("default_cpu_generator", &framework::DefaultCPUGenerator);
92
  m.def("default_cuda_generator", &framework::DefaultCUDAGenerator);
93 94
  m.def("set_random_seed_generator", &framework::SetRandomSeedGenerator);
  m.def("get_random_seed_generator", &framework::GetRandomSeedGenerator);
Y
yaoxuefeng 已提交
95 96
}
}  // namespace pybind
L
Leo Chen 已提交
97
}  // namespace paddle