Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 52 for ADDF (0.06 sec)

  1. src/cmd/compile/internal/ssa/_gen/LOONG64Ops.go

    		{name: "REMVU", argLength: 2, reg: gp21, asm: "REMVU", typ: "UInt64"},                      // arg0 / arg1, unsigned
    
    		{name: "ADDF", argLength: 2, reg: fp21, asm: "ADDF", commutative: true}, // arg0 + arg1
    		{name: "ADDD", argLength: 2, reg: fp21, asm: "ADDD", commutative: true}, // arg0 + arg1
    		{name: "SUBF", argLength: 2, reg: fp21, asm: "SUBF"},                    // arg0 - arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:19 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/MIPS64Ops.go

    		{name: "DIVVU", argLength: 2, reg: gp2hilo, asm: "DIVVU", typ: "(UInt64,UInt64)"},                    // arg0 / arg1, signed, results hi=arg0%arg1,lo=arg0/arg1
    
    		{name: "ADDF", argLength: 2, reg: fp21, asm: "ADDF", commutative: true}, // arg0 + arg1
    		{name: "ADDD", argLength: 2, reg: fp21, asm: "ADDD", commutative: true}, // arg0 + arg1
    		{name: "SUBF", argLength: 2, reg: fp21, asm: "SUBF"},                    // arg0 - arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 03:36:31 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops_invalid.mlir

    func.func @graph_with_invalid_op(%arg0: tensor<*xf32>) -> tensor<*xf32> {
      %result = "tf_executor.graph" () ({
        %val = arith.addf %arg0, %arg0 : tensor<*xf32>
    // expected-error@-1 {{'arith.addf' op unallowed inside a tf_executor.graph region}}
        tf_executor.fetch %val : tensor<*xf32>
      }) : () -> tensor<*xf32>
      func.return %result : tensor<*xf32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 01:12:10 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/signature.go

    	results, _ := check.collectParams(scope, ftyp.ResultList, false, scopePos)
    	scope.Squash(func(obj, alt Object) {
    		err := check.newError(DuplicateDecl)
    		err.addf(obj, "%s redeclared in this block", obj.Name())
    		err.addAltDecl(alt)
    		err.report()
    	})
    
    	if recvPar != nil {
    		// recv parameter list present (may be empty)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. src/go/types/signature.go

    	results, _ := check.collectParams(scope, ftyp.Results, false, scopePos)
    	scope.squash(func(obj, alt Object) {
    		err := check.newError(DuplicateDecl)
    		err.addf(obj, "%s redeclared in this block", obj.Name())
    		err.addAltDecl(alt)
    		err.report()
    	})
    
    	if recvPar != nil {
    		// recv parameter list present (may be empty)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      %2 = "tf.AvgPool"(%arg0) {T = "tfdtype$DT_FLOAT", data_format = "NHWC", ksize = [1, 3, 6, 1], padding = "VALID", strides = [1, 3, 1, 3]} : (tensor<1x6x6x16xf32>) -> tensor<1x1x1x16xf32>
    
      %5 = arith.addf %0, %1 : tensor<1x1x1x16xf32>
      %6 = arith.addf %2, %5 : tensor<1x1x1x16xf32>
      func.return %6 : tensor<1x1x1x16xf32>
    
    // CHECK-LABEL: func @avgPool2D
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    		{name: "MULA", argLength: 3, reg: gp31, asm: "MULA"},                      // arg0 * arg1 + arg2
    		{name: "MULS", argLength: 3, reg: gp31, asm: "MULS"},                      // arg2 - arg0 * arg1
    
    		{name: "ADDF", argLength: 2, reg: fp21, asm: "ADDF", commutative: true},   // arg0 + arg1
    		{name: "ADDD", argLength: 2, reg: fp21, asm: "ADDD", commutative: true},   // arg0 + arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops.mlir

    // CHECK-LABEL: func @fetchWithControlDep(%{{.*}}: tensor<*xf32>)
    func.func @fetchWithControlDep(%arg0: tensor<*xf32>) -> tensor<*xf32> {
      %result = tf_executor.graph {
        %val, %ctl_id = tf_executor.island {
          %val = arith.addf %arg0, %arg0 : tensor<*xf32>
          tf_executor.yield %arg0 : tensor<*xf32>
        }
    // CHECK: tf_executor.fetch %{{.*}}, %{{.*}} : tensor<*xf32>, !tf_executor.control
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 25.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/python/tfr_gen_test.py

          CHECK-NEXT: %[[cst:.*]] = arith.constant 1 : i64
          CHECK-NEXT: %{{.*}} = arith.addi %[[add_1]], %[[cst]] : i64
          CHECK-NEXT: %{{.*}} = arith.cmpf "ugt", %x1, %y1 : f32
          CHECK-NEXT: %{{.*}} = arith.addf %x1, %y1 : f32
          CHECK-NEXT: %{{.*}} = "tfr.build_list"(%x1, %y1) : (f32, f32) -> !tfr.attr
          CHECK-NEXT: %{{.*}} = arith.constant true
          CHECK-NEXT: tfr.return
          CHECK-NEXT: }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 28.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (NMULF (NEGF x) y) => (MULF x y)
    (NMULD (NEGD x) y) => (MULD x y)
    
    // the result will overwrite the addend, since they are in the same register
    (ADDF a (MULF x y)) && a.Uses == 1 && buildcfg.GOARM.Version >= 6 => (MULAF a x y)
    (ADDF a (NMULF x y)) && a.Uses == 1 && buildcfg.GOARM.Version >= 6 => (MULSF a x y)
    (ADDD a (MULD x y)) && a.Uses == 1 && buildcfg.GOARM.Version >= 6 => (MULAD a x y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
Back to top