Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PushTransposeThroughEwisePass (0.24 sec)

  1. tensorflow/compiler/mlir/lite/transforms/push_transpose_through_ewise.cc

    #define GEN_PASS_DEF_PUSHTRANSPOSETHROUGHEWISEPASS
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    class PushTransposeThroughEwisePass
        : public impl::PushTransposeThroughEwisePassBase<
              PushTransposeThroughEwisePass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(PushTransposeThroughEwisePass)
      void runOnOperation() override;
    };
    
    // Compute the permutation that would take `arr` to the identity.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/passes.td

      let summary = "Reduce some tensor types' precision if all values are within range.";
      let constructor = "CreateReduceTypePrecisionPass()";
      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
    }
    
    def PushTransposeThroughEwisePass : Pass<"push-transpose-through-ewise", "mlir::ModuleOp"> {
      let summary = "TODO";
      let constructor = "CreatePushTransposeThroughEwisePass()";
      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top