1 Star 0 Fork 0

北京大学计算与数字经济研究院/export-jobs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
util.py 821 Bytes
一键复制 编辑 原始数据 按行查看 历史
陈俊达 提交于 2022-05-07 10:18 . init
import subprocess
def parse_tres(tres,gpu_id=1001):
if tres is '':
return 0,0,0,0
a=0;b=0;c=0;d=0;
for item in tres.split(","):
ks = item.split("=")
if ks[1].isdigit():
if int(ks[0]) == 1:
a=ks[1]
elif int(ks[0]) == 2:
b=ks[1]
elif int(ks[0]) == 4:
c=ks[1]
elif int(ks[0]) == gpu_id:
d=ks[1]
return a,b,c,d
def parse_gres(gres):
if gres is '' or ":" not in gres:
return 0
item = gres.split(":")
return item[1] if item[1].isdigit() else 0
def execute_shell(command):
try:
ret = subprocess.check_output(command,shell=True).decode().strip()
return True,ret
except:
return False,"ERROR! Execute command Failed"
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/pku_icode/export-jobs.git
git@gitee.com:pku_icode/export-jobs.git
pku_icode
export-jobs
export-jobs
master

搜索帮助