-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdevice_lib_wrapper.cc
58 lines (48 loc) · 2.18 KB
/
device_lib_wrapper.cc
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
/* Copyright 2019 The TensorFlow 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 <string>
#include "pybind11/pybind11.h" // from @pybind11
#include "tensorflow/core/common_runtime/device.h"
#include "tensorflow/core/common_runtime/device_factory.h"
#include "tensorflow/core/framework/device_attributes.pb.h"
#include "tensorflow/core/lib/core/errors.h"
#include "tensorflow/core/protobuf/config.pb.h"
#include "tensorflow/core/public/session_options.h"
#include "tensorflow/python/lib/core/pybind11_proto.h"
#include "tensorflow/python/lib/core/pybind11_status.h"
namespace py = ::pybind11;
PYBIND11_MODULE(_pywrap_device_lib, m) {
m.def("list_devices", [](py::object serialized_config) {
tensorflow::ConfigProto config;
if (!serialized_config.is_none()) {
config.ParseFromString(
static_cast<std::string>(serialized_config.cast<py::bytes>()));
}
tensorflow::SessionOptions options;
options.config = config;
std::vector<std::unique_ptr<tensorflow::Device>> devices;
tensorflow::MaybeRaiseFromStatus(tensorflow::DeviceFactory::AddDevices(
options, /*name_prefix=*/"", &devices));
py::list results;
std::string serialized_attr;
for (const auto& device : devices) {
if (!device->attributes().SerializeToString(&serialized_attr)) {
tensorflow::MaybeRaiseFromStatus(tensorflow::errors::Internal(
"Could not serialize DeviceAttributes to bytes"));
}
// The default type caster for std::string assumes its contents
// is UTF8-encoded.
results.append(py::bytes(serialized_attr));
}
return results;
});
}