blob: 2461d6022cfc94099c5b4c74514f1dcb861cf200 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
// Automatically sets GOMAXPROCS to match Yandex clouds container CPU quota.
//
// This package always adjust GOMAXPROCS to some "safe" value.
// "safe" values are:
// - 2 or more
// - no more than logical cores
// - no moore than container guarantees
// - no more than 8
package maxprocs
|