Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 719 for Dialect (0.84 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.cc

    // TensorFlowSavedModelDialect Dialect
    //===----------------------------------------------------------------------===//
    
    TensorFlowSavedModelDialect::TensorFlowSavedModelDialect(MLIRContext *context)
        : Dialect(/*name=*/"tf_saved_model", context,
                  TypeID::get<TensorFlowSavedModelDialect>()) {
      // The TensorFlow Dialect is needed in the verifier and other routines
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

    def TfExecutor_Dialect : Dialect {
      let name = "tf_executor";
    
      let description = [{
        The TensorFlow Executor dialect.
    
        This dialect models the TensorFlow executor semantics and can represent
        arbitrary TensorFlow graphs. As such it follows the existing execution model
        that includes deadness propagation, concurrent semantics, and control
        dependencies.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/verify_input_dialect_to_executor_pass.cc

      auto walk_result = func_op->walk([&](Operation* op) {
        if (!tensorflow::tf2xla::internal::IsInBridgeAcceptableDialects(op)) {
          std::string error = "op is in dialect " +
                              op->getDialect()->getNamespace().str() +
                              " which is not an accepted dialect";
          op->emitError() << error;
          return WalkResult::interrupt();
        }
    
        if (IsTfDeviceClusterFuncOp(op)) {
          std::string error =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 08 16:32:56 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model_ops.td

      let name = "tf_saved_model";
    
      let summary = "Dialect used to represent TensorFlow SavedModel in MLIR.";
    
      let description = [{
        This dialect's main responsibility is to represent the additional
        information present in the SavedModel's SavedObjectGraph, which
        describes the public interface of this SavedModel.
    
        Module's using this dialect should have the module attribute
        `tf_saved_model.semantics`.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/passes.td

      let summary = "Legalize TensorFlow variables to TensorFlow Lite dialect.";
      let constructor = "CreateLegalizeVariablesPass()";
      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
    }
    
    def LiftTfliteFlexOpsPass : Pass<"tfl-lift-tflite-flex-ops", "mlir::func::FuncOp"> {
      let summary = "Lifts TFLite Custom ops into TF dialect operations.";
      let constructor = "CreateLiftTfliteFlexOpsPass()";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_attributes.h

    ==============================================================================*/
    
    // This file defines the attributes used in the TensorFlow dialect.
    
    #ifndef TENSORFLOW_COMPILER_MLIR_TENSORFLOW_IR_TF_ATTRIBUTES_H_
    #define TENSORFLOW_COMPILER_MLIR_TENSORFLOW_IR_TF_ATTRIBUTES_H_
    
    #include "tensorflow/core/ir/types/dialect.h"
    
    namespace mlir {
    namespace TF {
    
    // This all moved under tensorflow/core/ir/types and these using declaration are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 05 09:05:10 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/preprocess_op.td

    limitations under the License.
    ==============================================================================*/
    
    include "mlir/IR/OpBase.td"
    include "mlir/IR/PatternBase.td"
    include "mlir/Dialect/Func/IR/FuncOps.td"
    include "mlir/Dialect/Arith/IR/ArithOps.td"
    include "tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.td"
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.td

    limitations under the License.
    ==============================================================================*/
    
    include "mlir/IR/OpBase.td"
    include "mlir/IR/PatternBase.td"
    include "mlir/Dialect/Func/IR/FuncOps.td"
    include "mlir/Dialect/Arith/IR/ArithOps.td"
    include "tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.td"
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/utils/stablehlo_type_utils.h

    #include "mlir/IR/BuiltinAttributes.h"  // from @llvm-project
    #include "mlir/Transforms/DialectConversion.h"  // from @llvm-project
    #include "stablehlo/dialect/StablehloOps.h"  // from @stablehlo
    
    namespace mlir::quant::stablehlo {
    
    // Checks if an op is from StableHLO dialect.
    inline bool IsStablehloOp(Operation* op) {
      return op->getDialect()->getNamespace() ==
             mlir::stablehlo::StablehloDialect::getDialectNamespace();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 08:32:43 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/verify_clustering_pass_test.mlir

    func.func @testNotTfDialect(%arg0: tensor<1x32x10x32xi32>, %arg1: tensor<32xi32>) -> tensor<1x32x10x32xi32> {
     // expected-error@below {{op is in dialect chlo not in tf functional dialect}}
      %0 = "chlo.broadcast_add"(%arg0, %arg1) {broadcast_dimensions = array<i64: 3>} : (tensor<1x32x10x32xi32>, tensor<32xi32>) -> tensor<1x32x10x32xi32>
      func.return %0 : tensor<1x32x10x32xi32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 30 22:07:53 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top