5 Star 3 Fork 3

fangxiaolong/lightning_npu

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
run_test.sh 453 Bytes
一键复制 编辑 原始数据 按行查看 历史
LRJ 提交于 2023-03-20 16:48 . add pytest
#!/bin/bash
run_test() {
local test_case=$1
ret=$(pytest $test_case > /dev/null; echo $?)
if [ $ret -eq 0 ]; then
echo -e "$test_case passed\n"
else
echo -e "$test_case failed\n"
fi
}
# echo $(run_test test_16bit_precision_example.py)
# echo $(run_test test_early_stopping_example.py)
# echo $(run_test test_mnist_example.py)
# echo $(run_test test_mnist_multi_npu_example.py)
for FILE in ./test/*.py; do echo $(run_test $FILE); done
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/xiaoloongfang/lightning_npu.git
git@gitee.com:xiaoloongfang/lightning_npu.git
xiaoloongfang
lightning_npu
lightning_npu
master

搜索帮助