Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Scales (0.14 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

        return failure();
      }
    
      return success();
    }
    
    // Matches the inverse scales operand for the uniform_quantize and
    // uniform_dequantize functions. Returns `failure()` if it doesn't match.
    LogicalResult MatchInverseScalesOperand(Value inverse_scales) {
      if (!inverse_scales) {
        LLVM_DEBUG(llvm::dbgs() << "Inverse scales value is empty.\n");
        return failure();
      }
    
      auto inverse_scales_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        float_scales.push_back(scales[i]);
        int32_zero_points.push_back(zero_points[i]);
      }
      scale = rewriter.create<TF::ConstOp>(
          loc, scale_type, DenseFPElementsAttr::get(scale_type, float_scales));
      zero_point = rewriter.create<TF::ConstOp>(
          loc, zero_point_type,
          DenseIntElementsAttr::get(zero_point_type, int32_zero_points));
      return success(scale && zero_point);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/horizontal.go

    	var firstErr error
    	for i, mapping := range mappings {
    		targetGR := mapping.Resource.GroupResource()
    		scale, err := a.scaleNamespacer.Scales(namespace).Get(ctx, targetGR, name, metav1.GetOptions{})
    		if err == nil {
    			return scale, targetGR, nil
    		}
    
    		// if this is the first error, remember it,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. 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)
  5. src/runtime/malloc.go

    	// Max number of threads to run garbage collection.
    	// 2, 3, and 4 are all plausible maximums depending
    	// on the hardware details of the machine. The garbage
    	// collector scales well to 32 cpus.
    	_MaxGcproc = 32
    
    	// minLegalPointer is the smallest possible legal pointer.
    	// This is the smallest possible architectural page size,
    	// since we assume that the first page is never mapped.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    		// overhead, and scale it up from there proportional to the overall test
    		// timeout on the assumption that the time to write and read a goroutine
    		// dump from a timed-out test process scales roughly with the overall
    		// running time of the test.
    		//
    		// This is probably too generous when the timeout is very long, but it seems
    		// better to hard-code a scale factor than to hard-code a constant delay.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    	finalSeats uint64
    }
    
    func newUniformClient(hash uint64, nThreads, nCalls int, execDuration, thinkDuration time.Duration) uniformClient {
    	return uniformClient{
    		hash:          hash,
    		nThreads:      nThreads,
    		nCalls:        nCalls,
    		execDuration:  execDuration,
    		thinkDuration: thinkDuration,
    		initialSeats:  1,
    		finalSeats:    1,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1beta2/types.go

    }
    
    // +genclient
    // +genclient:method=GetScale,verb=get,subresource=scale,result=Scale
    // +genclient:method=UpdateScale,verb=update,subresource=scale,input=Scale,result=Scale
    // +genclient:method=ApplyScale,verb=apply,subresource=scale,input=Scale,result=Scale
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.8
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1/types.go

    )
    
    // +genclient
    // +genclient:method=GetScale,verb=get,subresource=scale,result=k8s.io/api/autoscaling/v1.Scale
    // +genclient:method=UpdateScale,verb=update,subresource=scale,input=k8s.io/api/autoscaling/v1.Scale,result=k8s.io/api/autoscaling/v1.Scale
    // +genclient:method=ApplyScale,verb=apply,subresource=scale,input=k8s.io/api/autoscaling/v1.Scale,result=k8s.io/api/autoscaling/v1.Scale
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/extensions/v1beta1/types.go

    }
    
    // +genclient
    // +genclient:method=GetScale,verb=get,subresource=scale,result=Scale
    // +genclient:method=UpdateScale,verb=update,subresource=scale,input=Scale,result=Scale
    // +genclient:method=ApplyScale,verb=apply,subresource=scale,input=Scale,result=Scale
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
Back to top