HomeSort by relevance Sort by last modified time
    Searched refs:minmax1 (Results 1 - 2 of 2) sorted by null

  /art/test/679-checker-minmax/src/
Main.java 530 /// CHECK-START: int Main.minmax1(int) instruction_simplifier$after_gvn (before)
540 /// CHECK-START: int Main.minmax1(int) instruction_simplifier$after_gvn (after)
548 /// CHECK-START: int Main.minmax1(int) instruction_simplifier$after_gvn (after)
550 public static int minmax1(int x) { method in class:Main
771 expectEquals(-100, minmax1(-200));
772 expectEquals(10, minmax1(10));
773 expectEquals(100, minmax1(200));
    [all...]
  /external/tensorflow/tensorflow/lite/toco/graph_transformations/
hardcode_min_max.cc 270 bool MinMaxApproximatelyEqual(const MinMax& minmax1, const MinMax& minmax2) {
272 std::min(minmax1.max - minmax1.min, minmax2.max - minmax2.min);
274 return std::abs(minmax1.min - minmax2.min) < tolerated &&
275 std::abs(minmax1.max - minmax2.max) < tolerated;

Completed in 187 milliseconds