Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for scaleIO (0.09 sec)

  1. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

        float_min = -float_max;
      }
    
      ASSERT_THAT(quantized_quant_params.scale, SizeIs(1));
      ASSERT_THAT(quantized_quant_params.zero_point, SizeIs(1));
      float scale = (float_max - float_min) / ((1 << bit_num) - 1);
      EXPECT_THAT(scale, FloatNear(quantized_quant_params.scale[0], eps));
    }
    
    class QuantizeModelTest : public testing::Test {
     protected:
      QuantizeModelTest() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller.go

    	completionMode := completionModeStr(job)
    	var diff int
    
    	// Updating succeeded metric must be handled differently
    	// for Indexed Jobs to handle the case where the job has
    	// been scaled down by reducing completions & parallelism
    	// in tandem, and now a previously completed index is
    	// now out of range (i.e. index >= spec.Completions).
    	if isIndexedJob(job) {
    		completions := int(*job.Spec.Completions)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top