Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sge (0.01 sec)

  1. tensorflow/compiler/mlir/lite/utils/const_tensor_utils.cc

        // Skips to the next bitwidth if the min and max values are out of the range
        // for the current bitwidth.
        if (min.sle(limitMin) || max.sle(limitMin) || min.sge(limitMax) ||
            max.sge(limitMax)) {
          continue;
        }
    
        for (mlir::APInt& val : values) {
          val = val.trunc(bw);
        }
        break;
      }
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

                        rewriter.create<arith::SubIOp>(loc, output_size, one))),
                input_size);
            Value cond = rewriter.create<mlir::arith::CmpIOp>(
                loc, arith::CmpIPredicate::sge, padding_needed, zero);
            padding_needed = rewriter.create<mlir::arith::SelectOp>(
                loc, padding_needed.getType(), cond, padding_needed, zero);
            *padding_low =
    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