Home
last modified time | relevance | path

Searched refs:temp_dict (Results 1 – 3 of 3) sorted by relevance

/third_party/mindspore/mindspore/nn/layer/
Dcontainer.py200 temp_dict = OrderedDict()
206 temp_dict[str(idx)] = cell
208 temp_dict[key] = cell
209 self._cells = temp_dict
326 temp_dict = OrderedDict()
331 temp_dict[str(idx)] = cell
332 self._cells = temp_dict
/third_party/mindspore/mindspore/profiler/parser/
Dminddata_analyzer.py568 temp_dict = copy.deepcopy(data_dict)
569 for data_key, data_value in zip(temp_dict.keys(), temp_dict.values()):
/third_party/python/Objects/
Ddictobject.c4548 PyObject *temp_dict = PyDict_Copy(d1); in dictitems_xor() local
4549 if (temp_dict == NULL) { in dictitems_xor()
4554 Py_CLEAR(temp_dict); in dictitems_xor()
4565 val1 = _PyDict_GetItem_KnownHash(temp_dict, key, hash); in dictitems_xor()
4583 if (_PyDict_DelItem_KnownHash(temp_dict, key, hash) < 0) { in dictitems_xor()
4605 PyObject *remaining_pairs = _PyObject_CallMethodIdNoArgs(temp_dict, in dictitems_xor()
4614 Py_DECREF(temp_dict); in dictitems_xor()
4619 Py_XDECREF(temp_dict); in dictitems_xor()