mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-11-08 13:11:56 +08:00
Increase the default stack for dirty io threads (cuda requires it) (#585)
Closes #579.
This commit is contained in:
parent
b3df13dd77
commit
d8a7af62e7
1 changed files with 2 additions and 1 deletions
|
|
@ -38,10 +38,11 @@ defmodule Livebook.Runtime.StandaloneInit do
|
||||||
"--erl",
|
"--erl",
|
||||||
# Minimize schedulers busy wait threshold,
|
# Minimize schedulers busy wait threshold,
|
||||||
# so that they go to sleep immediately after evaluation.
|
# so that they go to sleep immediately after evaluation.
|
||||||
|
# Increase the default stack for dirty io threads (cuda requires it).
|
||||||
# Enable ANSI escape codes as we handle them with HTML.
|
# Enable ANSI escape codes as we handle them with HTML.
|
||||||
# Disable stdin, so that the system process never tries to read
|
# Disable stdin, so that the system process never tries to read
|
||||||
# any input from the terminal.
|
# any input from the terminal.
|
||||||
"+sbwt none +sbwtdcpu none +sbwtdio none -elixir ansi_enabled true -noinput",
|
"+sbwt none +sbwtdcpu none +sbwtdio none +sssdio 128 -elixir ansi_enabled true -noinput",
|
||||||
# Make the node hidden, so it doesn't automatically join the cluster
|
# Make the node hidden, so it doesn't automatically join the cluster
|
||||||
"--hidden",
|
"--hidden",
|
||||||
# Use the cookie in Livebook
|
# Use the cookie in Livebook
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue