Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 49 of 49 for HYBRID (0.34 sec)

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

        rewriter.replaceOpWithNewOp<TFL::QConstOp>(
            op, /*qtype=*/TypeAttr::get(op.getOutput().getType()),
            /*value=*/op.getValue());
      }
    };
    
    // Splits hybrid quantized `stablehlo.dot_general` into `tfl.dequantize` and
    // float `stablehlo.dot_general` op. Legalization of float
    // `stablehlo.dot_general` op relies on existing passes for conversion of
    // StableHLO -> MHLO -> TF -> TFL.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        mlir::func::FuncOp float_func =
            dyn_cast<func::FuncOp>(symbol_table.lookup(f_attr.getValue()));
        rewriter.setInsertionPointAfter(float_func);
    
        // Applies only for hybrid ops in SRQ.
        const bool is_hybrid =
            ContainsFloatResultType(result_types) &&
            (quantization_method_ == tensorflow::quantization::QuantizationMethod::
    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. CHANGELOG/CHANGELOG-1.2.md

    * Copy annotations back from RS to Deployment on rollback ([#23160](https://github.com/kubernetes/kubernetes/pull/23160), [@janetkuo](https://github.com/janetkuo))
    * Trusty: Support hybrid cluster with nodes on ContainerVM ([#23079](https://github.com/kubernetes/kubernetes/pull/23079), [@andyzheng0831](https://github.com/andyzheng0831))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

          return {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16};
        }
      }];
    }
    
    // UnidirectionalSequenceLstm op.
    // TODO(ashwinm): Add constraint to validate the combination of operands
    // that are valid for hybrid vs fully quantized vs float only semantics
    def TFL_UnidirectionalSequenceLSTMOp :
      TFL_Op<"unidirectional_sequence_lstm",
              [LstmMandatoryInputsConstraint,
               LstmOptionalPeepholeWeightConstraint,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.3.md

    * Copy annotations back from RS to Deployment on rollback ([#23160](https://github.com/kubernetes/kubernetes/pull/23160), [@janetkuo](https://github.com/janetkuo))
    * Trusty: Support hybrid cluster with nodes on ContainerVM ([#23079](https://github.com/kubernetes/kubernetes/pull/23079), [@andyzheng0831](https://github.com/andyzheng0831))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      auto lookup_attr = operands[0].dyn_cast_or_null<DenseIntElementsAttr>();
      auto value_attr = operands[1].dyn_cast_or_null<DenseElementsAttr>();
      if (!lookup_attr || !value_attr) {
        return {};
      }
    
      // Hybrid lookup is not supported.
      if (value_attr.getType().getElementType() != getType().getElementType()) {
        return {};
      }
    
      // Expect 1d lookup tensor and a non-scalar input.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.4.md

    - **Cluster Federation**
      - Global Multi-cluster HTTP(S) Ingress across GCE and GKE clusters.
      - Expanded support for federated hybrid-cloud resources including ReplicaSets, Secrets, Namespaces and Events.
    - **Security**
      - Increased pod-level security granularity (eg: Container Image Policies, AppArmor and `sysctl` support)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let hasVerifier = 1;
    }
    
    def TF_UniformQuantizedConvolutionHybridOp : TF_Op<"UniformQuantizedConvolutionHybrid", [Pure]> {
      let summary = [{
    Perform hybrid quantized convolution of float Tensor `lhs` and quantized Tensor `rhs`.
      }];
    
      let description = [{
    Given float `lhs` and quantized `rhs`, internally performs quantization on `lhs`,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  9. docs/en/docs/release-notes.md

        * The new support for ORM mode fixes issues/adds features related to ORMs with lazy-loading, hybrid properties, dynamic/getters (using `@property` decorators) and several other use cases.
        * This applies to ORMs like SQLAlchemy, Peewee, Tortoise ORM, GINO ORM and virtually any other.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top