Intel® 高层次综合编译器专业版Pro版: 参考手册

ID 683349
日期 12/04/2023
Public
文档目录

B.5. hls_float_math.h头文件提供的数学函数

添加hls_float_math.h头文件后会添加对以下任意精度浮点(hls_float_math.h)数据类型函数的支持:
  • 平方根:ihc_sqrt
  • 立方根:ihc_cbrt
  • 倒数(逆):ihc_recip
  • 倒数平方根:ihc_rsqrt
  • 斜边:ihc_hypot
  • e x : ihc_exp
  • e x-1 : ihc_expm1
  • 2 x : ihc_exp2
  • 10 x : ihc_exp10
  • ln(x): ihc_log
  • log2(x): ihc_log2
  • log10(x): ihc_log10
  • ln(1+x): ihc_log1p
  • x y : ihc_pow

    xy都是hls_float 数据类型

  • x n ihc_pown

    xhls_float数据类型,nac_int数据类型

  • y ihc_powr

    xy都是hls_float数据类型。限制条件是x>=0 -> x^y,x>=0,如果x<0,则行为未定义

  • sin: ihc_sin
  • sinpi: ihc_sinpi
  • cos: ihc_cos
  • cospi: ihc_cospi
  • sincos: ihc_sincos
  • sincospi: ihc_sincospi
  • arcsin: ihc_asin
  • arcsinpi: ihc_asinpi
  • arccos: ihc_acos
  • arccospi: ihc_acospi
  • arctan: ihc_atan
  • arctanpi: ihc_atanpi
  • arctan(x/y): ihc_atan2

    xy都是hls_float 数据类型

有关输入类型限制、输入值限制和输出类型传播规则的详细信息,请查看hls_float_math.h 头文件。