Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 514 for bin2 (0.04 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/calibration_parameters.h

    #include "tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.pb.h"
    
    namespace stablehlo::quantization {
    
    // Calculates the bin width from the range and expected number of bins. The
    // bin width is formalized to the form of 2^n. As a consequence, the actual
    // number of bins might be smaller than the given `num_bins`.
    inline float CalculateBinWidth(const float min_value, const float max_value,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics.proto

      }
    
      message HistogramStatistics {
        // width of bin
        float bin_width = 1;
    
        // lower_bound is the first bin's min value.
        // lower_bound and bin_width can be used to restore the histogram.
        float lower_bound = 2;
    
        // hist_freq[i] saves frequency of range [bins[i], bins[i + 1]).
        // bins[i]     = lower_bound + bin_width * i
        // bins[i + 1] = lower_bound + bin_width * (i + 1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 16 04:33:52 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_histogram.h

                                                          float upper_bound);
    
      // hist_freq_[i] saves frequency of range [bins[i], bins[i + 1]).
      // bins[i]     = lower_bound_ + bin_width_ * i
      // bins[i + 1] = lower_bound_ + bin_width_ * (i + 1)
      std::deque<float> hist_freq_;
    
      // Width of bin
      float bin_width_;
    
      // The first bin's left value. [left, right)
      float lower_bound_;
    };
    
    }  // namespace calibrator
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 16 04:33:52 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

              cat <<'EOF'>/tmp/start.sh
              #!/bin/bash
              /usr/local/bin/istio-start.sh
              kill "$1"
              EOF
              chmod +x /tmp/start.sh
              
              export ISTIO_AGENT_FLAGS="--concurrency 2 --proxyLogLevel warning,misc:error,rbac:debug,jwt:debug"
              sudo -E /tmp/start.sh $pid &
              override_core_limits&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. common/scripts/setup_env.sh

    if [[ -d "${HOME}/.docker" ]]; then
      CONDITIONAL_HOST_MOUNTS+="--mount type=bind,source=${HOME}/.docker,destination=/config/.docker,readonly "
    fi
    
    # gcloud conditional host mount (needed for docker push with the gcloud auth configure-docker)
    if [[ -d "${HOME}/.config/gcloud" ]]; then
      CONDITIONAL_HOST_MOUNTS+="--mount type=bind,source=${HOME}/.config/gcloud,destination=/config/.config/gcloud,readonly "
    fi
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. manifests/charts/istio-cni/templates/daemonset.yaml

    # as the Istio CNI plugin and config on
    # each master and worker node in a Kubernetes cluster.
    {{- $defaultBinDir :=
        (.Capabilities.KubeVersion.GitVersion | contains "-gke") | ternary
          "/home/kubernetes/bin"
          "/opt/cni/bin"
    }}
    kind: DaemonSet
    apiVersion: apps/v1
    metadata:
      name: {{ template "name" . }}-node
      namespace: {{ .Release.Namespace }}
      labels:
        k8s-app: {{ template "name" . }}-node
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/BindingsBuilderExtensions.kt

        bind(linkedHashMapCodec)
        bind(hashMapCodec)
        bind(treeMapCodec)
        bind(concurrentHashMapCodec)
        bind(propertiesCodec)
        bind(hashtableCodec)
    
        // Arrays
        bind(BYTE_ARRAY_SERIALIZER)
        bind(ShortArrayCodec)
        bind(IntArrayCodec)
        bind(LongArrayCodec)
        bind(FloatArrayCodec)
        bind(DoubleArrayCodec)
        bind(BooleanArrayCodec)
        bind(CharArrayCodec)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/Codecs.kt

                bind(IsolatedArrayCodec)
                bind(IsolatedSetCodec)
                bind(IsolatedListCodec)
                bind(IsolatedMapCodec)
                bind(MapEntrySnapshotCodec)
                bind(IsolatedEnumValueSnapshotCodec)
                bind(StringValueSnapshotCodec)
                bind(IntegerValueSnapshotCodec)
                bind(FileValueSnapshotCodec)
                bind(BooleanValueSnapshotCodec)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener.go

    		//
    		// If captureMode is not NONE, i.e., bindToPort is false, then
    		// we will bind to user specified IP (if any) or to the VIPs of services in
    		// this egress listener.
    		if egressListener.IstioListener != nil && egressListener.IstioListener.Bind != "" {
    			bind.binds = []string{egressListener.IstioListener.Bind}
    		} else if bind.bindToPort {
    			bind.binds = actualLocalHosts
    		}
    
    		if egressListener.IstioListener != nil &&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/net/dnsconfig_unix.go

    					conf.noReload = true
    				default:
    					conf.unknownOpt = true
    				}
    			}
    
    		case "lookup":
    			// OpenBSD option:
    			// https://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man5/resolv.conf.5
    			// "the legal space-separated values are: bind, file, yp"
    			conf.lookup = f[1:]
    
    		default:
    			conf.unknownOpt = true
    		}
    	}
    	if len(conf.servers) == 0 {
    		conf.servers = defaultNS
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:14:43 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top