Home
last modified time | relevance | path

Searched refs:int_round (Results 1 – 25 of 38) sorted by relevance

12

/dports/math/libxsmm/libxsmm-1.16.3/src/
H A Dlibxsmm_dnn.c691 unsigned int int_round = 0; in libxsmm_rnaz_convert_fp32_bf16() local
694 int_round = *((unsigned int*)&(in[i])); in libxsmm_rnaz_convert_fp32_bf16()
703 int_round = int_round + 0x00008000; in libxsmm_rnaz_convert_fp32_bf16()
707 int_round = int_round >> 16; in libxsmm_rnaz_convert_fp32_bf16()
709 out[i] = (libxsmm_bfloat16)int_round; in libxsmm_rnaz_convert_fp32_bf16()
719 unsigned int int_round = 0; in libxsmm_rne_convert_fp32_bf16() local
722 int_round = *((unsigned int*)&(in[i])); in libxsmm_rne_convert_fp32_bf16()
731 unsigned int fixup = (int_round >> 16) & 1; in libxsmm_rne_convert_fp32_bf16()
732 int_round = int_round + 0x00007fff + fixup; in libxsmm_rne_convert_fp32_bf16()
736 int_round = int_round >> 16; in libxsmm_rne_convert_fp32_bf16()
[all …]
H A Dlibxsmm_dnn_elementwise.c608 unsigned int int_round = 0; in libxsmm_internal_matrix_rne_mask_fp32_bfp16_ld() local
610 const void *const ptr = &int_round; in libxsmm_internal_matrix_rne_mask_fp32_bfp16_ld()
612 int_round = *((unsigned int*)&(src[(j*ld)+i])); in libxsmm_internal_matrix_rne_mask_fp32_bfp16_ld()
621 unsigned int fixup = (int_round >> 16) & 1; in libxsmm_internal_matrix_rne_mask_fp32_bfp16_ld()
622 int_round = int_round + 0x00007fff + fixup; in libxsmm_internal_matrix_rne_mask_fp32_bfp16_ld()
626 int_round = int_round & 0xffff0000; in libxsmm_internal_matrix_rne_mask_fp32_bfp16_ld()
639 unsigned int int_round = 0; in libxsmm_internal_matrix_rne_cvt_fp32_bfp16_ld() local
648 unsigned int fixup = (int_round >> 16) & 1; in libxsmm_internal_matrix_rne_cvt_fp32_bfp16_ld()
649 int_round = int_round + 0x00007fff + fixup; in libxsmm_internal_matrix_rne_cvt_fp32_bfp16_ld()
652 int_round = int_round >> 16; in libxsmm_internal_matrix_rne_cvt_fp32_bfp16_ld()
[all …]
/dports/x11/xlockmore/xlockmore-5.67/modes/
H A Dsolitaire.cc339 y() + int_round(height() * 0.40), in draw()
355 x() + int_round(width() * 0.35), y() + int_round(height() * 0.55), in draw()
356 int_round(0.3 * width()), int_round(0.3 * height())); in draw()
361 int_round(0.3 * width()), int_round(0.3 * height())); in draw()
365 int_round(0.3 * width()), int_round(0.3 * height())); in draw()
387 n = x() + int_round(int_round(width() * 0.3)) + modCount; in draw()
388 s = y() + int_round(height() * 0.1); in draw()
396 s = x() + int_round(height() * 0.1); in draw()
733 y = int_round(0.25 * bp->cardheight); in updateLocation()
791 y = int_round(0.25 * bp->cardheight); in updateLocation()
[all …]
/dports/lang/python-legacy/Python-2.7.18/Lib/lib-tk/test/
H A Dwidget_tests.py17 def int_round(x): function
20 pixels_round = int_round
189 conv1 = int_round
/dports/lang/python27/Python-2.7.18/Lib/lib-tk/test/
H A Dwidget_tests.py17 def int_round(x): function
20 pixels_round = int_round
189 conv1 = int_round
/dports/databases/unixODBC/unixODBC-2.3.9/extras/
H A Dsnprintf.c560 static long int_round (LDOUBLE value) in int_round() function
621 fracpart = int_round ((local_pow10 (max)) * (ufvalue - intpart)); in fmtfp()
/dports/math/libxsmm/libxsmm-1.16.3/samples/deeplearning/common/
H A Ddnn_common.h106 unsigned int int_round = 0; in rnaz_mask_fp32_bf16() local
108 const void *const ptr = &int_round; in rnaz_mask_fp32_bf16()
110 int_round = *((unsigned int*)&(in[i])); in rnaz_mask_fp32_bf16()
119 int_round = int_round + 0x00008000; in rnaz_mask_fp32_bf16()
123 int_round = int_round & 0xffff0000; in rnaz_mask_fp32_bf16()
135 unsigned int int_round = 0; in rne_mask_fp32_bf16() local
137 const void *const ptr = &int_round; in rne_mask_fp32_bf16()
139 int_round = *((unsigned int*)&(in[i])); in rne_mask_fp32_bf16()
148 unsigned int fixup = (int_round >> 16) & 1; in rne_mask_fp32_bf16()
149 int_round = int_round + 0x00007fff + fixup; in rne_mask_fp32_bf16()
[all …]
/dports/lang/python-legacy/Python-2.7.18/Lib/lib-tk/test/test_tkinter/
H A Dtest_geometry_managers.py8 from widget_tests import AbstractWidgetTest, int_round
543 self._str(int_round(pixels_conv('.5c') * self.scaling)))
554 self._str(int_round(pixels_conv('.5c') * self.scaling)))
567 self._str(int_round(pixels_conv('.5c') * self.scaling)))
580 self._str(int_round(pixels_conv('.5c') * self.scaling)))
H A Dtest_widgets.py11 add_standard_options, noconv, noconv_meth, int_round, pixels_round,
652 _conv_pixels = staticmethod(int_round)
916 _conv_pixels = staticmethod(int_round)
/dports/lang/python27/Python-2.7.18/Lib/lib-tk/test/test_tkinter/
H A Dtest_geometry_managers.py8 from widget_tests import AbstractWidgetTest, int_round
543 self._str(int_round(pixels_conv('.5c') * self.scaling)))
554 self._str(int_round(pixels_conv('.5c') * self.scaling)))
567 self._str(int_round(pixels_conv('.5c') * self.scaling)))
580 self._str(int_round(pixels_conv('.5c') * self.scaling)))
H A Dtest_widgets.py11 add_standard_options, noconv, noconv_meth, int_round, pixels_round,
652 _conv_pixels = staticmethod(int_round)
916 _conv_pixels = staticmethod(int_round)
/dports/german/BBBike/BBBike-3.18/
H A DBBBikeUtil.pm105 sub int_round { int($_[0]+0.5) } subroutine
/dports/lang/ruby26/ruby-2.6.9/
H A Dnumeric.c2112 x = ROUND_CALL(mode, int_round, (x, y)); in rb_int_round()
5143 int_round(int argc, VALUE* argv, VALUE num) in int_round() function
5531 rb_define_method(rb_cInteger, "round", int_round, -1); in Init_Numeric()
/dports/emulators/qemu/qemu-6.2.0/capstone/suite/synctools/tablegen/include/llvm/IR/
H A DIntrinsics.td443 def int_round : Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>]>;
/dports/emulators/qemu5/qemu-5.2.0/capstone/suite/synctools/tablegen/include/llvm/IR/
H A DIntrinsics.td443 def int_round : Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>]>;
/dports/emulators/qemu60/qemu-6.0.0/capstone/suite/synctools/tablegen/include/llvm/IR/
H A DIntrinsics.td443 def int_round : Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>]>;
/dports/devel/llvm70/llvm-7.0.1.src/include/llvm/IR/
H A DIntrinsics.td443 def int_round : Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>]>;
/dports/devel/llvm80/llvm-8.0.1.src/include/llvm/IR/
H A DIntrinsics.td527 def int_round : Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>]>;
/dports/devel/llvm90/llvm-9.0.1.src/include/llvm/IR/
H A DIntrinsics.td542 def int_round : Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>]>;
/dports/devel/llvm10/llvm-10.0.1.src/include/llvm/IR/
H A DIntrinsics.td558 def int_round : Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>]>;
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
H A DIntrinsics.td558 def int_round : Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>]>;
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/include/llvm/IR/
H A DIntrinsics.td558 def int_round : Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>]>;
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/include/llvm/IR/
H A DIntrinsics.td637 def int_round : DefaultAttrsIntrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>]>;
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/include/llvm/IR/
H A DIntrinsics.td625 def int_round : Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>]>;
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/include/llvm/IR/
H A DIntrinsics.td650 def int_round : DefaultAttrsIntrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>]>;

12