Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 6,549 for cas3 (0.15 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/utils/fake_quant_utils.h

        // a special case that there are tf.Identity ops between the min/max
        // constants and the tf.FakeQuantWithMinMaxVarsOp.
        FetchAttrType min_value, max_value;
        if (!fetch_min_max_(tf_op, min_value, max_value)) {
          return failure();
        }
    
        Value input = tf_op.getInputs();
        int quant_dim = -1;
        auto input_type = mlir::cast<ShapedType>(input.getType());
        if (PerAxis) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/graph/ElementOrder.java

      <K extends T, V> Map<K, V> createMap(int expectedSize) {
        switch (type) {
          case UNORDERED:
            return Maps.newHashMapWithExpectedSize(expectedSize);
          case INSERTION:
          case STABLE:
            return Maps.newLinkedHashMapWithExpectedSize(expectedSize);
          case SORTED:
            return Maps.newTreeMap(comparator());
          default:
            throw new AssertionError();
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 01 17:18:04 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/graph/ElementOrder.java

      <K extends T, V> Map<K, V> createMap(int expectedSize) {
        switch (type) {
          case UNORDERED:
            return Maps.newHashMapWithExpectedSize(expectedSize);
          case INSERTION:
          case STABLE:
            return Maps.newLinkedHashMapWithExpectedSize(expectedSize);
          case SORTED:
            return Maps.newTreeMap(comparator());
          default:
            throw new AssertionError();
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 01 17:18:04 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/rules/rules.go

    	switch *r.Rule.Scope {
    	case v1.NamespacedScope:
    		// first make sure that we are not requesting a namespace object (namespace objects are cluster-scoped)
    		return r.Attr.GetResource() != namespaceResource && r.Attr.GetNamespace() != metav1.NamespaceNone
    	case v1.ClusterScope:
    		// also return true if the request is for a namespace object (namespace objects are cluster-scoped)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:38:55 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        Operation* filter_op = filter_value.getDefiningOp();
        auto filter_uniform_quantized_type =
            GetElementType(filter_value).cast<UniformQuantizedPerAxisType>();
        auto filter_constant_value_attr = cast<DenseIntElementsAttr>(
            cast<stablehlo::ConstantOp>(filter_value.getDefiningOp()).getValue());
        const DenseIntElementsAttr new_filter_value_attr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  6. pkg/istio-agent/plugins.go

    func createCitadel(opts *security.Options, a RootCertProvider) (security.Client, error) {
    	// Using citadel CA
    	var tlsOpts *citadel.TLSOptions
    	var err error
    	// Special case: if Istiod runs on a secure network, on the default port, don't use TLS
    	// TODO: may add extra cases or explicit settings - but this is a rare use cases, mostly debugging
    	if strings.HasSuffix(opts.CAEndpoint, ":15010") {
    		log.Warn("Debug mode or IP-secure network")
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 03:32:57 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.cc

        CONVERT_FLAT(DT_COMPLEX64, std::complex<float>)
        CONVERT_FLAT(DT_COMPLEX128, std::complex<double>)
    
        case DT_BFLOAT16:
        case DT_HALF:
        case DT_FLOAT8_E5M2:
        case DT_FLOAT8_E4M3FN:
          return ConvertTensorOfCustomFloatType(input_tensor, type);
        case DT_STRING:
          return ConvertStringTensor(input_tensor, type);
        default:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/ImplicitInputsCapturingInstantiator.java

     * limitations under the License.
     */
    package org.gradle.internal.resolve.caching;
    
    import org.gradle.api.NonNullApi;
    import org.gradle.api.reflect.ObjectInstantiationException;
    import org.gradle.internal.Cast;
    import org.gradle.internal.Factory;
    import org.gradle.internal.instantiation.InstantiatorFactory;
    import org.gradle.internal.reflect.Instantiator;
    import org.gradle.internal.service.ServiceLookupException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 17 11:08:22 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller.go

    		FilterFunc: func(obj interface{}) bool {
    			if cast, ok := obj.(*corev1.ConfigMap); ok {
    				return cast.Namespace == configMapNamespace && cast.Name == configMapName
    			}
    			if tombstone, ok := obj.(cache.DeletedFinalStateUnknown); ok {
    				if cast, ok := tombstone.Obj.(*corev1.ConfigMap); ok {
    					return cast.Namespace == configMapNamespace && cast.Name == configMapName
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

          op.getLoc(), func_result_type, op.getResults());
      cast<func::ReturnOp>(entry_func_op.getBody().front().getTerminator())
          .setOperand(0, uniform_quant_op);
    }
    
    template <typename GemmStyleOp>
    // Creates a quantized bias pattern for static and dynamic shape case
    // and sets the quantized bias as the return op.
    void CreateAndReturnQuantizedBiasPattern(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top