Skip to content

Commit

Permalink
Set default shm size to 1MB for Python backend (#6209)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tabrizian committed Aug 22, 2023
1 parent 7fd8516 commit 47db080
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qa/L0_infer/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ TF_VERSION=${TF_VERSION:=2}
TEST_JETSON=${TEST_JETSON:=0}

# Default size (in MB) of shared memory to be used by each python model
# instance (Default is 64MB)
DEFAULT_SHM_SIZE_MB=${DEFAULT_SHM_SIZE_MB:=64}
# instance (Default is 1MB)
DEFAULT_SHM_SIZE_MB=${DEFAULT_SHM_SIZE_MB:=1}
DEFAULT_SHM_SIZE_BYTES=$((1024*1024*$DEFAULT_SHM_SIZE_MB))

# On windows the paths invoked by the script (running in WSL) must use
Expand Down

0 comments on commit 47db080

Please sign in to comment.