Skip to content

Commit

Permalink
delete back
Browse files Browse the repository at this point in the history
  • Loading branch information
Peeeeanut committed Jun 28, 2024
1 parent a41c3be commit 7dc225b
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 10 deletions.
2 changes: 0 additions & 2 deletions 24-06/Restricting_CPU_and_Memory_Usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,3 @@ taskset -c 0-9 python3 /home/6eanut/tensorflow-test/benchmarks/perfzero/lib/benc
```
ulimit -v 10000000 && python3 /home/6eanut/tensorflow-test/benchmarks/perfzero/lib/benchmark.py --git_repos="https://github.com/tensorflow/models.git;benchmark" --python_path=models --gcloud_key_file_url="" --benchmark_methods=official.benchmark.resnet_ctl_imagenet_benchmark.Resnet50CtlBenchmarkSynth.benchmark_1_gpu
```

[back](../README.md)
2 changes: 0 additions & 2 deletions 24-06/linux_time.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,3 @@ sudo timedatectl set-timezone Asia/Shanghai
[root@jiakai-openeuler-01 ~]# date
Thu Jun 27 06:37:30 PM CST 2024
```

[back](../README.md)
2 changes: 0 additions & 2 deletions 24-06/python-venv.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,3 @@ deactivate
但是,如果像之前移植opengauss的项目,那最好还是用anaconda,因为它可以切换python版本。所以到底用不用anaconda,用不用venv,还是要看具体情况。

接触项目越多,越发现版本的重要性,还是要先弄清楚版本,然后会更方便。

[back](../README.md)
2 changes: 0 additions & 2 deletions 24-06/save_output_to_file.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,3 @@ command > output_name.txt 2>&1

* `>` is the redirect operator, which redirects the standard output (stdout) of the command to the specified file. If the file already exists, this overwrites the original content; If the file does not exist, it will create a new file.
* `2>&1` is very important because it means to redirect the standard error (stderr, number 2) to the same place as the standard output (stdout, number 1). In other words, this saves all output of the command, whether normal output or error messages, to the output_name.txt file.

[back](../README.md)
2 changes: 0 additions & 2 deletions 24-06/what_is_nohup.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,3 @@ top
```
kill -9 process_id
```

[back](../README.md)

0 comments on commit 7dc225b

Please sign in to comment.