HomeSort by relevance Sort by last modified time
    Searched refs:ListDevices (Results 1 - 25 of 49) sorted by null

1 2

  /external/tensorflow/tensorflow/python/client/
device_lib.i 28 static std::vector<string> ListDevices(TF_Status* out_status) {
65 %unignore tensorflow::swig::ListDevices;
70 std::vector<string> ListDevices(TF_Status* out_status);
79 return ListDevices(status)
  /test/framework/harnesses/host_controller/tradefed/
remote_client_test.py 129 """Tests ListDevices operation."""
131 self._client.ListDevices()
141 self._client.SendOperations(remote_operation.ListDevices(),
142 remote_operation.ListDevices())
167 self.assertRaises(socket.timeout, self._client.ListDevices)
169 self.assertRaises(socket.error, self._client.ListDevices)
175 self._client.ListDevices)
remote_client.py 98 def ListDevices(self):
99 """Sends ListDevices operation.
105 json_obj = self.SendOperation(remote_operation.ListDevices())
remote_operation.py 74 def ListDevices():
80 """Parses ListDevices response to a list of DeviceInfo.
90 json_obj: A JSON object, the response to ListDevices.
  /test/framework/harnesses/host_controller/
tfc_host_controller_test.py 69 self._remote_client.ListDevices.return_value = self._DEVICES
84 """Tests ListDevices."""
85 self._remote_client.ListDevices.return_value = self._DEVICES
86 devices = self._host_controller.ListDevices()
tfc_host_controller.py 81 def ListDevices(self):
87 devices = self._remote_client.ListDevices()
101 present_devices = self.ListDevices()
  /external/tensorflow/tensorflow/core/protobuf/
master_service.proto 104 rpc ListDevices(ListDevicesRequest) returns (ListDevicesResponse);
  /system/iot/attestation/at-factory-tool/
atftman_unittest.py 59 def ListDevices():
104 # Test AtftManager.ListDevices
117 @patch('__main__.AtftManTest.FastbootDeviceTemplate.ListDevices')
126 atft_manager.ListDevices()
127 atft_manager.ListDevices()
137 @patch('__main__.AtftManTest.FastbootDeviceTemplate.ListDevices')
146 atft_manager.ListDevices()
147 atft_manager.ListDevices()
154 @patch('__main__.AtftManTest.FastbootDeviceTemplate.ListDevices')
162 atft_manager.ListDevices()
    [all...]
fastbootsubp_unittest.py 44 # Test FastbootDevice.ListDevices
48 device_serial_numbers = fastbootsubp.FastbootDevice.ListDevices()
58 device_serial_numbers = fastbootsubp.FastbootDevice.ListDevices()
69 device_serial_numbers = fastbootsubp.FastbootDevice.ListDevices()
83 device_serial_numbers = fastbootsubp.FastbootDevice.ListDevices()
91 device_serial_numbers = fastbootsubp.FastbootDevice.ListDevices()
102 fastbootsubp.FastbootDevice.ListDevices()
fastbootsh_unittest.py 41 # Test FastbootDevice.ListDevices
45 device_serial_numbers = fastbootsh.FastbootDevice.ListDevices()
54 device_serial_numbers = fastbootsh.FastbootDevice.ListDevices()
67 device_serial_numbers = fastbootsh.FastbootDevice.ListDevices()
74 device_serial_numbers = fastbootsh.FastbootDevice.ListDevices()
84 fastbootsh.FastbootDevice.ListDevices()
  /external/tensorflow/tensorflow/core/common_runtime/
device_mgr.h 46 std::vector<Device*> ListDevices() const;
device_mgr.cc 66 std::vector<Device*> DeviceMgr::ListDevices() const {
  /external/tensorflow/tensorflow/core/distributed_runtime/
session_mgr_test.cc 85 std::vector<Device*> devices_1 = session_1->device_mgr->ListDevices();
90 std::vector<Device*> devices_2 = session_2->device_mgr->ListDevices();
95 std::vector<Device*> devices_3 = session_3->device_mgr->ListDevices();
100 std::vector<Device*> devices_4 = session_4->device_mgr->ListDevices();
local_master.h 66 Status ListDevices(CallOptions* call_options,
master.h 58 void ListDevices(const ListDevicesRequest* req, ListDevicesResponse* resp,
master_interface.h 85 virtual Status ListDevices(CallOptions* call_options,
local_master.cc 132 Status LocalMaster::ListDevices(CallOptions* call_options,
137 master_impl_->ListDevices(request, response, [&n, &ret](const Status& s) {
  /test/framework/harnesses/host_controller/command_processor/
command_list.py 75 devices = host.ListDevices()
  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/
grpc_remote_master.cc 83 Status ListDevices(CallOptions* call_options,
88 &MasterServiceStub::ListDevices);
grpc_testlib.cc 73 TF_RETURN_IF_ERROR(session->ListDevices(&ret->devices_));
grpc_master_service.cc 112 ENQUEUE_REQUEST(ListDevices, false);
220 master_impl_->ListDevices(&call->request, &call->response,
224 ENQUEUE_REQUEST(ListDevices, false);
grpc_session.h 97 Status ListDevices(std::vector<DeviceAttributes>* response) override;
grpc_master_service_impl.h 76 virtual ::grpc::Status ListDevices(::grpc::ClientContext* context,
101 ::grpc::Status ListDevices(::grpc::ClientContext* context,
  /external/tensorflow/tensorflow/core/public/
session.h 180 virtual Status ListDevices(std::vector<DeviceAttributes>* response) = 0;
  /external/tensorflow/tensorflow/core/grappler/clusters/
single_machine.cc 82 TF_RETURN_IF_ERROR(session_->ListDevices(&devices));
213 std::vector<Device*> devices = device_mgr->ListDevices();
402 std::vector<Device*> devices = device_mgr->ListDevices();

Completed in 181 milliseconds

1 2