Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Tolerance (0.23 sec)

  1. src/image/gif/writer_test.go

    			t.Errorf("%s, bounds differ: %v and %v", tc.filename, m0.Bounds(), m1.Bounds())
    			continue
    		}
    		// Compare the average delta to the tolerance level.
    		avgDelta := averageDelta(m0, m1)
    		if avgDelta > tc.tolerance {
    			t.Errorf("%s: average delta is too high. expected: %d, got %d", tc.filename, tc.tolerance, avgDelta)
    			continue
    		}
    	}
    }
    
    func TestSubImage(t *testing.T) {
    	m0, err := readImg("../testdata/video-001.gif")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        mlir::TFL::NumericVerifyOp op, const std::vector<int32_t>& operands,
        const std::vector<int32_t>& results) {
      float tolerance = op.getTolerance().convertToFloat();
      bool log_if_failed = op.getLogIfFailed();
      auto fbb = std::make_unique<flexbuffers::Builder>();
      fbb->Map([&]() {
        fbb->Float("tolerance", tolerance);
        fbb->Bool("log_if_failed", log_if_failed);
      });
      fbb->Finish();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (2)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        above tolerance exist. If log_if_failed = false, then it doesn't care about
        errors.
      }];
    
      let arguments = (ins
        TFL_TensorOf<[QI8, QUI8, QI16, F16, TFL_Quint8]>:$input,
        TFL_TensorOf<[F32]>:$ref,
    
        // Attributes
        DefaultValuedOptionalAttr<F32Attr, "0.1">:$tolerance,
        DefaultValuedOptionalAttr<BoolAttr, "false">:$log_if_failed
      );
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  4. src/net/http/server.go

    		defer func() {
    			c.rwc.SetWriteDeadline(time.Now().Add(d))
    		}()
    	}
    
    	c.r.setReadLimit(c.server.initialReadLimitSize())
    	if c.lastMethod == "POST" {
    		// RFC 7230 section 3 tolerance for old buggy clients.
    		peek, _ := c.bufr.Peek(4) // ReadRequest will get err below
    		c.bufr.Discard(numLeadingCRorLF(peek))
    	}
    	req, err := readRequest(c.bufr)
    	if err != nil {
    		if c.r.hitReadLimit() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. RELEASE.md

        register a dataset with the tf.data service, and another process to consume
        data from the dataset.
    *   Adds support for dispatcher fault tolerance. To enable fault tolerance,
        configure a `work_dir` when running your dispatcher server and set
        `dispatcher_fault_tolerance=True`. The dispatcher will store its state to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    }
    
    def TF_ApproximateEqualOp : TF_Op<"ApproximateEqual", [Commutative, Pure]> {
      let summary = "Returns the truth value of abs(x-y) < tolerance element-wise.";
    
      let arguments = (ins
        TF_NumberTensor:$x,
        TF_NumberTensor:$y,
    
        DefaultValuedOptionalAttr<F32Attr, "1e-05f">:$tolerance
      );
    
      let results = (outs
        TF_BoolTensor:$z
      );
    
      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<0>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    						},
    					},
    					"HorizontalPodAutoscalerTolerance": {
    						SchemaProps: spec.SchemaProps{
    							Description: "HorizontalPodAutoscalerTolerance is the tolerance for when resource usage suggests upscaling/downscaling",
    							Default:     0,
    							Type:        []string{"number"},
    							Format:      "double",
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top