Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for mlir_passthrough_op (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/BUILD

            "@local_xla//xla/translate/mhlo_to_hlo:type_to_shape",
            "@stablehlo//:stablehlo_ops",
        ],
        alwayslink = 1,
    )
    
    cc_library(
        name = "mlir_passthrough_op",
        srcs = ["ops/mlir_passthrough_op.cc"],
        visibility = [
            "//visibility:public",
        ],
        deps = [
            "//tensorflow/core:framework",
        ],
        alwayslink = 1,
    )
    
    cc_library(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Transforms region bases control flow operations in the TensorFlow dialect to
    // their functional counterparts.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateTFRegionControlFlowToFunctional();
    
    // Materialize the MlirPassthroughOp by replacing it with the MLIR module
    // attached as an attribute.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateMaterializePassthroughOpPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
Back to top