Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Scales (0.21 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/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)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            if (requestLangs != null && requestLangs.length != 0) {
                return normalizeQueryLanguages(requestLangs);
            }
    
            if (locales == null) {
                return StringUtil.EMPTY_STRINGS;
            }
    
            return normalizeQueryLanguages(Collections.list(locales).stream().map(locale -> {
                final String language = locale.getLanguage();
                final String country = locale.getCountry();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    }
    
    def TF_BesselI0eOp : TF_Op<"BesselI0e", [Pure, TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = "Computes the Bessel i0e function of `x` element-wise.";
    
      let description = [{
    Exponentially scaled modified Bessel function of order 0 defined as
    `bessel_i0e(x) = exp(-abs(x)) bessel_i0(x)`.
    
    This function is faster and numerically stabler than `bessel_i0(x)`.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener.go

    							// send a wildcard listener, we may get into a situation where a scale
    							// down leads to a listener conflict. Similarly, if we have a
    							// labelSelector on the Service, then this may have endpoints not yet
    							// selected or scaled down, so we skip these as well. This leaves us with
    							// only a plain ServiceEntry with resolution NONE. In this case, we will
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top