#!/bin/bash

while :

do

  s1=$(nvidia-smi | grep -o "[0-9]*MiB /" | grep -o "[0-9]*")

  s2=$(date +%Y-%m-%d) echo $s1,$s2 >> gpuRate.txt

  sleep

5 done

 

 

 

참고 : jhnyang.tistory.com/67

'Devops' 카테고리의 다른 글

Kubeflow 명령어 모음  (0) 2021.04.27
Aws EKS 원격 초기 세팅  (0) 2021.04.26
Ubuntu Codec(코덱) 설치 방법  (0) 2021.01.29
Jupyterlab 자동완성이 동작하지 않을때  (0) 2020.12.26
Docker 커맨드 모음  (0) 2020.12.11

+ Recent posts