Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 627 for madd (0.05 sec)

  1. test/codegen/floats.go

    	return x*y - z
    }
    
    func FusedSub32_b(x, y, z float32) float32 {
    	// arm64:"FMSUBS"
    	// riscv64:"FNMSUBS\t"
    	return z - x*y
    }
    
    func FusedAdd64(x, y, z float64) float64 {
    	// s390x:"FMADD\t"
    	// ppc64x:"FMADD\t"
    	// arm64:"FMADDD"
    	// riscv64:"FMADDD\t"
    	return x*y + z
    }
    
    func FusedSub64_a(x, y, z float64) float64 {
    	// s390x:"FMSUB\t"
    	// ppc64x:"FMSUB\t"
    	// riscv64:"FMSUBD\t"
    	return x*y - z
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/obj9.go

    	case ASUB:
    		if p.From.Type != obj.TYPE_CONST {
    			break
    		}
    		// Rewrite SUB $const,... into ADD $-const,...
    		p.From.Offset = -p.From.Offset
    		p.As = AADD
    		// This is now an ADD opcode, try simplifying it below.
    		fallthrough
    
    	// Rewrite ADD/OR/XOR/ANDCC $const,... forms into ADDIS/ORIS/XORIS/ANDISCC
    	case AADD:
    		// Don't rewrite if this is not adding a constant value, or is not an int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  3. releasenotes/notes/add-pod-securitycontext.yaml

    Morven Cao <******@****.***> 1600974481 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 24 19:08:01 UTC 2020
    - 178 bytes
    - Viewed (0)
  4. releasenotes/notes/add-sni-host.yaml

    Brian Avery <******@****.***> 1597180858 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 177 bytes
    - Viewed (0)
  5. releasenotes/notes/add-overwrite-flag.yaml

    Jeremy L. Morris <******@****.***> 1717516806 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 16:00:06 UTC 2024
    - 255 bytes
    - Viewed (0)
  6. releasenotes/notes/add-openshift-profile.yaml

    my-git9 <******@****.***> 1708354813 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 19 15:00:13 UTC 2024
    - 455 bytes
    - Viewed (0)
  7. releasenotes/notes/add-remote-profile.yaml

    Frank Budinsky <******@****.***> 1662658341 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 08 17:32:21 UTC 2022
    - 201 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-request-header-add.yaml

      name: header-http-echo
    spec:
      parentRefs:
        - name: acme-gw
      rules:
        - matches:
            - path:
                type: PathPrefix
                value: /add-a-request-header
          filters:
            - type: RequestHeaderModifier
              requestHeaderModifier:
                add:
                  - name: my-header-name
                    value: my-header-value
          backendRefs:
            - name: echo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 487 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize-tfl-stablehlo-add.mlir

      %0 = "tfl.custom"(%arg0, %arg0) {custom_code = "stablehlo.add", custom_option = #tfl<const_bytes : "0x00000100002401">} : (tensor<2xi32>, tensor<2xi32>) -> tensor<2xi32>
      func.return %0 : tensor<2xi32>
    }
    }
    
    // CHECK:       module {
    // CHECK-NEXT:  func @main(%arg0: tensor<2xi32>) -> tensor<2xi32> attributes {tf.entry_function = {inputs = "arg0", outputs = "tfl.custom1"}} {
    // CHECK-NEXT:    %0 = stablehlo.add %arg0, %arg0 : tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 16 05:09:09 UTC 2022
    - 741 bytes
    - Viewed (0)
  10. src/math/asinh_s390x.s

    	BYTE	$0x14
    	RISBGN	$0, $31, $32, R4, R2
    	SUBW	$0x100000, R1
    	SRAW	$8, R1, R1
    	ORW	$0x45000000, R1
    	BR	L6
    L2:
    	MOVD	$0x30000000, R2
    	CMPW	R1, R2
    	BGT	L16
    	FMOVD	200(R9), F2
    	FMADD	F2, F0, F0
    L1:
    	FMOVD	F0, ret+8(FP)
    	RET
    L14:
    	LTDBR	F0, F0
    	BLTU	L17
    	FMOVD	F0, F10
    L4:
    	FMOVD	192(R9), F2
    	WFMADB	V0, V0, V2, V0
    	LTDBR	F0, F0
    	FSQRT	F0, F8
    L5:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 5.7K bytes
    - Viewed (0)
Back to top