Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for W1 (0.04 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/outputorigin/IncrementalBuildOutputOriginIntegrationTest.groovy

                buildCacheKey == thirdBuildCacheKey
            }
        }
    
        def "tracks different tasks"() {
            given:
            buildScript """
                def w1 = tasks.create("w1", WriteProperties) {
                    destinationFile = file("w1.properties")
                    properties = [v: 1]
                }
                def w2 = tasks.create("w2", WriteProperties) {
                    destinationFile = file("w2.properties")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 08:27:17 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. src/math/big/arith_386.s

    	MOVL x+12(FP), SI
    	MOVL s+24(FP), CX
    	MOVL (SI)(BX*4), AX	// w1 = x[n-1]
    	MOVL $0, DX
    	SHLL CX, AX, DX		// w1>>ŝ
    	MOVL DX, c+28(FP)
    
    	CMPL BX, $0
    	JLE X8a			// i <= 0
    
    	// i > 0
    L8:	MOVL AX, DX		// w = w1
    	MOVL -4(SI)(BX*4), AX	// w1 = x[i-1]
    	SHLL CX, AX, DX		// w<<s | w1>>ŝ
    	MOVL DX, (DI)(BX*4)	// z[i] = w<<s | w1>>ŝ
    	SUBL $1, BX		// i--
    	JG L8			// i > 0
    
    	// i <= 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/testdata/fma.go

    	return x + y*z
    }
    
    func main() {
    	w, x, y := 1.0, 1.0, 1.0
    	x = f(x + x/(1<<52))
    	w = f(w / (1 << 27))
    	y = f(y + y/(1<<52))
    	w0 := f(2 * w * (1 - w))
    	w1 := f(w * (1 + w))
    	x = x + w0*w1
    	x = inlineFma(x, w0, w1)
    	y = y + f(w0*w1)
    	y = y + f(w0*w1)
    	fmt.Println(x, y, x-y)
    
    	if x != y {
    		os.Exit(1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 17:02:09 UTC 2022
    - 602 bytes
    - Viewed (0)
  4. src/runtime/internal/math/math.go

    func Mul64(x, y uint64) (hi, lo uint64) {
    	const mask32 = 1<<32 - 1
    	x0 := x & mask32
    	x1 := x >> 32
    	y0 := y & mask32
    	y1 := y >> 32
    	w0 := x0 * y0
    	t := x1*y0 + w0>>32
    	w1 := t & mask32
    	w2 := t >> 32
    	w1 += x0 * y1
    	hi = x1*y1 + w2 + w1>>32
    	lo = x * y
    	return
    }
    
    // Add64 returns the sum with carry of x, y and carry: sum = x + y + carry.
    // The carry input must be 0 or 1; otherwise the behavior is undefined.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:03:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. src/math/big/arith_amd64.s

    	MOVQ x+24(FP), R8
    	MOVQ s+48(FP), CX
    	MOVQ (R8)(BX*8), AX	// w1 = x[n-1]
    	MOVQ $0, DX
    	SHLQ CX, AX, DX		// w1>>ŝ
    	MOVQ DX, c+56(FP)
    
    	CMPQ BX, $0
    	JLE X8a			// i <= 0
    
    	// i > 0
    L8:	MOVQ AX, DX		// w = w1
    	MOVQ -8(R8)(BX*8), AX	// w1 = x[i-1]
    	SHLQ CX, AX, DX		// w<<s | w1>>ŝ
    	MOVQ DX, (R10)(BX*8)	// z[i] = w<<s | w1>>ŝ
    	SUBQ $1, BX		// i--
    	JG L8			// i > 0
    
    	// i <= 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/tests/add_dump_tensor_op.mlir

    // IntPerLayer-DAG: %[[output1_quantized:.*]] = "tf.PartitionedCall"(%[[output0_quantized]], %[[w1]], %[[b1]]) <{config = "", config_proto = "", executor_type = "", f = @composite_conv2d_with_bias_and_relu6_fn_1}> {_tfl_quant_trait = "fully_quantizable"}
    // IntPerLayer-DAG: %[[output1_unquantized:.*]] = "tf.PartitionedCall"(%[[output0_quantized]], %[[w1]], %[[b1]]) <{config = "", config_proto = "", executor_type = "", f = @composite_conv2d_with_bias_and_relu6_fn_1_0}>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/value.go

    //go:noinline
    func (v *Value) AddArg4(w1, w2, w3, w4 *Value) {
    	v.Args = append(v.Args, w1, w2, w3, w4)
    	w1.Uses++
    	w2.Uses++
    	w3.Uses++
    	w4.Uses++
    }
    
    //go:noinline
    func (v *Value) AddArg5(w1, w2, w3, w4, w5 *Value) {
    	v.Args = append(v.Args, w1, w2, w3, w4, w5)
    	w1.Uses++
    	w2.Uses++
    	w3.Uses++
    	w4.Uses++
    	w5.Uses++
    }
    
    //go:noinline
    func (v *Value) AddArg6(w1, w2, w3, w4, w5, w6 *Value) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_gobuild_import.txt

    # GO111MODULE=on in GOPATH/src
    cd $GOPATH/src
    env GO111MODULE=
    exec $WORK/testimport$GOEXE gobuild.example.com/x/y/z/w .
    stdout w1.go
    env GO111MODULE=on
    exec $WORK/testimport$GOEXE gobuild.example.com/x/y/z/w .
    stdout w1.go
    cd w
    exec $WORK/testimport$GOEXE gobuild.example.com/x/y/z/w ..
    stdout w1.go
    
    # go/build's Import in FindOnly mode should find directories by invoking the go command
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:16 UTC 2022
    - 3K bytes
    - Viewed (0)
  9. test/fixedbugs/issue23719.go

    // license that can be found in the LICENSE file.
    
    package main
    
    func main() {
    	v1 := [2]int32{-1, 88}
    	v2 := [2]int32{-1, 99}
    	if v1 == v2 {
    		panic("bad comparison")
    	}
    
    	w1 := [2]int16{-1, 88}
    	w2 := [2]int16{-1, 99}
    	if w1 == w2 {
    		panic("bad comparison")
    	}
    	x1 := [4]int16{-1, 88, 88, 88}
    	x2 := [4]int16{-1, 99, 99, 99}
    	if x1 == x2 {
    		panic("bad comparison")
    	}
    
    	a1 := [2]int8{-1, 88}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 06 18:24:33 UTC 2018
    - 826 bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/decls4.go

    func (V1) n() {}
    
    // alias receiver types (invalid due to cycles)
    type (
    	W0 /* ERROR "invalid recursive type" */ = W1
    	W1 = (W2)
    	W2 = ((W0))
    )
    
    func (W0) m() {} // no error expected (due to above cycle error)
    func (W1) n() {}
    
    // alias receiver types (invalid due to builtin underlying type)
    type (
    	B0 = B1
    	B1 = B2
    	B2 = int
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top