Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for appendDialectRegistry (0.56 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        // register extensions here, again.
        mlir::DialectRegistry registry;
        registry.insert<mlir::func::FuncDialect>();
        mlir::func::registerAllExtensions(registry);
        xla_call_module_context_.appendDialectRegistry(registry);
    
        auto l = tensorflow::XlaCallModuleLoader::Create(
            &xla_call_module_context_, op.getVersion(), op.getModule().str(),
            std::move(disabled_checks), std::move(platforms),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    }
    
    void LoadImporterDialects(mlir::MLIRContext& context) {
      // Load dialects involved in the conversion
      mlir::DialectRegistry registry;
      mlir::RegisterAllTensorFlowDialectsImpl(registry, false);
      context.appendDialectRegistry(registry);
      for (llvm::StringRef name : registry.getDialectNames())
        context.getOrLoadDialect(name);
    }
    
    absl::StatusOr<std::string> GetDenseTensorNameFromTensorInfo(
        const TensorInfo& tensor_info) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top