error:use of undeclared identifier
生活随笔
收集整理的這篇文章主要介紹了
error:use of undeclared identifier
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
HLS中error:use of undeclared identifier
問題描述
在編寫HLS代碼過程中,使用流數(shù)據(jù)時(shí)報(bào)錯,說我的標(biāo)識符未聲明。但是分明是定義了的,HLS編譯器不認(rèn)識。
錯誤位置:
解決方案
問題定位:使用hls::stream時(shí)兩個尖括號(>>)不能連寫。
stream<ap_uint<64>>& in
解決方法:
-
兩個尖括號之間加空格
stream<ap_uint<64> >& in
-
使用typedef重定義數(shù)據(jù)類型
typedef ap_uint<64> uint_64 stream<uint_64>& in
總結(jié)
以上是生活随笔為你收集整理的error:use of undeclared identifier的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: PHPer转战Android的学习过程以
- 下一篇: Scala.js:将Scala编译为Ja