HomeSort by relevance Sort by last modified time
    Searched defs:ListDevices (Results 1 - 11 of 11) sorted by null

  /external/tensorflow/tensorflow/go/
context.go 100 // ListDevices returns the list of devices associated with a Context.
101 func (c *Context) ListDevices() ([]Device, error) {
session.go 68 // Device structure contains information about a device associated with a session, as returned by ListDevices()
115 // ListDevices returns the list of devices associated with a Session.
116 func (s *Session) ListDevices() ([]Device, error) {
  /external/tensorflow/tensorflow/core/common_runtime/
device_mgr.cc 70 std::vector<Device*> DeviceMgr::ListDevices() const {
direct_session.cc 318 for (auto d : device_mgr_->ListDevices()) {
341 for (auto d : device_mgr_->ListDevices()) {
344 for (auto d : device_mgr_->ListDevices()) {
    [all...]
  /external/tensorflow/tensorflow/python/grappler/
cluster.py 73 def ListDevices(self):
  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/
grpc_master_service_impl.cc 37 "/tensorflow.MasterService/ListDevices",
114 ::grpc::Status MasterService::Stub::ListDevices(
grpc_session.cc 349 Status GrpcSession::ListDevices(std::vector<DeviceAttributes>* response) {
356 LOG(WARNING) << "GrpcSession::ListDevices will initialize the session with "
369 Status s = master_->ListDevices(&call_options, &req, &resp);
  /external/tensorflow/tensorflow/core/distributed_runtime/
local_master.cc 132 Status LocalMaster::ListDevices(CallOptions* call_options,
137 master_impl_->ListDevices(request, response, [&n, &ret](const Status& s) {
master.cc 588 void Master::ListDevices(const ListDevicesRequest* req,
600 Status s = session->ListDevices(resp);
master_session.cc     [all...]
  /external/tensorflow/tensorflow/python/client/
session_ref.cc 246 RUN_WITH_TIMESTAMP(ListDevices, response);
444 Status SessionRef::ListDevices(std::vector<DeviceAttributes>* response) {
445 LOG_AND_RUN_OPERATION(ListDevices, response);

Completed in 421 milliseconds