We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Would be nice to have this. Note the issues blocking this, listed in a TODO in tikv's Cargo.toml:
The text was updated successfully, but these errors were encountered:
Related to #4189 - we probably only want multiple code-gen units in "dev optimized" builds, not true published release builds.
Sorry, something went wrong.
Close seems to be accidental.
I wrote a script to capture max RSS for rustc
https://github.com/brson/measure-rustc-rss
command: RUSTC_WRAPPER="measure-rustc-rss.sh" make x-build-dev-nopt toolchain: rustc 1.35.0-nightly (a9da8fc9c 2019-03-04) platform: Linux
[profile.dev] opt-level = 0 debug = false rpath = false lto = false debug-assertions = true codegen-units = 1 panic = "unwind" incremental = true overflow-checks = true
debug=false, panic=unwind, opt-level=0, codegen-units=1, incremental=true, lto=false:
tikv rss: 1728404k tikv-(server|importer|ctl) rss: 3872556k
debug=false, panic=unwind, opt-level=0, codegen-units=16, incremental=true, lto=false:
tikv rss: 1729776k tikv-(server|importer|ctl) rss: 3964692k
codegen-units on it's own appears to have little impact on memory usage. maybe it's in combination with full LTO that the rss gets bad
No branches or pull requests
Would be nice to have this. Note the issues blocking this, listed in a TODO in tikv's Cargo.toml:
The text was updated successfully, but these errors were encountered: