cd5c8f6471
* Optimize container images for startup This change adjusts how to handle runner payloads to support container builds where we keep them extracted in the filesystem. This makes it easier to optimize the cpu/cuda vs cpu/rocm images for size, and should result in faster startup times for container images. * Refactor payload logic and add buildx support for faster builds * Move payloads around * Review comments * Converge to buildx based helper scripts * Use docker buildx action for release
16 lines
540 B
Go
16 lines
540 B
Go
package llm
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
const CREATE_DEFAULT_ERROR_MODE = 0x04000000
|
|
|
|
var LlamaServerSysProcAttr = &syscall.SysProcAttr{
|
|
// Wire up the default error handling logic If for some reason a DLL is
|
|
// missing in the path this will pop up a GUI Dialog explaining the fault so
|
|
// the user can either fix their PATH, or report a bug. Without this
|
|
// setting, the process exits immediately with a generic exit status but no
|
|
// way to (easily) figure out what the actual missing DLL was.
|
|
CreationFlags: CREATE_DEFAULT_ERROR_MODE,
|
|
}
|