Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for TensorFlowExecutorDialect (0.52 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.h"
    
    namespace mlir {
    namespace tf_executor {
    
    class TensorFlowExecutorDialect : public Dialect {
     public:
      static StringRef getDialectNamespace() { return "tf_executor"; }
      explicit TensorFlowExecutorDialect(MLIRContext *context);
    
      // Parses a type registered to this dialect.
      Type parseType(DialectAsmParser &parser) const override;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 07:17:01 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/tf_quant_opt.cc

                      mlir::arith::ArithDialect, mlir::tf_type::TFTypeDialect,
                      mlir::quant::QuantizationDialect,
                      mlir::quantfork::QuantizationForkDialect,
                      mlir::tf_executor::TensorFlowExecutorDialect,
                      mlir::stablehlo::StablehloDialect>();
      mlir::func::registerAllExtensions(registry);
      return failed(
          mlir::MlirOptMain(argc, argv, "TF quant Pass Driver\n", registry));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:20:34 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/dialect_registration.h

                  mlir::tf_type::TFTypeDialect, mlir::cf::ControlFlowDialect,
                  mlir::tf_device::TensorFlowDeviceDialect,
                  mlir::tf_executor::TensorFlowExecutorDialect,
                  mlir::tf_saved_model::TensorFlowSavedModelDialect,
                  mlir::tfg::TFGraphDialect>();
      if (include_extensions) {
        mlir::func::registerAllExtensions(registry);
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 16:15:16 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/test_base.h

            arith::ArithDialect, mlir::stablehlo::StablehloDialect,
            func::FuncDialect, TF::TensorFlowDialect, TFL::TensorFlowLiteDialect,
            tf_saved_model::TensorFlowSavedModelDialect,
            tf_executor::TensorFlowExecutorDialect, quant::QuantizationDialect,
            quantfork::QuantizationForkDialect>();
      }
    
      // Parses `module_op_str` to create a `ModuleOp`.
      OwningOpRef<ModuleOp> ParseModuleOpString(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/tools/stablehlo_quant_opt.cc

                      mlir::quantfork::QuantizationForkDialect,
                      mlir::stablehlo::StablehloDialect,
                      mlir::tf_executor::TensorFlowExecutorDialect,
                      mlir::vhlo::VhloDialect>();
      mlir::mhlo::registerAllMhloDialects(registry);
      mlir::func::registerAllExtensions(registry);
      return failed(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 07:37:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/passes.td

        configuration.
      }];
      let dependentDialects = [
        "mlir::stablehlo::StablehloDialect", "mlir::TF::TensorFlowDialect",
        "mlir::func::FuncDialect", "mlir::tf_executor::TensorFlowExecutorDialect",
        "mlir::mhlo::MhloDialect", "mlir::vhlo::VhloDialect",
      ];
    }
    
    def TestPostCalibrationComponentPass : Pass<"stablehlo-test-post-calibration-component", "mlir::ModuleOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:21:42 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

        return isa<tf_executor::IslandOp>(region->getParentOp());
      }
    };
    
    }  // namespace
    
    TensorFlowExecutorDialect::TensorFlowExecutorDialect(MLIRContext *context)
        : Dialect(/*name=*/"tf_executor", context,
                  TypeID::get<TensorFlowExecutorDialect>()) {
      addOperations<
    #define GET_OP_LIST
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc.inc"
          >();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/integration/tfr_decompose_ctx.cc

                      mlir::shape::ShapeDialect,
                      mlir::TF::TensorFlowDialect,
                      mlir::tf_device::TensorFlowDeviceDialect,
                      mlir::tf_executor::TensorFlowExecutorDialect,
                      mlir::TFR::TFRDialect>();
      // clang-format on
      mlir::func::registerAllExtensions(registry);
      mlir_ctx->appendDialectRegistry(registry);
      mlir_ctx->loadAllAvailableDialects();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 29 02:34:43 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_initializer_function_ops_to_main.cc

      }
    
      void runOnOperation() override;
    
     private:
      void getDependentDialects(DialectRegistry& registry) const override {
        registry
            .insert<TF::TensorFlowDialect, tf_executor::TensorFlowExecutorDialect,
                    tf_saved_model::TensorFlowSavedModelDialect>();
      }
    };
    
    // Returns true iff func_op has either no Region or the body has no Blocks.
    bool IsFuncOpEmpty(func::FuncOp func_op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:54:52 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/tf_xla_mlir_translate.cc

      mlir::func::registerAllExtensions(registry);
    }
    
    static void RegisterGraphInputDialects(mlir::DialectRegistry& registry) {
      RegisterMlirInputDialects(registry);
      registry.insert<mlir::tf_executor::TensorFlowExecutorDialect>();
    }
    
    static mlir::OwningOpRef<mlir::ModuleOp>
    SerializedMlirStringAttrToMlirModuleTranslate(llvm::StringRef input,
                                                  mlir::MLIRContext* context) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.8K bytes
    - Viewed (0)
Back to top