Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 62 of 62 for while_loop (0.09 sec)

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

                    set_op.getItem());
                element_shape_acquired = true;
              } else if (TF::WhileOp while_op =
                             llvm::dyn_cast<TF::WhileOp>(use.getOwner())) {
                // Tensorlist is passed into a while loop, check inside the body
                // function.
                auto inside_uses = while_op.body_function()
                                       .getArgument(use.getOperandNumber())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      // Create the while op.
      auto while_op = builder->create<mhlo::WhileOp>(loc, init_types_with_loop_iv,
                                                     init_values_with_loop_iv);
      auto ivs_count = init_types_with_loop_iv.size();
    
      {
        OpBuilder::InsertionGuard guard(*builder);
    
        // Build up the only block in the condition region.
        Region &condition = while_op.getCond();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top