Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for 4th (0.04 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/tests/duplicate_shape_determining_constants.mlir

      %5 = "tf.AddV2"(%strides, %strides) {device = ""} : (tensor<3xi32>, tensor<3xi32>) -> tensor<3xi32>
    
      return %0 : tensor<8x4x14x14x16xf32>
    }
    
    // Check that the constants that are input to XlaConvV2's 3rd, 4th, 5th, 6th
    // and 7th arguments are cloned with same value.
    // CHECK-DAG: %[[STRIDES:.*]] = "tf.Const"()
    // CHECK-SAME: value = dense<[3, 1, 1]> : tensor<3xi32>
    // CHECK-DAG: %[[STRIDES_COPY:.*]] = "tf.Const"()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 07:44:46 UTC 2022
    - 11K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/asm_zos_s390x.s

    	MOVD 0(R7), R2
    
    	//  arg 3 --> R3
    	CMP  R8, $0
    	BEQ  docall
    	SUB  $1, R8
    	ADD  $8, R7
    	MOVD 0(R7), R3
    
    	CMP  R8, $0
    	BEQ  docall
    	MOVD $2176+16, R6 // starting LE stack address-8 to store 4th argument
    
    repeat:
    	ADD  $8, R7
    	MOVD 0(R7), R0      // advance arg pointer by 8 byte
    	ADD  $8, R6         // advance LE argument address by 8 byte
    	MOVD R0, (R4)(R6*1) // copy argument from go-slice to le-frame
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. src/runtime/sys_darwin_arm64.s

    	MOVD	48(R0), R5	// a6
    	MOVD	8(R0), R0	// a1
    
    	// If fn is declared as vararg, we have to pass the vararg arguments on the stack.
    	// See syscall above. The only function this applies to is openat, for which the 4th
    	// arg must be on the stack.
    	MOVD	R3, (RSP)
    
    	BL	(R12)
    
    	MOVD	8(RSP), R2	// pop structure pointer
    	ADD	$16, RSP
    	MOVD	R0, 56(R2)	// save r1
    	MOVD	R1, 64(R2)	// save r2
    	CMPW	$-1, R0
    	BNE	ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  4. src/runtime/mgcpacer_test.go

    			scannableFrac: constant(0.01),
    			stackBytes:    constant(8192),
    			length:        50,
    			checker: func(t *testing.T, c []gcCycleResult) {
    				n := len(c)
    				if n > 4 {
    					// After the 4th GC, the heap will stop growing.
    					// First, let's make sure we're finishing near the goal, with some extra
    					// room because we're probably going to be triggering early.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 13:53:21 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  5. src/runtime/race_ppc64le.s

    // the arguments from storage to the registers expected
    // by the ABI.
    
    // When calling from Go to Clang tsan code:
    // R3 is the 1st argument and is usually the ThreadState*
    // R4-? are the 2nd, 3rd, 4th, etc. arguments
    
    // When calling racecalladdr:
    // R8 is the call target address
    
    // The race ctx is passed in R3 and loaded in
    // racecalladdr.
    //
    // The sequence used to get the race ctx:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. src/image/gif/reader.go

    var interlacing = []interlaceScan{
    	{8, 0}, // Group 1 : Every 8th. row, starting with row 0.
    	{8, 4}, // Group 2 : Every 8th. row, starting with row 4.
    	{4, 2}, // Group 3 : Every 4th. row, starting with row 2.
    	{2, 1}, // Group 4 : Every 2nd. row, starting with row 1.
    }
    
    // uninterlace rearranges the pixels in m to account for interlaced input.
    func uninterlace(m *image.Paletted) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. src/log/slog/handler.go

    	const prefixLen = len("2006-01-02T15:04:05.000")
    	n := len(b)
    	t = t.Truncate(time.Millisecond).Add(time.Millisecond / 10)
    	b = t.AppendFormat(b, time.RFC3339Nano)
    	b = append(b[:n+prefixLen], b[n+prefixLen+1:]...) // drop the 4th digit
    	return b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 18:18:13 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  8. pkg/wasm/cache_test.go

    	testWasmGet(url1, defaultPullPolicy, "2", wantFilePath1, 1)
    	// 3rd time: Should not pull the binary because the policy is IfNotPresent
    	testWasmGet(url1, IfNotPresent, "3", wantFilePath1, 1)
    	// 4th time: Should not pull the binary because the resource version is not changed
    	testWasmGet(url1, Always, "3", wantFilePath1, 1)
    	// 5th time: Should pull the binary because the resource version is changed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    // binary format. The first words are a header with the following data:
    //
    //	1st word -- 0
    //	2nd word -- 3
    //	3rd word -- 0 if a c++ application, 1 if a java application.
    //	4th word -- Sampling period (in microseconds).
    //	5th word -- Padding.
    func parseCPU(b []byte) (*Profile, error) {
    	var parse func([]byte) (uint64, []byte)
    	var n1, n2, n3, n4, n5 uint64
    	for _, parse = range cpuInts {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
Back to top