HomeSort by relevance Sort by last modified time
    Searched defs:device_type (Results 1 - 25 of 30) sorted by null

1 2

  /external/tensorflow/tensorflow/compiler/jit/
xla_compilation_cache.h 49 XlaCompilationCache(xla::LocalClient* client, DeviceType device_type);
73 const DeviceType& device_type() const { return device_type_; } function in class:tensorflow::XlaCompilationCache
  /external/tensorflow/tensorflow/core/kernels/
constant_op_test.cc 51 DeviceType device_type = DEVICE_CPU; local
54 DeviceType device_type = DEVICE_GPU; local
60 std::unique_ptr<OpKernel> op(CreateOpKernel(device_type, device.get(),
  /system/extras/tests/bootloader/
bootloadertest.py 24 device_type = "phone" variable
210 if device_type == "iot":
220 if args.device_type.lower() not in ("phone", "iot"):
221 raise ValueError("Unsupported device type '%s'." % args.device_type)
222 device_type = args.device_type.lower() variable
  /external/tensorflow/tensorflow/core/common_runtime/
device.h 69 // with the same device_type() are expected to perform similarly
71 const string& device_type() const { return device_attributes_.device_type(); } function in class:tensorflow::Device
process_function_library_runtime.cc 129 string device_type = device->parsed_name().type; local
130 if (device_type == "CPU") return Status::OK();
131 if (device_type == "GPU") {
138 return errors::Internal("Device type: ", device_type,
constant_folding.cc 484 DeviceType device_type = partition_device local
485 ? DeviceType{partition_device->device_type()}
487 if (partition_device && device_type != DEVICE_CPU) {
489 if (!MemoryTypeForOutput(device_type, graph, tensor.first, tensor.second,
524 if (!FindKernelDef(device_type, def, &kdef, nullptr).ok()) {
function.cc 402 auto device_type = DeviceType(device_->attributes().device_type()); local
404 device_type, device_, device_->GetAllocator(AllocatorAttributes()), &ndef,
613 TF_RETURN_IF_ERROR(EnsureMemoryTypes(DeviceType(device()->device_type()),
    [all...]
executor.cc 2624 const auto device_type = DeviceType(device->attributes().device_type()); local
    [all...]
  /system/bt/btif/src/
btif_gatt_server.cc 285 int device_type = 0; local
289 btif_get_device_type(address, &device_type) &&
290 device_type != BT_DEVICE_TYPE_BREDR) {
291 BTA_DmAddBleDevice(address, addr_type, device_type);
301 switch (device_type) {
btif_storage.cc 429 int device_type; local
455 if (btif_config_get_int(name, "DevType", &device_type) &&
456 (device_type == BT_DEVICE_TYPE_DUMO)) {
1141 int device_type; local
    [all...]
btif_dm.cc 548 tBT_DEVICE_TYPE device_type) {
600 dev_type = (bt_device_type_t)(remote_dev_type | device_type);
602 dev_type = (bt_device_type_t)device_type;
656 int device_type; local
661 if (!btif_config_get_int(bdstr, "DevType", &device_type)) {
676 if ((btif_config_get_int(bdstr, "DevType", &device_type) &&
679 (device_type & BT_DEVICE_TYPE_BLE) == BT_DEVICE_TYPE_BLE) ||
681 BTA_DmAddBleDevice(bd_addr, addr_type, device_type);
684 if (is_hid && (device_type & BT_DEVICE_TYPE_BLE) == 0) {
3220 system_bt_osi::device_type_t device_type; local
    [all...]
  /system/bt/tools/bdtool/
adapter.c 221 bt_device_type_t device_type = property_as_device_type(property); local
222 if (device_type) {
224 const char* device_type; member in struct:__anon2560
231 int idx = (int)device_type;
233 fprintf(stdout, " device_type:%s\n",
234 device_type_lookup[idx].device_type);
  /external/tensorflow/tensorflow/compiler/tf2xla/
xla_compiler.h 231 const DeviceType* device_type = nullptr; member in struct:tensorflow::XlaCompiler::Options
  /external/tensorflow/tensorflow/core/debug/
debug_graph_utils.cc 101 DeviceType device_type = DeviceType{device->device_type()}; local
145 TF_RETURN_IF_ERROR(MemoryTypeForOutput(device_type, graph, src_node,
151 graph, device_type, memory_type == HOST_MEMORY, src_node->name(),
267 Graph* graph, const DeviceType device_type, const bool is_host_memory,
310 Status s = FindKernelDef(device_type, node_def, &kdef, nullptr);
465 if (!FindKernelDef(DeviceType(device.device_type()), node_def, &kdef, nullptr)
  /external/tensorflow/tensorflow/python/client/
session.py 538 - device_type: the type of the device (e.g. CPU, GPU, TPU, etc.)
543 def __init__(self, name, device_type, memory_limit_bytes):
545 self._device_type = device_type
553 def device_type(self): member in class:_DeviceAttributes
563 self.device_type,
654 - `device_type`: The type of the device (e.g. `CPU`, `GPU`, `TPU`.)
676 device_type = tf_session.TF_DeviceListType(raw_device_list, i, status)
678 device_list.append(_DeviceAttributes(name, device_type, memory))
    [all...]
  /hardware/qcom/audio/hal/audio_extn/
soundtrigger.c 360 int device_type = -1; local
370 device_type = PCM_PLAYBACK;
375 device_type = PCM_CAPTURE;
383 __func__, snd_device, device_type, event);
384 if (device_type == PCM_CAPTURE) {
  /external/tensorflow/tensorflow/c/eager/
c_api.cc 57 const auto& device_type = d->attributes().device_type(); local
58 return device_type.find("XLA") != std::string::npos;
    [all...]
  /external/tensorflow/tensorflow/core/framework/
op_kernel.h 234 OpKernelConstruction(DeviceType device_type, DeviceBase* device,
316 const DeviceType& device_type() const { return device_type_; } function in class:tensorflow::OpKernelConstruction
    [all...]
  /bootable/recovery/
recovery.cpp 903 std::string device_type = line.substr(strlen("pre-device=")); local
905 device_type_matched = (device_type == real_device_type);
    [all...]
  /external/pdfium/core/fxge/win32/
fx_win32_device.cpp 1357 int device_type = ::GetDeviceCaps(hDC, TECHNOLOGY); local
    [all...]
  /external/tensorflow/tensorflow/c/
c_api_test.cc 77 const char* device_type = TF_DeviceListType(device_list, i, s); local
80 << device_type; local
81 if (string(device_type) == DEVICE_GPU) {
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
config.h 669 * device_type - Primary Device Type (WPS)
671 u8 device_type[WPS_DEV_TYPE_LEN]; member in struct:wpa_config
    [all...]
  /hardware/intel/common/libmix/mix_audio/src/
intel_sst_ioctl.h 239 __u8 device_type; member in struct:snd_sst_slot_info
  /tools/test/connectivity/acts/framework/acts/test_utils/wifi/
wifi_test_utils.py 199 device_type = "deviceType" variable in class:WifiEnums.RttParam
    [all...]
  /system/bt/stack/btm/
btm_int_types.h 561 tBT_DEVICE_TYPE device_type; member in struct:__anon2173
    [all...]

Completed in 566 milliseconds

1 2