Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for pack_inputs (0.09 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        for (auto input_output :
             llvm::zip(pack_op.getOperands(), input_unpack_op.getResults())) {
          Value pack_input = std::get<0>(input_output);
          Value unpack_output = std::get<1>(input_output);
          // Make sure the ordering is the same for the pack op & unpack op.
          if (pack_input != unpack_output) return failure();
        }
    
        // Replace the pack's output to the unpack's input.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top