Home | History | Annotate | Download | only in utils

Lines Matching refs:element_type

49       (width, element_type) = random.choice(
53 (width, element_type) = random.choice(
59 element_type = random.choice(element_types)
63 'f32': 1 << 32, 'f64': 1 << 64}[element_type]
113 (args.seed, width, element_type))
143 integral_element_type = element_type
144 if element_type == 'f32':
146 element_type = 'float'
147 elif element_type == 'f64':
149 element_type = 'double'
152 subst = {'N': width, 'T': element_type, 'IT': integral_element_type}