Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/python/debug/lib/
Ddebug_graph_reconstruction_test.py71 for attr_key in new_node.attr:
72 if attr_key == "parallel_iterations":
73 new_node.attr[attr_key].i = 1
/external/tensorflow/tensorflow/python/framework/
Dtest_util.py189 for attr_key in node.attr:
190 attr_tensor_value = node.attr[attr_key].tensor
195 delete_keys.append(attr_key)
196 for attr_key in delete_keys:
197 del node.attr[attr_key]
/external/tensorflow/tensorflow/core/grappler/costs/
Dutils.cc146 string attr_key = strings::StrCat("input_", i, "_filesize"); in ExtractExtraProperties() local
147 (*op_info->mutable_attr())[attr_key] = attr; in ExtractExtraProperties()
/external/tensorflow/tensorflow/python/debug/cli/
Danalyzer_cli.py1521 for attr_key in attrs:
1522 lines.append(" %s:" % attr_key)
1523 attr_val_str = repr(attrs[attr_key]).strip().replace("\n", " ")
/external/wpa_supplicant_8/src/common/
Ddpp.c5137 const u8 *attr_group, *attr_id, *attr_key; in dpp_pkex_rx_exchange_req() local
5185 attr_key = dpp_get_attr(buf, len, DPP_ATTR_ENCRYPTED_KEY, in dpp_pkex_rx_exchange_req()
5187 if (!attr_key || attr_key_len & 0x01 || attr_key_len < 2 || in dpp_pkex_rx_exchange_req()
5205 Mx = BN_bin2bn(attr_key, attr_key_len / 2, NULL); in dpp_pkex_rx_exchange_req()
5206 My = BN_bin2bn(attr_key + attr_key_len / 2, attr_key_len / 2, NULL); in dpp_pkex_rx_exchange_req()
5232 os_memcpy(pkex->Mx, attr_key, attr_key_len / 2); in dpp_pkex_rx_exchange_req()
5405 const u8 *attr_status, *attr_id, *attr_key; in dpp_pkex_rx_exchange_resp() local
5453 attr_key = dpp_get_attr(buf, buflen, DPP_ATTR_ENCRYPTED_KEY, in dpp_pkex_rx_exchange_resp()
5455 if (!attr_key || attr_key_len & 0x01 || attr_key_len < 2) { in dpp_pkex_rx_exchange_resp()
5472 Nx = BN_bin2bn(attr_key, attr_key_len / 2, NULL); in dpp_pkex_rx_exchange_resp()
[all …]