Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for fromlen (0.57 sec)

  1. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.h

      // post-training quantization.
      bool disable_infer_tensor_range = false;
    
      // Whether to use the unfrozen variable quantization in MLIR. Typically,
      // variables are frozen for passing passes, but some variables aren't frozen.
      // If it is true, QuantizeVariables pass will be added after the
      // PrepareQuantizePass.
      bool enable_mlir_variable_quantization = false;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 10:16:19 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. operator/pkg/compare/compare.go

    	for name, obj := range iom {
    		isRenamed := false
    		for fromPat, toPat := range rnm {
    			fromRe, err := buildResourceRegexp(strings.TrimSpace(fromPat))
    			if err != nil {
    				return nil, fmt.Errorf("error building the regexp from "+
    					"rename-from string: %v, error: %v", fromPat, err)
    			}
    			if fromRe.MatchString(name) {
    				fromList := strings.Split(name, ":")
    				if len(fromList) != 3 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/quantize_preprocess.cc

      if (is_inliner_run) {
        pm_after_freezing_variables.addPass(mlir::createInlinerPass());
      }
      if (run_tf_to_stablehlo) {
        // AddLegalizeTFToStablehloPasses expects frozen TF variables when
        // legalizing to stablehlo.constant.
        AddTFToStablehloPasses(pm_after_freezing_variables, input_arg_shapes);
      }
    
      if (deserialize_xla_call_module) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. pilot/pkg/model/telemetry.go

    		meshConfig:             env.Mesh(),
    		computedMetricsFilters: map[metricsKey]any{},
    		computedLoggingConfig:  map[loggingKey][]LoggingConfig{},
    	}
    
    	fromEnv := env.List(gvk.Telemetry, NamespaceAll)
    	sortConfigByCreationTime(fromEnv)
    	for _, config := range fromEnv {
    		telemetry := Telemetry{
    			Name:      config.Name,
    			Namespace: config.Namespace,
    			Spec:      config.Spec.(*tpb.Telemetry),
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/passes.h

    // tensors with fill op.
    std::unique_ptr<OperationPass<ModuleOp>> CreateUnfoldLargeSplatConstantPass();
    
    // Creates a pass that adds control dependencies to keep the relative execution
    // order of operations with side effects frozen.
    std::unique_ptr<OperationPass<func::FuncOp>> CreatePinOpsWithSideEffectsPass();
    
    // Legalize TensorList Ops iff all of them are supported.
    std::unique_ptr<OperationPass<ModuleOp>> CreateLegalizeTensorListPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 21:29:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. cmd/s3-zip-handlers.go

    		files, err := zipindex.ReadDir(b[len(b)-size:], objSize, nil)
    		if err == nil {
    			return files, gr.ObjInfo, nil
    		}
    		var terr zipindex.ErrNeedMoreData
    		if errors.As(err, &terr) {
    			size = int(terr.FromEnd)
    			if size <= 0 || size > 100<<20 {
    				return nil, ObjectInfo{}, errors.New("zip directory too large")
    			}
    		} else {
    			return nil, ObjectInfo{}, err
    		}
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. src/net/smtp/smtp.go

    // It also implements the following extensions:
    //
    //	8BITMIME  RFC 1652
    //	AUTH      RFC 2554
    //	STARTTLS  RFC 3207
    //
    // Additional extensions may be handled by clients.
    //
    // The smtp package is frozen and is not accepting new features.
    // Some external packages provide more functionality. See:
    //
    //	https://godoc.org/?q=smtp
    package smtp
    
    import (
    	"crypto/tls"
    	"encoding/base64"
    	"errors"
    	"fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      // This decomposes resource ops like ResourceGather into read-variable op
      // followed by gather. This is used when the saved model import path is used
      // during which resources don't get frozen in the python layer.
      pass_manager->addNestedPass<mlir::func::FuncOp>(
          mlir::TFDevice::CreateDecomposeResourceOpsPass());
    
      pass_manager->addPass(mlir::TF::CreateTFRegionControlFlowToFunctional());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  9. src/text/tabwriter/tabwriter.go

    // translates tabbed columns in input into properly aligned text.
    //
    // The package is using the Elastic Tabstops algorithm described at
    // http://nickgravgaard.com/elastictabstops/index.html.
    //
    // The text/tabwriter package is frozen and is not accepting new features.
    package tabwriter
    
    import (
    	"fmt"
    	"io"
    	"unicode/utf8"
    )
    
    // ----------------------------------------------------------------------------
    // Filter implementation
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    ----
    org.gradle.java.installations.fromEnv=JDK8,JRE17
    ----
    
    Additionally, you can provide a comma-separated list of paths to specific installations using the `org.gradle.java.installations.paths` property.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
Back to top