From 0904f07d4655b82543aba0baca7aecf81a6ff98b Mon Sep 17 00:00:00 2001 From: Xin Pan Date: Tue, 28 Aug 2018 11:15:31 +0800 Subject: [PATCH] polish --- paddle/fluid/pybind/pybind.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/paddle/fluid/pybind/pybind.cc b/paddle/fluid/pybind/pybind.cc index 6d85d01477f..20fc08e21da 100644 --- a/paddle/fluid/pybind/pybind.cc +++ b/paddle/fluid/pybind/pybind.cc @@ -518,10 +518,6 @@ All parameter, weight, gradient are variables in Paddle. m.def("init_glog", framework::InitGLOG); m.def("init_devices", [](bool init_p2p) { framework::InitDevices(init_p2p); }); - m.def("_supported_version", []() { - std::vector supported_versions; - return supported_versions; - }); m.def("is_compiled_with_cuda", IsCompiledWithCUDA); m.def("is_compiled_with_dist", IsCompiledWithDIST); -- GitLab