You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
619 B
19 lines
619 B
// RUN: mlir-opt -test-derived-attr -verify-diagnostics %s | FileCheck %s
|
|
|
|
// CHECK-LABEL: verifyDerivedAttributes
|
|
func @verifyDerivedAttributes() {
|
|
// expected-remark @+2 {{element_dtype = f32}}
|
|
// expected-remark @+1 {{size = 320}}
|
|
%0 = "test.derived_type_attr"() : () -> tensor<10xf32>
|
|
|
|
// expected-remark @+2 {{element_dtype = i79}}
|
|
// expected-remark @+1 {{size = 948}}
|
|
%1 = "test.derived_type_attr"() : () -> tensor<12xi79>
|
|
|
|
// expected-remark @+2 {{element_dtype = complex<f32>}}
|
|
// expected-remark @+1 {{size = 768}}
|
|
%2 = "test.derived_type_attr"() : () -> tensor<12xcomplex<f32>>
|
|
|
|
return
|
|
}
|