zjhellofss / KuiperInfer

校招、秋招、春招、实习好项目!带你从零实现一个高性能的深度学习推理库,支持大模型 llama2 、Unet、Yolov5、Resnet等模型的推理。Implement a high-performance deep learning inference library step by step
MIT License
2.59k stars 295 forks source link

请问在这行代码中的expf()是在哪个头文件包含的呢? #25

Closed wangqiang9 closed 1 year ago

wangqiang9 commented 1 year ago

https://github.com/zjhellofss/KuiperInfer/blob/1b97b9f2a60ef96a877b7b52ad42a0669eb548bb/source/layer/details/sigmoid.cpp#L38
请问在这行代码中的 expf 是在哪个头文件包含的呢?

中的吗:https://www.enseignement.polytechnique.fr/informatique/INF478/docs/Cpp/en/c/numeric/math/exp.html 但是我看 sigmoid.cpp/sigmoid.hpp 中并没有 #include <math.h>呀。

跪求大佬解答

zjhellofss commented 1 year ago

应该是隐式包含的,armadillo头文件中就包含了cmath

zjhellofss commented 1 year ago

image

wangqiang9 commented 1 year ago

应该是隐式包含的,armadillo头文件中就包含了cmath

明白了,谢谢大佬解答!