Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for preloadTensorFlowDialects (0.23 sec)

  1. tensorflow/compiler/mlir/python/mlir_wrapper/mlir_wrapper.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/python/lib/core/pybind11_lib.h"
    #include "tensorflow/python/lib/core/pybind11_status.h"
    
    PYBIND11_MODULE(mlir_wrapper, m) {
      m.def("preloadTensorFlowDialects", [](mlir::MLIRContext &context) {
        mlir::DialectRegistry registry;
        mlir::RegisterAllTensorFlowDialects(registry);
        context.appendDialectRegistry(registry);
        context.loadAllAvailableDialects();
      });
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 08:41:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/python/mlir_wrapper/mlir_wrapper.pyi

        def get(self) -> UnrankedTensorType: ...
    
    class Value:
        def __init__(self, *args, **kwargs) -> None: ...
        def getType(self, *args, **kwargs) -> Any: ...
    
    def preloadTensorFlowDialects(arg0) -> None: ...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 09 17:10:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top