Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RegisterAllTensorFlowDialectsImpl (0.37 sec)

  1. tensorflow/compiler/mlir/tensorflow/dialect_registration.h

    // it is the responsibility of the caller, typically required when the registry
    // is appended to the context in a parallel context, which does not allow for
    // extensions to be added.
    inline void RegisterAllTensorFlowDialectsImpl(DialectRegistry &registry,
                                                  bool include_extensions = true) {
      registry
          .insert<mlir::arith::ArithDialect, mlir::func::FuncDialect,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 16:15:16 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      return false;
    }
    
    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);
    }
    
    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