Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for argsCount (0.1 sec)

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

               << func_name;
      }
    
      FunctionType func_ty = func.getFunctionType();
      int func_arg_count = func_ty.getNumInputs();
      int arg_count = getArgs().size();
    
      if (arg_count != func_arg_count) {
        return emitError() << "argument count mismatch: 'args' has " << arg_count
                           << " argument(s), but '" << func_name << "' expects "
                           << func_arg_count;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

               << func;
      }
    
      FunctionType function_ty = function.getFunctionType();
      int func_arg_count = function_ty.getNumInputs();
      int arg_count = op.getArgs().size();
    
      if (arg_count != func_arg_count) {
        return op.emitError() << "argument count mismatch: 'args' has " << arg_count
                              << " arguments, but '" << func << "' expects "
                              << func_arg_count;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top