Lines Matching refs:assertTrue

49     static public void assertTrue(boolean condition) {  in assertTrue()  method in Main
213 assertTrue(FP16.greater(FP16.POSITIVE_INFINITY, FP16.NEGATIVE_INFINITY)); in testGreater()
214 assertTrue(FP16.greater(FP16.POSITIVE_INFINITY, FP16.MAX_VALUE)); in testGreater()
217 assertTrue(FP16.greater(FP16.LOWEST_VALUE, FP16.NEGATIVE_INFINITY)); in testGreater()
222 assertTrue(FP16.greater(FP16.MIN_NORMAL, FP16.MIN_VALUE)); in testGreater()
224 assertTrue(FP16.greater(FP16.toHalf(12.4f), FP16.toHalf(12.3f))); in testGreater()
227 assertTrue(FP16.greater(FP16.toHalf(-12.3f), FP16.toHalf(-12.4f))); in testGreater()
228 assertTrue(FP16.greater((short) 0x3ff, FP16.MIN_VALUE)); in testGreater()
231 assertTrue(FP16.greater(FP16.toHalf(0.0f), FP16.toHalf(-1.0f))); in testGreater()
234 assertTrue(FP16.greater(FP16.toHalf(1.0f), FP16.toHalf(0.0f))); in testGreater()
239 assertTrue(FP16.greater(FP16.toHalf(0.0f), FP16.toHalf(-0.1f))); in testGreater()
241 assertTrue(FP16.greater(FP16.toHalf(0.1f), FP16.toHalf(0.0f))); in testGreater()
247 assertTrue(FP16.greaterEquals(FP16.POSITIVE_INFINITY, FP16.NEGATIVE_INFINITY)); in testGreaterEquals()
248 assertTrue(FP16.greaterEquals(FP16.POSITIVE_INFINITY, FP16.MAX_VALUE)); in testGreaterEquals()
251 assertTrue(FP16.greaterEquals(FP16.LOWEST_VALUE, FP16.NEGATIVE_INFINITY)); in testGreaterEquals()
252 assertTrue(FP16.greaterEquals(FP16.NEGATIVE_ZERO, FP16.POSITIVE_ZERO)); in testGreaterEquals()
253 assertTrue(FP16.greaterEquals(FP16.POSITIVE_ZERO, FP16.NEGATIVE_ZERO)); in testGreaterEquals()
256 assertTrue(FP16.greaterEquals(FP16.MIN_NORMAL, FP16.MIN_VALUE)); in testGreaterEquals()
258 assertTrue(FP16.greaterEquals(FP16.toHalf(12.4f), FP16.toHalf(12.3f))); in testGreaterEquals()
261 assertTrue(FP16.greaterEquals(FP16.toHalf(-12.3f), FP16.toHalf(-12.4f))); in testGreaterEquals()
262 assertTrue(FP16.greaterEquals((short) 0x3ff, FP16.MIN_VALUE)); in testGreaterEquals()
263 assertTrue(FP16.greaterEquals(FP16.NEGATIVE_INFINITY, FP16.NEGATIVE_INFINITY)); in testGreaterEquals()
264 assertTrue(FP16.greaterEquals(FP16.POSITIVE_INFINITY, FP16.POSITIVE_INFINITY)); in testGreaterEquals()
265 assertTrue(FP16.greaterEquals(FP16.toHalf(12.12356f), FP16.toHalf(12.12356f))); in testGreaterEquals()
266 assertTrue(FP16.greaterEquals(FP16.toHalf(-12.12356f), FP16.toHalf(-12.12356f))); in testGreaterEquals()
269 assertTrue(FP16.greaterEquals(FP16.toHalf(0.0f), FP16.toHalf(-1.0f))); in testGreaterEquals()
270 assertTrue(FP16.greaterEquals(FP16.toHalf(-1.0f), FP16.toHalf(-1.0f))); in testGreaterEquals()
271 assertTrue(FP16.greaterEquals(FP16.toHalf(-1.3f), FP16.toHalf(-1.3f))); in testGreaterEquals()
272 assertTrue(FP16.greaterEquals(FP16.toHalf(1.0f), FP16.toHalf(0.0f))); in testGreaterEquals()
274 assertTrue(FP16.greaterEquals(FP16.toHalf(1.0f), FP16.toHalf(1.0f))); in testGreaterEquals()
275 assertTrue(FP16.greaterEquals(FP16.toHalf(1.3f), FP16.toHalf(1.3f))); in testGreaterEquals()
277 assertTrue(FP16.greaterEquals(FP16.toHalf(0.0f), FP16.toHalf(-0.1f))); in testGreaterEquals()
278 assertTrue(FP16.greaterEquals(FP16.toHalf(-0.1f), FP16.toHalf(-0.1f))); in testGreaterEquals()
279 assertTrue(FP16.greaterEquals(FP16.toHalf(0.1f), FP16.toHalf(0.0f))); in testGreaterEquals()
281 assertTrue(FP16.greaterEquals(FP16.toHalf(0.1f), FP16.toHalf(0.1f))); in testGreaterEquals()
285 assertTrue(FP16.less(FP16.NEGATIVE_INFINITY, FP16.POSITIVE_INFINITY)); in testLess()
286 assertTrue(FP16.less(FP16.MAX_VALUE, FP16.POSITIVE_INFINITY)); in testLess()
289 assertTrue(FP16.less(FP16.NEGATIVE_INFINITY, FP16.LOWEST_VALUE)); in testLess()
294 assertTrue(FP16.less(FP16.MIN_VALUE, FP16.MIN_NORMAL)); in testLess()
296 assertTrue(FP16.less(FP16.toHalf(12.3f), FP16.toHalf(12.4f))); in testLess()
299 assertTrue(FP16.less(FP16.toHalf(-12.4f), FP16.toHalf(-12.3f))); in testLess()
300 assertTrue(FP16.less(FP16.MIN_VALUE, (short) 0x3ff)); in testLess()
302 assertTrue(FP16.less(FP16.toHalf(-1.0f), FP16.toHalf(0.0f))); in testLess()
307 assertTrue(FP16.less(FP16.toHalf(0.0f), FP16.toHalf(1.0f))); in testLess()
310 assertTrue(FP16.less(FP16.toHalf(-0.1f), FP16.toHalf(0.0f))); in testLess()
314 assertTrue(FP16.less(FP16.toHalf(0.0f), FP16.toHalf(0.1f))); in testLess()
319 assertTrue(FP16.lessEquals(FP16.NEGATIVE_INFINITY, FP16.POSITIVE_INFINITY)); in testLessEquals()
320 assertTrue(FP16.lessEquals(FP16.MAX_VALUE, FP16.POSITIVE_INFINITY)); in testLessEquals()
323 assertTrue(FP16.lessEquals(FP16.NEGATIVE_INFINITY, FP16.LOWEST_VALUE)); in testLessEquals()
324 assertTrue(FP16.lessEquals(FP16.POSITIVE_ZERO, FP16.NEGATIVE_ZERO)); in testLessEquals()
325 assertTrue(FP16.lessEquals(FP16.NEGATIVE_ZERO, FP16.POSITIVE_ZERO)); in testLessEquals()
328 assertTrue(FP16.lessEquals(FP16.MIN_VALUE, FP16.MIN_NORMAL)); in testLessEquals()
330 assertTrue(FP16.lessEquals(FP16.toHalf(12.3f), FP16.toHalf(12.4f))); in testLessEquals()
333 assertTrue(FP16.lessEquals(FP16.toHalf(-12.4f), FP16.toHalf(-12.3f))); in testLessEquals()
334 assertTrue(FP16.lessEquals(FP16.MIN_VALUE, (short) 0x3ff)); in testLessEquals()
335 assertTrue(FP16.lessEquals(FP16.NEGATIVE_INFINITY, FP16.NEGATIVE_INFINITY)); in testLessEquals()
336 assertTrue(FP16.lessEquals(FP16.POSITIVE_INFINITY, FP16.POSITIVE_INFINITY)); in testLessEquals()
337 assertTrue(FP16.lessEquals(FP16.toHalf(12.12356f), FP16.toHalf(12.12356f))); in testLessEquals()
338 assertTrue(FP16.lessEquals(FP16.toHalf(-12.12356f), FP16.toHalf(-12.12356f))); in testLessEquals()
340 assertTrue(FP16.lessEquals(FP16.toHalf(-1.0f), FP16.toHalf(0.0f))); in testLessEquals()
342 assertTrue(FP16.lessEquals(FP16.toHalf(-1.0f), FP16.toHalf(-1.0f))); in testLessEquals()
343 assertTrue(FP16.lessEquals(FP16.toHalf(-1.3f), FP16.toHalf(-1.3f))); in testLessEquals()
345 assertTrue(FP16.lessEquals(FP16.toHalf(0.0f), FP16.toHalf(1.0f))); in testLessEquals()
346 assertTrue(FP16.lessEquals(FP16.toHalf(1.0f), FP16.toHalf(1.0f))); in testLessEquals()
347 assertTrue(FP16.lessEquals(FP16.toHalf(1.3f), FP16.toHalf(1.3f))); in testLessEquals()
348 assertTrue(FP16.lessEquals(FP16.toHalf(-0.1f), FP16.toHalf(0.0f))); in testLessEquals()
350 assertTrue(FP16.lessEquals(FP16.toHalf(-0.1f), FP16.toHalf(-0.1f))); in testLessEquals()
352 assertTrue(FP16.lessEquals(FP16.toHalf(0.0f), FP16.toHalf(0.1f))); in testLessEquals()
353 assertTrue(FP16.lessEquals(FP16.toHalf(0.1f), FP16.toHalf(0.1f))); in testLessEquals()