Home
last modified time | relevance | path

Searched full:negf (Results 1 – 25 of 50) sorted by relevance

12

/llvm-project/mlir/test/Conversion/ArithToEmitC/
H A Darith-to-emitc-unsupported.mlir84 // expected-error @+1 {{failed to legalize operation 'arith.negf'}}
85 %n = arith.negf %arg0 : f80
92 // expected-error @+1 {{failed to legalize operation 'arith.negf'}}
93 %n = arith.negf %arg0 : tensor<5xf32>
100 // expected-error @+1 {{failed to legalize operation 'arith.negf'}}
101 %n = arith.negf %arg0 : vector<5xf32>
/llvm-project/mlir/test/python/dialects/linalg/opdsl/
H A Demit_misc.py14 # - some math/arith functions, including abs, ceil, exp, floor, log, and negf
133 # CHECK-NEXT: %[[EXP:.+]] = arith.negf %[[IN]] : f32
140 return elemwise_unary_poly(input, outs=[init_result], fun=UnaryFn.negf)
151 return elemwise_unary_poly(input, outs=[init_result], fun=UnaryFn.negf)
H A Dtest_core_named_ops.py6 # verify some special cases: negf->NegFOp, powf->PowFOp
/llvm-project/mlir/test/Dialect/SparseTensor/
H A Dsparse_batch.mlir27 // CHECK: %[[VAL_19:.*]] = arith.negf %[[VAL_18]] : f32
44 %2 = arith.negf %in : f32
H A Dsparse_vector_ops.mlir31 // CHECK: %[[VAL_22:.*]] = arith.negf %[[VAL_21]] : vector<8xf32>
68 %7 = arith.negf %6 : f32
H A Dsparse_fp_ops.mlir143 // CHECK: %[[VAL_13:.*]] = arith.negf %[[VAL_12]] : f64
155 %0 = arith.negf %a : f64
251 // CHECK: %[[VAL_26:.*]] = arith.negf %[[VAL_25]] : f64
264 // CHECK: %[[VAL_34:.*]] = arith.negf %[[VAL_33]] : f64
/llvm-project/flang/test/Lower/Intrinsics/
H A Dconjg.f907 ! CHECK: negf
H A Ddconjg.f9012 ! CHECK: %[[VAL_2:.*]] = arith.negf %[[VAL_1]] {{.*}}: f64
/llvm-project/llvm/test/CodeGen/PowerPC/
H A Dfloat-logic-ops.ll81 define float @negf(float %a) {
82 ; CHECK-LABEL: negf:
/llvm-project/mlir/test/Dialect/Linalg/
H A Dlibrary-calls.mlir70 linalg.elemwise_unary {fun = #linalg.unary_fn<negf>}
72 linalg.elemwise_unary {fun = #linalg.unary_fn<negf>}
H A Dnamed-ops-fail.mlir165 linalg.negf ins(%arg : memref<4x8x16xf16>) outs(%out: memref<4x8x16xf32>)
173 linalg.negf ins(%arg : memref<8x16xf32>) outs(%out: memref<4x8x16xf32>)
H A Dgeneralize-named-ops.mlir634 linalg.negf ins(%arg : memref<7x14x21xf32>) outs(%out : memref<7x14x21xf32>)
649 // CHECK-NEXT: %[[negf:.+]] = arith.negf %[[BBARG0]] : f32
650 // CHECK-NEXT: linalg.yield %[[negf]] : f32
H A Dgeneralize-named-polymorphic-ops.mlir498 %0 = linalg.elemwise_unary {fun = #linalg.unary_fn<negf>}
504 // CHECK: = arith.negf
/llvm-project/mlir/utils/tree-sitter-mlir/dialect/
H A Darith.js91 // operation ::= `arith.negf` $operand (`fastmath` ``
94 seq(choice('arith.negf'), field('operand', $.value_use),
/llvm-project/mlir/include/mlir/Dialect/Linalg/IR/
H A DLinalgEnums.td25 I32EnumAttrCase<"negf", 5>,
/llvm-project/flang/test/Lower/forall/
H A Dforall-where-2.f9069 ! CHECK: arith.negf
/llvm-project/mlir/lib/Dialect/Arith/IR/
H A DArithCanonicalization.td424 // mulf(negf(x), negf(y)) -> mulf(x,y)
435 // divf(negf(x), negf(y)) -> divf(x,y)
/llvm-project/mlir/utils/tree-sitter-mlir/queries/
H A Dhighlights.scm107 "arith.negf"
/llvm-project/mlir/utils/tree-sitter-mlir/test/highlight/
H A Dattribute.mlir51 %5 = arith.negf %arg0 fastmath<fast> : f32
/llvm-project/mlir/utils/vim/syntax/
H A Dmlir.vim41 syn keyword mlirOps memref_shape_cast mulf muli negf powf prefetch rsqrt sitofp
/llvm-project/mlir/test/Integration/Dialect/SparseTensor/CPU/
H A Dsparse_binary.mlir184 %lret = arith.negf %x1 : f64
266 %lowerTriangleResult = arith.negf %y : f64
312 %ny = arith.negf %y : f64
361 %ret = arith.negf %y : f64
/llvm-project/mlir/test/Dialect/Arith/
H A Dops.mlir438 %0 = arith.negf %arg0 : f64
444 %0 = arith.negf %arg0 : tensor<8x8xf64>
450 %0 = arith.negf %arg0 : vector<8xf64>
456 %0 = arith.negf %arg0 : vector<[8]xf64>
1118 // CHECK: {{.*}} = arith.negf %arg0 fastmath<fast> : f32
1124 %5 = arith.negf %arg0 fastmath<fast> : f32
/llvm-project/flang/test/Lower/HLFIR/
H A Dunary-ops.f9065 ! CHECK: %[[VAL_5:.*]] = arith.negf %[[VAL_4]] fastmath<contract> : f32
/llvm-project/mlir/test/Dialect/Complex/
H A Dcanonicalize.mlir163 // CHECK: %[[NEG:.*]] = arith.negf %[[ARG0]]
174 // CHECK: %[[NEG:.*]] = arith.negf %[[ARG1]]
/llvm-project/mlir/python/mlir/dialects/linalg/opdsl/lang/
H A Dcomprehension.py294 negf = UnaryFnType("negf") variable in UnaryFn

12