Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for divd (0.24 sec)

  1. src/cmd/link/link_test.go

    	cmd = testenv.Command(t, testenv.GoToolPath(t), "tool", "link", "-importcfg="+importcfgfile, "-o", exe, xObj)
    	out, err = cmd.CombinedOutput()
    	if err == nil {
    		t.Fatalf("link did not fail")
    	}
    	if !bytes.Contains(out, []byte("unlinkable object")) {
    		t.Errorf("did not see expected error message. out:\n%s", out)
    	}
    
    	// It is okay to omit -p for (only) main package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/optimize.mlir

    // Fusing-LABEL: FusingdivRelu
    // Fusing:  %[[div:[0-9].*]] = tfl.div %arg0, %arg1 {fused_activation_function = "NONE"} : tensor<1xf32>
    // Fusing:  %[[div1:[0-9].*]] = tfl.div %arg0, %[[div]] {fused_activation_function = "RELU"} : tensor<1xf32>
    // Fusing:  %[[relu:[0-9].*]] = "tfl.relu"(%arg0) : (tensor<1xf32>) -> tensor<1xf32>
    // Fusing:  %[[div2:[0-9].*]] = tfl.div %[[relu]], %[[div1]] {fused_activation_function = "RELU6"} : tensor<1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm9.go

    			opset(AADDEVCC, r0)
    			opset(AMULHD, r0)
    			opset(AMULHDCC, r0)
    			opset(AMULHDU, r0)
    			opset(AMULHDUCC, r0)
    			opset(AMULLDCC, r0)
    			opset(AMULLDVCC, r0)
    			opset(AMULLDV, r0)
    			opset(ADIVD, r0)
    			opset(ADIVDCC, r0)
    			opset(ADIVDE, r0)
    			opset(ADIVDEU, r0)
    			opset(ADIVDECC, r0)
    			opset(ADIVDEUCC, r0)
    			opset(ADIVDVCC, r0)
    			opset(ADIVDV, r0)
    			opset(ADIVDU, r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    	// of such pods should not be changed, and there is no need to sync them.
    	// TODO: the logic here does not handle two cases:
    	//   1. If the containers were removed immediately after they died, kubelet
    	//      may fail to generate correct statuses, let alone filtering correctly.
    	//   2. If kubelet restarted before writing the terminated status for a pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. src/net/http/server.go

    		// If the server never writes, yes, there are still contrived
    		// server & client behaviors where this fails to ever cancel the
    		// context, but that's kinda why HTTP/1.x pipelining died
    		// anyway.
    	}
    	if ne, ok := err.(net.Error); ok && cr.aborted && ne.Timeout() {
    		// Ignore this error. It's the expected error from
    		// another goroutine calling abortPendingRead.
    	} else if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Select0 (Mul64uhilo x y)) => (UMULH x y)
    (Select1 (Mul64uhilo x y)) => (MUL x y)
    
    (Div64 [false] x y) => (DIV  x y)
    (Div32 [false] x y) => (DIVW x y)
    (Div16 [false] x y) => (DIVW (SignExt16to32 x) (SignExt16to32 y))
    (Div16u x y) => (UDIVW (ZeroExt16to32 x) (ZeroExt16to32 y))
    (Div8   x y) => (DIVW  (SignExt8to32  x) (SignExt8to32  y))
    (Div8u  x y) => (UDIVW (ZeroExt8to32  x) (ZeroExt8to32  y))
    (Div64u ...) => (UDIV  ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    		err = errnoErr(e1)
    	}
    	return
    }
    
    func setupDiCreateDeviceInfo(deviceInfoSet DevInfo, DeviceName *uint16, classGUID *GUID, DeviceDescription *uint16, hwndParent uintptr, CreationFlags DICD, deviceInfoData *DevInfoData) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewriteARM64.go

    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Div8 x y)
    	// result: (DIVW (SignExt8to32 x) (SignExt8to32 y))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpARM64DIVW)
    		v0 := b.NewValue0(v.Pos, OpSignExt8to32, typ.Int32)
    		v0.AddArg(x)
    		v1 := b.NewValue0(v.Pos, OpSignExt8to32, typ.Int32)
    		v1.AddArg(y)
    		v.AddArg2(v0, v1)
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
Back to top