Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for resolveOperands (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

      if (parser.parseOperandList(op_infos, OpAsmParser::Delimiter::OptionalParen))
        return failure();
      if (!op_infos.empty()) {
        SmallVector<Type, 2> types(op_infos.size(), control_type);
        if (parser.resolveOperands(op_infos, types, loc, result.operands))
          return failure();
      }
    
      // Parse the body region.
      Region &body = *result.addRegion();
    
      if (succeeded(parser.parseOptionalKeyword("wraps"))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_device.cc

                 << " to be 'n' (" << *n << "), got " << replicated_input.size();
    
        // Resolve replicated input and block argument type.
        if (parser->resolveOperands(replicated_input, region_arg_types[idx],
                                    state->operands))
          return failure();
      }
    
      const int32_t num_replicated_block_args = replicated_inputs.size();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top