Home
last modified time | relevance | path

Searched refs:attr_key (Results 1 – 6 of 6) sorted by relevance

/external/tensorflow/tensorflow/python/debug/lib/
Ddebug_graph_reconstruction_test.py73 for attr_key in new_node.attr:
74 if attr_key == "parallel_iterations":
75 new_node.attr[attr_key].i = 1
/external/tensorflow/tensorflow/core/grappler/costs/
Dutils.cc143 string attr_key = strings::StrCat("input_", i, "_filesize"); in ExtractExtraProperties() local
144 (*op_info->mutable_attr())[attr_key] = attr; in ExtractExtraProperties()
/external/tensorflow/tensorflow/python/framework/
Dtest_util.py240 for attr_key in node.attr:
241 attr_tensor_value = node.attr[attr_key].tensor
246 delete_keys.append(attr_key)
247 for attr_key in delete_keys:
248 del node.attr[attr_key]
/external/tensorflow/tensorflow/python/debug/cli/
Danalyzer_cli.py1541 for attr_key in attrs:
1542 lines.append(" %s:" % attr_key)
1543 attr_val_str = repr(attrs[attr_key]).strip().replace("\n", " ")
/external/wpa_supplicant_8/src/common/
Ddpp.c7169 const u8 *attr_group, *attr_id, *attr_key; in dpp_pkex_rx_exchange_req() local
7236 attr_key = dpp_get_attr(buf, len, DPP_ATTR_ENCRYPTED_KEY, in dpp_pkex_rx_exchange_req()
7238 if (!attr_key || attr_key_len & 0x01 || attr_key_len < 2 || in dpp_pkex_rx_exchange_req()
7257 Mx = BN_bin2bn(attr_key, attr_key_len / 2, NULL); in dpp_pkex_rx_exchange_req()
7258 My = BN_bin2bn(attr_key + attr_key_len / 2, attr_key_len / 2, NULL); in dpp_pkex_rx_exchange_req()
7292 os_memcpy(pkex->Mx, attr_key, attr_key_len / 2); in dpp_pkex_rx_exchange_req()
7519 const u8 *attr_status, *attr_id, *attr_key, *attr_group; in dpp_pkex_rx_exchange_resp() local
7591 attr_key = dpp_get_attr(buf, buflen, DPP_ATTR_ENCRYPTED_KEY, in dpp_pkex_rx_exchange_resp()
7593 if (!attr_key || attr_key_len & 0x01 || attr_key_len < 2) { in dpp_pkex_rx_exchange_resp()
7610 Nx = BN_bin2bn(attr_key, attr_key_len / 2, NULL); in dpp_pkex_rx_exchange_resp()
[all …]
/external/tensorflow/tensorflow/compiler/tf2tensorrt/convert/
Dconvert_nodes.cc2023 for (auto attr_key : attr_key_vector) { in ConvertPlugin() local
2025 auto data = attrs.get<std::vector<float>>(attr_key); in ConvertPlugin()
2027 if (!plugin->SetAttribute(attr_key, static_cast<void*>(data.data()), in ConvertPlugin()