Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CanonicalizeFunctionalIfCase (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

        if (auto if_op = dyn_cast<TF::IfOp>(op)) {
          result = CanonicalizeFunctionalIfCase(
              op, {if_op.then_function(), if_op.else_function()}, if_op.getInput());
        } else if (auto case_op = dyn_cast<TF::CaseOp>(op)) {
          SmallVector<func::FuncOp, 4> branches;
          case_op.get_branch_functions(branches);
          result =
              CanonicalizeFunctionalIfCase(case_op, branches, case_op.getInput());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top