[Openmp-commits] [PATCH] D55493: [openmp] [test] [runtime] Permit omp_get_wtick() to return 0.01

Michał Górny via Phabricator via Openmp-commits openmp-commits at lists.llvm.org
Tue Dec 11 07:44:44 PST 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rL348857: [test] [runtime] Permit omp_get_wtick() to return 0.01 (authored by mgorny, committed by ).
Herald added a subscriber: llvm-commits.

Changed prior to commit:
  https://reviews.llvm.org/D55493?vs=177423&id=177711#toc

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D55493/new/

https://reviews.llvm.org/D55493

Files:
  openmp/trunk/runtime/test/api/omp_get_wtick.c


Index: openmp/trunk/runtime/test/api/omp_get_wtick.c
===================================================================
--- openmp/trunk/runtime/test/api/omp_get_wtick.c
+++ openmp/trunk/runtime/test/api/omp_get_wtick.c
@@ -7,7 +7,7 @@
   double tick;
   tick = -1.;
   tick = omp_get_wtick ();
-  return ((tick > 0.0) && (tick < 0.01));
+  return ((tick > 0.0) && (tick <= 0.01));
 }
 
 int main()


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D55493.177711.patch
Type: text/x-patch
Size: 400 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20181211/4f3f46be/attachment.bin>


More information about the Openmp-commits mailing list