Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 899 for lanes (0.04 sec)

  1. tensorflow/c/eager/dlpack_test.cc

      EXPECT_EQ(dltensor_out->ndim, dltensor_in->ndim);
      EXPECT_EQ(dltensor_out->dtype.code, dltensor_in->dtype.code);
      EXPECT_EQ(dltensor_out->dtype.bits, dltensor_in->dtype.bits);
      EXPECT_EQ(dltensor_out->dtype.lanes, dltensor_in->dtype.lanes);
      for (int i = 0; i < dltensor_in->ndim; ++i) {
        EXPECT_EQ(dltensor_out->shape[i], dltensor_in->shape[i]);
        if (dltensor_out->strides) {
          if (i == dltensor_in->ndim - 1) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 30 03:04:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s

    // and odd indices of the message. These form our SIMD 'lanes':
    //
    //   h = m[ 0:16]r⁴ + m[32:48]r² +   <- lane 0
    //       m[16:32]r³ + m[48:64]r      <- lane 1
    //
    // To calculate this iteratively we refactor so that both lanes
    // are written in terms of r² and r:
    //
    //   h = (m[ 0:16]r² + m[32:48])r² + <- lane 0
    //       (m[16:32]r² + m[48:64])r    <- lane 1
    //                ^             ^
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  3. src/internal/bytealg/count_arm64.s

    chunk_loop:
    	VLD1.P	(R0), [V1.B16, V2.B16]
    	CMP	R0, R3
    	VCMEQ	V0.B16, V1.B16, V3.B16
    	VCMEQ	V0.B16, V2.B16, V4.B16
    	// Clear the higher 7 bits
    	VAND	V5.B16, V3.B16, V3.B16
    	VAND	V5.B16, V4.B16, V4.B16
    	// Count lanes match the requested byte
    	VADDP	V4.B16, V3.B16, V6.B16 // 32B->16B
    	VUADDLV	V6.B16, V7
    	// Accumulate the count in low 64-bit element of V8 when inside the loop
    	VADD	V7, V8
    	BNE	chunk_loop
    	VMOV	V8.D[0], R6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 17:00:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. tensorflow/c/eager/dlpack.cc

      owner->reference.Unref();
      delete owner;
    }
    
    // Converts TF_DATAType to DLPack data type.
    DLDataType GetDlDataType(TF_DataType data_type, TF_Status* status) {
      DLDataType dtype;
      dtype.lanes = 1;
      dtype.bits = TF_DataTypeSize(data_type) * 8;
      switch (data_type) {
        case TF_DataType::TF_BOOL:
          dtype.code = DLDataTypeCode::kDLBool;
          break;
        case TF_DataType::TF_HALF:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ResultAssertion.java

                    // skip over stack trace
                    i++;
                    i = skipStackTrace(lines, i);
                } else if (!expectStackTraces && !insideVariantDescriptionBlock && STACK_TRACE_ELEMENT.matcher(line).matches() && i < lines.size() - 1 && STACK_TRACE_ELEMENT.matcher(lines.get(i + 1)).matches()) {
                    // 2 or more lines that look like stack trace elements
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. src/cmd/covdata/tool_test.go

    	lines := runToolOp(t, s, "pkglist", dargs)
    
    	want := []string{mainPkgPath, mainPkgPath + "/dep"}
    	bad := false
    	if len(lines) != 2 {
    		t.Errorf("expect pkglist to return two lines")
    		bad = true
    	} else {
    		for i := 0; i < 2; i++ {
    			lines[i] = strings.TrimSpace(lines[i])
    			if want[i] != lines[i] {
    				t.Errorf("line %d want %s got %s", i, want[i], lines[i])
    				bad = true
    			}
    		}
    	}
    	if bad {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  7. src/net/lookup_plan9.go

    // the corresponding protocol number.
    func lookupProtocol(ctx context.Context, name string) (proto int, err error) {
    	lines, err := query(ctx, netdir+"/cs", "!protocol="+toLower(name), 128)
    	if err != nil {
    		return 0, err
    	}
    	if len(lines) == 0 {
    		return 0, UnknownNetworkError(name)
    	}
    	f := getFields(lines[0])
    	if len(f) < 2 {
    		return 0, UnknownNetworkError(name)
    	}
    	s := f[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:08:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/util/documentation.go

    // - Beginning and trailing space characters (including empty lines), are stripped from the output.
    // - Consecutive non-empty lines of text are joined with spaces to form paragraphs.
    // - Paragraphs are blocks of text divided by one or more empty lines or lines consisting only of "space" characters.
    // - Paragraphs are spaced by precisely one empty line in the output.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 24 11:40:55 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/runtime/runtime_test.go

    	lines := strings.Split(log, "\n")
    	if len(lines) < 4 {
    		t.Fatalf("panic log should have 1 line of message, 1 line per goroutine and 2 lines per function call")
    	}
    	t.Logf("Got log output:\n%s", strings.Join(lines, "\n"))
    	if match, _ := regexp.MatchString(`"Observed a panic" panic="test panic"`, lines[0]); !match {
    		t.Errorf("mismatch panic message: %s", lines[0])
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. src/internal/diff/diff.go

    		chunk pair     // start lines of current chunk
    		count pair     // number of lines from each side in current chunk
    		ctext []string // lines for current chunk
    	)
    	for _, m := range tgs(x, y) {
    		if m.x < done.x {
    			// Already handled scanning forward from earlier match.
    			continue
    		}
    
    		// Expand matching lines as far as possible,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 14:13:04 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top