Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 1p512 (0.04 sec)

  1. src/cmd/compile/internal/ssa/poset_test.go

    	}
    	return 1000 + 256 + i
    }
    
    func testPosetOps(t *testing.T, unsigned bool, ops []posetTestOp) {
    	var v [1512]*Value
    	for i := range v {
    		v[i] = new(Value)
    		v[i].ID = ID(i)
    		if i >= 1000 && i < 1256 {
    			v[i].Op = OpConst64
    			v[i].AuxInt = int64(i - 1000 - 128)
    		}
    		if i >= 1256 && i < 1512 {
    			v[i].Op = OpConst64
    			v[i].AuxInt = int64(i - 1000 - 256)
    		}
    	}
    
    	po := newPoset()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 26 07:52:35 UTC 2019
    - 18.1K bytes
    - Viewed (0)
  2. security/pkg/pki/util/crypto_test.go

    			isErr:         false,
    			expectedCurve: elliptic.P256(),
    		},
    		"ECDSA-P384": {
    			key:           ecdsaPrivKeyP384,
    			isErr:         false,
    			expectedCurve: elliptic.P384(),
    		},
    		"ECDSA-P512": {
    			key:           ecdsaPrivKeyP521,
    			isErr:         false,
    			expectedCurve: elliptic.P256(),
    		},
    		"ED25519": {
    			key:           ed25519PrivKey,
    			isErr:         true,
    			expectedCurve: nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/optimize.mlir

    }
    
    // -----
    
    // CHECK-LABEL: testSliceConcat
    func.func @testSliceConcat(%arg0: tensor<3x1x512xf32>) -> tensor<3x1x512xf32> {
      %0 = "mhlo.slice"(%arg0) <{limit_indices = dense<[1, 1, 512]> : tensor<3xi64>, start_indices = dense<[0, 0, 0]> : tensor<3xi64>, strides = dense<1> : tensor<3xi64>}> : (tensor<3x1x512xf32>) -> tensor<1x1x512xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  4. src/archive/tar/reader_test.go

    		if err != nil {
    			t.Fatalf("unexpected error: %v", err)
    		}
    		ss = append(ss, string(buf))
    	}
    
    	data1, data2, pax, sparse := ss[0], ss[1], ss[2], ss[3]
    	data2 += strings.Repeat("\x00", 10*512)
    	trash := strings.Repeat("garbage ", 64) // Exactly 512 bytes
    
    	vectors := []struct {
    		input string // Input stream
    		cnt   int    // Expected number of headers read
    		err   error  // Expected error outcome
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 21:14:38 UTC 2022
    - 47.1K bytes
    - Viewed (0)
  5. tensorflow/cc/gradients/array_grad_test.cc

      TensorShape y_shape({1, 5, 2});
      auto y = ExpandDims(scope_, x, 0);
      RunTest(x, x_shape, y, y_shape);
    }
    
    TEST_F(ArrayGradTest, SqueezeGrad) {
      TensorShape x_shape({1, 5, 1, 2});
      auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(x_shape));
      TensorShape y_shape({5, 2});
      auto y = Squeeze(scope_, x);
      RunTest(x, x_shape, y, y_shape);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/s390x.s

    	CMPW	R7, R8                 // 1978
    	CMPW	R9, $-32768            // a79e8000
    	CMPW	R9, $-32769            // c29dffff7fff
    	CMPW	R9, $-2147483648       // c29d80000000
    	CMPWU	R1, R2                 // 1512
    	CMPWU	R3, $4294967295        // c23fffffffff
    
    	TMHH	R1, $65535             // a712ffff
    	TMHL	R2, $1                 // a7230001
    	TMLH	R3, $0                 // a7300000
    	TMLL	R4, $32768             // a7418000
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 03:55:32 UTC 2023
    - 21.6K bytes
    - Viewed (0)
Back to top