加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
xilinxpower.sh 739 Bytes
一键复制 编辑 原始数据 按行查看 历史
Nachiket Kapre 提交于 2013-01-31 13:27 . Adding Xilinx scripts..
#!/bin/zsh
#$1 is the name of the netlist
#$2 is name of clock signal
cp ~/bin/power.xpa $1.xpa
sed -i "s/\$1/$1/g" $1.xpa
sed -i "s/\$2/$2/g" $1.xpa
xpwr -v -x $1.xpa $1.ncd &> /tmp/$1.pwr
Logic=`cat /tmp/$1.pwr | grep "^| Logic" | cut -d "|" -f 3 | sed "s/\ //g"`
Signals=`cat /tmp/$1.pwr | grep "^| Signals" | cut -d "|" -f 3 | sed "s/\ //g"`
Clocks=`cat /tmp/$1.pwr | grep "^| Clocks" | cut -d "|" -f 3 | sed "s/\ //g"`
DSPs=`cat /tmp/$1.pwr | grep "^| DSPs" | cut -d "|" -f 3 | sed "s/\ //g"`
Total=`cat /tmp/$1.pwr | grep "^| Total" | head -n 1 | cut -d "|" -f 3 | sed "s/\ //g"`
echo ${Logic:=0} ${Signals:=0} ${Clocks:=0} ${DSPs:=0}
power=`perl -e "print $Logic+$Signals+$Clocks+$DSPs;"`;
echo $1 ${power}mW ${Total}mW
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化