Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 485 for Dialect (0.55 sec)

  1. tensorflow/compiler/mlir/tf_mlir_reduce_main.cc

    struct TFReductionPatternInterface
        : public mlir::DialectReductionPatternInterface {
     public:
      explicit TFReductionPatternInterface(mlir::Dialect *dialect)
          : DialectReductionPatternInterface(dialect) {}
    
      void populateReductionPatterns(
          mlir::RewritePatternSet &patterns) const final {
        populateWithGenerated(patterns);
      }
    };
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 21 20:13:57 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/ir/tfr_ops.h

    #define TENSORFLOW_COMPILER_MLIR_TFR_IR_TFR_OPS_H_
    
    #include "llvm/ADT/StringSet.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/Dialect/Shape/IR/Shape.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/BuiltinTypes.h"  // from @llvm-project
    #include "mlir/IR/Dialect.h"  // from @llvm-project
    #include "mlir/IR/DialectImplementation.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 01 14:00:36 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/passes.h

        bool prefer_tf2xla = false);
    
    // Legalizes TF/XLA communication ops (TF dialect) to HLO dialect communication
    // ops.
    std::unique_ptr<OperationPass<ModuleOp>> CreateLegalizeTFCommunicationPass();
    
    // Legalizes TF/XLA collective ops (TF dialect) to HLO dialect collective
    // ops.
    std::unique_ptr<OperationPass<ModuleOp>> CreateLegalizeTFCollectivePass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/ir/BUILD

                "QuantOps.cc.inc",
            ),
            (
                [
                    "-gen-dialect-decls",
                    "-dialect=quantfork",
                ],
                "QuantOpsDialect.h.inc",
            ),
            (
                [
                    "-gen-dialect-defs",
                    "-dialect=quantfork",
                ],
                "QuantOpsDialect.cc.inc",
            ),
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 29 02:59:58 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/ir/BUILD

                "QuantOps.cc.inc",
            ),
            (
                [
                    "-gen-dialect-decls",
                    "-dialect=quantization",
                ],
                "QuantOpsDialect.h.inc",
            ),
            (
                [
                    "-gen-dialect-defs",
                    "-dialect=quantization",
                ],
                "QuantOpsDialect.cc.inc",
            ),
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 29 02:59:58 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/register_common_dialects.cc

    #include "tensorflow/compiler/mlir/register_common_dialects.h"
    
    #include "mlir/Dialect/Quant/QuantOps.h"  // from @llvm-project
    #include "mlir/Dialect/Shape/IR/Shape.h"  // from @llvm-project
    #include "mlir/Dialect/Tensor/IR/Tensor.h"  // from @llvm-project
    #include "mlir/Dialect/Tosa/IR/TosaOps.h"  // from @llvm-project
    #include "mlir/InitAllDialects.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 22:45:35 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/function/function.cc

      print_flags.elideLargeElementsAttrs();
    
      if (VLOG_IS_ON(1)) {
        VLOG(1) << "Input TF Executor dialect:";
        DumpMlirOpToFile("tf_to_tfrt_tf_executor_dialect", module);
      }
    
      mlir::StatusScopedDiagnosticHandler diag_handler(module.getContext());
    
      // Lower MLIR TF Dialect to MLIR TFRT CoreRT dialect.
      mlir::PassManager pm(module.getContext());
      tensorflow::applyTensorflowAndCLOptions(pm);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 08:13:15 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/ir/gpu_ops.h

    #include "mlir/IR/BuiltinTypes.h"  // from @llvm-project
    #include "mlir/IR/Dialect.h"  // from @llvm-project
    #include "mlir/IR/OpDefinition.h"  // from @llvm-project
    
    using namespace mlir;  // NOLINT
    
    namespace tfrt {
    namespace gpu {
    
    // Dialect for TFRT GPU operations.
    class GpuRuntimeDialect : public Dialect {
     public:
      explicit GpuRuntimeDialect(MLIRContext *context);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 24 14:49:54 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.h

    // tf_executor dialect.
    absl::StatusOr<mlir::OwningOpRef<mlir::ModuleOp>> ConvertGraphdefToMlir(
        const GraphDef& graphdef, const GraphDebugInfo& debug_info,
        const GraphImportConfig& specs, mlir::MLIRContext* context);
    
    // Given a Graph, returns a MLIR module containing the graph, expressed with
    // tf_executor dialect.
    absl::StatusOr<mlir::OwningOpRef<mlir::ModuleOp>> ConvertGraphToMlir(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_ops.td

    //===----------------------------------------------------------------------===//
    // Runtime Fallback Dialect definitions
    //===----------------------------------------------------------------------===//
    
    def RuntimeFallback_Dialect : Dialect {
      let name = "tfd";
    
      let description = [{
        The Runtime Fallback dialect.
    
        This dialect contains operations to run existing TF kernels on TFRT by
        invoking TF Eager API.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top