Skip to content

Commit e82b9d7

Browse files
authored
Update README.md
1 parent fe39bd7 commit e82b9d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ GPU1 => 0.00GB
230230
```
231231

232232
## Do your processes die or stop working?
233-
Many issues have pointed this out. And I've found that running code inside the context of if `__name__ == '__main__'` solves a lot of problems. So if you run have some problems about processes, try writing your code inside the context of `if __name__ == '__main__'`.
233+
Many issues have pointed this out. And I've found that running code inside the context of `if __name__ == '__main__'` solves a lot of problems. So if you run have some problems about processes, try writing your code inside the context of `if __name__ == '__main__'`.
234234

235235
## Are you getting some errors in docker container?
236236
I recently found out that ALL errors that occur in environments with limited resources such as docker containers are due to **shared memory size**. So, if you want to use larger models with parallelformers in docker containers, **INCREASE the size of shared memory by `--shm-size=?gb` or REMOVE the limitation of shared memory size by `--ipc=host`**. the larger shared memory size is required if you want to use larger model.

0 commit comments

Comments
 (0)