Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ModuleOp (0.25 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      ];
    }
    
    def StripNoinlineAttributePass : Pass<"tf-strip-noinline-attribute", "ModuleOp"> {
      let summary = "Strip the tf._noinline attribute from top-level functions.";
      let constructor = "TF::CreateStripNoinlineAttributePass()";
    }
    
    def ExecutorConvertControlToDataOutputsPass : Pass<"tf-executor-convert-control-to-data-outputs", "ModuleOp"> {
      let summary = "Chain control outputs of while loop body";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        bool disable_crash_analysis) {
      LoadImporterDialects(*context);
      mlir::OwningOpRef<mlir::ModuleOp> module =
          mlir::ModuleOp::create(mlir::UnknownLoc::get(context));
      NameUniquifier function_name_uniquifier(flib_def);
    
      // importer.PrepareConvert below will attemp to clone the original `graph`
      // via conversion to the graph def first. Convert graph to graph_def here
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      void PropagateConstantToCallee(CallOpInterface call_op, FuncOp func,
                                     ModuleOp module);
    
      // Propagates any constant return value of the callee function to the call
      // op's corresponding result.
      void PropagateConstantFromCallee(CallOpInterface call_op, FuncOp func,
                                       ModuleOp module);
    
      // Tries to compute the result of folding the op. This doesn't actually
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    using absl::StatusOr;
    using llvm::dyn_cast;
    using llvm::formatv;
    using llvm::isa;
    using llvm::StringRef;
    using mlir::Dialect;
    using mlir::ElementsAttr;
    using mlir::MLIRContext;
    using mlir::ModuleOp;
    using mlir::NoneType;
    using mlir::Operation;
    using mlir::Region;
    using mlir::StringAttr;
    using mlir::TensorType;
    using mlir::Twine;
    using mlir::Type;
    using mlir::UnknownLoc;
    using mlir::Value;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

    class ConvertCustomCallWithApproxTopK
        : public mlir::OpConversionPattern<mhlo::CustomCallOp> {
     public:
      explicit ConvertCustomCallWithApproxTopK(MLIRContext* context,
                                               mlir::ModuleOp* module_op)
          : OpConversionPattern<mhlo::CustomCallOp>(context, /*benefit=*/0),
            module_op_(module_op) {}
    
      mlir::LogicalResult matchAndRewrite(
          mhlo::CustomCallOp op, OpAdaptor adaptor,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

                 << "expects padding to be a matrix with minor dimension 2, got "
                 << padding.getShapedType().getShape();
        }
      }
    
      auto module = op->getParentOfType<mlir::ModuleOp>();
      auto func = dyn_cast_or_null<mlir::func::FuncOp>(
          SymbolTable::lookupSymbolIn(module, op.getComputation()));
      if (!func) {
        return op.emitOpError() << "has no reduction function specified";
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top