Home
last modified time | relevance | path

Searched refs:m_dict (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/contrib/training/python/training/
Dhparam.py59 def _process_scalar_value(name, parse_fn, var_type, m_dict, values, argument
83 parsed_value = parse_fn(m_dict['val'])
85 _parse_fail(name, var_type, m_dict['val'], values)
88 if not m_dict['index']:
101 index = int(m_dict['index'])
108 def _process_list_value(name, parse_fn, var_type, m_dict, values, argument
130 if m_dict['index'] is not None:
132 elements = filter(None, re.split('[ ,]', m_dict['vals']))
139 _parse_fail(name, var_type, m_dict['vals'], values)
263 m_dict = m.groupdict()
[all …]
/external/autotest/client/site_tests/graphics_WebGLAquarium/
Dsampler.py143 m_dict = m.groupdict() # named group of RE match (m_dict['task']...)
144 pipe, fb, state = self.exynos_parser(m_dict['detail'])
145 timestamp = float(m_dict['timestamp'])
164 m_dict = re.match(re_pattern, detail).groupdict()
165 return int(m_dict['pipe']), int(m_dict['fb']), m_dict['state']