Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CreatePinOpsWithSideEffectsPass (0.86 sec)

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

        op->erase();
        // Control token is last result of outer_op.
        control_tokens.assign(1, outer_op.getResults().back());
      }
    }
    }  // namespace
    
    std::unique_ptr<OperationPass<func::FuncOp>> CreatePinOpsWithSideEffectsPass() {
      return std::make_unique<PinOpsWithSideEffectsPass>();
    }
    
    static PassRegistration<PinOpsWithSideEffectsPass> pass;
    
    }  // namespace TFL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/passes.td

            - it calls a different function
            - it depends on or generates resource variable handles
      }];
      let constructor = "CreatePinOpsWithSideEffectsPass()";
      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
    }
    
    def PostQuantizePass : Pass<"tfl-post-quantize", "mlir::func::FuncOp"> {
    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