Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for procs_value (0.12 sec)

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

        assert(crops_attr.getNumElements() == 4 &&
               "tf.BatchToSpace crops must have 4 elements");
    
        auto crops_range = crops_attr.getValues<APInt>();
        for (const auto& crops_value : crops_range) {
          int64_t crops_value_int = crops_value.getSExtValue();
          if (crops_value_int < 0)
            return op.emitOpError()
                   << "requires all crop values to be nonnegative, but got "
                   << crops_attr;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top