Thanks for sending an requirement! Please fill in the following template to help quickly solve your problem.
验证使用GCC14编译ops-transformer仓host侧代码,运行ut测试。发现apply_rotary_pos_emb算子的A5tiling侧代码使用到std::find接口,在gcc14编译时会提示接口使用错误,需要#include头文件。
在posembedding/apply_rotary_pos_emb/op_host/apply_rotary_pos_emb_tiling_base_arch35.cpp的头文件中加入#include就可以解决问题。
/assign @hid81635372
Thanks for sending an requirement! Please fill in the following template to help quickly solve your problem.
Backgroud(背景信息)
验证使用GCC14编译ops-transformer仓host侧代码,运行ut测试。发现apply_rotary_pos_emb算子的A5tiling侧代码使用到std::find接口,在gcc14编译时会提示接口使用错误,需要#include头文件。
Benefit / Necessity (价值/作用)
Design(设计方案)
在posembedding/apply_rotary_pos_emb/op_host/apply_rotary_pos_emb_tiling_base_arch35.cpp的头文件中加入#include就可以解决问题。