Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 487 for pcdelta (0.23 sec)

  1. android/guava-tests/test/com/google/common/math/StatsTesting.java

        assertThat(transformation.transform(x1 + xDelta)).isWithin(ALLOWED_ERROR).of(y1 + yDelta);
        assertThat(transformation.inverse().transform(y1)).isWithin(ALLOWED_ERROR).of(x1);
        assertThat(transformation.inverse().transform(y1 + yDelta))
            .isWithin(ALLOWED_ERROR)
            .of(x1 + xDelta);
        assertThat(transformation.slope()).isWithin(ALLOWED_ERROR).of(yDelta / xDelta);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 09 22:49:56 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  2. src/image/draw/draw.go

    	dx, dy := r.Dx(), r.Dy()
    	d0 := dst.PixOffset(r.Min.X, r.Min.Y)
    	s0 := src.PixOffset(sp.X, sp.Y)
    	var (
    		ddelta, sdelta int
    		i0, i1, idelta int
    	)
    	if r.Min.Y < sp.Y || r.Min.Y == sp.Y && r.Min.X <= sp.X {
    		ddelta = dst.Stride
    		sdelta = src.Stride
    		i0, i1, idelta = 0, dx*4, +4
    	} else {
    		// If the source start point is higher than the destination start point, or equal height but to the left,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/gradient_checker.cc

            // Evaluate at positive delta.
            x_data_flat(r) = v + x_delta;
            std::vector<Tensor> y_pos;
            TF_RETURN_IF_ERROR(EvaluateGraph(&session, xs, ys, x_datas, &y_pos));
            // Evaluate at negative delta.
            x_data_flat(r) = v - x_delta;
            std::vector<Tensor> y_neg;
            TF_RETURN_IF_ERROR(EvaluateGraph(&session, xs, ys, x_datas, &y_neg));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. src/image/jpeg/scan.go

    							if err != nil {
    								return err
    							}
    							if value > 16 {
    								return UnsupportedError("excessive DC component")
    							}
    							dcDelta, err := d.receiveExtend(value)
    							if err != nil {
    								return err
    							}
    							dc[compIndex] += dcDelta
    							b[0] = dc[compIndex] << al
    						}
    
    						if zig <= zigEnd && d.eobRun > 0 {
    							d.eobRun--
    						} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.h

          m.size += patch ? 0 : operations_[m.op_index - shift].alloc;
          // deltas is sorted by location; apply any corrections to the current
          // operator.
          for (; idelta != deltas.end() && idelta->op_index == m.op_index;
               ++idelta) {
            m.size += idelta->size;
          }
          mapper(m);
          m.size -= patch ? 0 : operations_[m.op_index - shift].dealloc;
        }
      }
    
      std::vector<Operation> operations_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 12K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/plist.go

    func (ctxt *Link) EmitEntryStackMap(s *LSym, p *Prog, newprog ProgAlloc) *Prog {
    	pcdata := Appendp(p, newprog)
    	pcdata.Pos = s.Func().Text.Pos
    	pcdata.As = APCDATA
    	pcdata.From.Type = TYPE_CONST
    	pcdata.From.Offset = abi.PCDATA_StackMapIndex
    	pcdata.To.Type = TYPE_CONST
    	pcdata.To.Offset = -1 // pcdata starts at -1 at function entry
    
    	return pcdata
    }
    
    // Similar to EmitEntryLiveness, but just emit unsafe point map.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  7. platforms/jvm/ear/src/integTest/resources/org/gradle/plugins/ear/application_1_3.dtd

    required by the respective component specification. Used in: module --> <!ELEMENT alt-dd (#PCDATA)> <!-- The connector element specifies the URI of a resource adapter archive file, relative to the top level of the application package. Used in: module --> <!ELEMENT connector (#PCDATA)> <!-- The context-root element specifies the context root of a web application. Used in: web --> <!ELEMENT context-root (#PCDATA)> <!-- The description element is used to provide text describing the parent element. The...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  8. test/fixedbugs/issue15281.go

    		f2(c, x)
    	}
    }
    
    func f1(c chan []byte, start int64) {
    	for x := range c {
    		if delta := inuse() - start; delta < 9<<20 {
    			println("BUG: f1: after alloc: expected delta at least 9MB, got: ", delta)
    			println(x)
    		}
    		x = nil
    		if delta := inuse() - start; delta > 1<<20 {
    			println("BUG: f1: after alloc: expected delta below 1MB, got: ", delta)
    			println(x)
    		}
    	}
    }
    
    func f2(c chan []byte, start int64) {
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 17 09:45:44 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  9. src/runtime/stkframe.go

    		return
    	}
    
    	f := frame.fn
    	pcdata := int32(-1)
    	if targetpc != f.entry() {
    		// Back up to the CALL. If we're at the function entry
    		// point, we want to use the entry map (-1), even if
    		// the first instruction of the function changes the
    		// stack map.
    		targetpc--
    		pcdata = pcdatavalue(f, abi.PCDATA_StackMapIndex, targetpc)
    	}
    	if pcdata == -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. src/sync/atomic/atomic_test.go

    		before int32
    		i      int32
    		after  int32
    	}
    	x.before = magic32
    	x.after = magic32
    	var j int32
    	for delta := int32(1); delta+delta > delta; delta += delta {
    		k := SwapInt32(&x.i, delta)
    		if x.i != delta || k != j {
    			t.Fatalf("delta=%d i=%d j=%d k=%d", delta, x.i, j, k)
    		}
    		j = delta
    	}
    	if x.before != magic32 || x.after != magic32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
Back to top