Lines Matching refs:context
34 MLIRContext context; in TEST() local
35 IntegerType boolTy = IntegerType::get(&context, 1); in TEST()
59 MLIRContext context; in TEST() local
60 IntegerType boolTy = IntegerType::get(&context, 1); in TEST()
82 MLIRContext context; in TEST() local
83 IntegerType boolTy = IntegerType::get(&context, 1); in TEST()
94 MLIRContext context; in TEST() local
96 IntegerType intTy = IntegerType::get(&context, intWidth); in TEST()
103 MLIRContext context; in TEST() local
104 IntegerType intTy = IntegerType::get(&context, 32); in TEST()
111 MLIRContext context; in TEST() local
112 IntegerType intTy = IntegerType::get(&context, 85); in TEST()
119 MLIRContext context; in TEST() local
120 FloatType floatTy = FloatType::getF32(&context); in TEST()
127 MLIRContext context; in TEST() local
128 FloatType floatTy = FloatType::getF64(&context); in TEST()
135 MLIRContext context; in TEST() local
136 FloatType floatTy = FloatType::getF32(&context); in TEST()
143 MLIRContext context; in TEST() local
144 FloatType floatTy = FloatType::getBF16(&context); in TEST()
151 MLIRContext context; in TEST() local
152 context.allowUnregisteredDialects(); in TEST()
154 OpaqueType::get(StringAttr::get(&context, "test"), "string"); in TEST()
160 MLIRContext context; in TEST() local
161 context.allowUnregisteredDialects(); in TEST()
163 OpaqueType::get(StringAttr::get(&context, "test"), "string"); in TEST()
169 MLIRContext context; in TEST() local
170 ComplexType complexType = ComplexType::get(FloatType::getF32(&context)); in TEST()
176 MLIRContext context; in TEST() local
177 ComplexType complexType = ComplexType::get(IntegerType::get(&context, 64)); in TEST()
183 MLIRContext context; in TEST() local
184 ComplexType complexType = ComplexType::get(FloatType::getF32(&context)); in TEST()
190 MLIRContext context; in TEST() local
191 ComplexType complexType = ComplexType::get(IntegerType::get(&context, 64)); in TEST()
197 MLIRContext context; in TEST() local
199 IntegerType intTy = IntegerType::get(&context, 32); in TEST()
208 MLIRContext context; in TEST() local
209 context.allowUnregisteredDialects(); in TEST()
211 IntegerType intTy = IntegerType::get(&context, 32); in TEST()
212 FloatType floatTy = FloatType::getF32(&context); in TEST()
213 Type stringTy = OpaqueType::get(StringAttr::get(&context, "test"), "string"); in TEST()
220 RankedTensorType::get({1, 2}, IntegerType::get(&context, 64)); in TEST()