Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
The Deref Trait in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
-
In short, do NOT implement the
Deref
trait unless you are absolutely sure that it's needed! According to Rust Official Doc - Deref, Deref should only be implemented for smart pointers. The …
Thread-Local Storage for Rayon
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
There might be issue if the code relies on Drop of the struct. For example, if you create a BufWriter in thread-local storage, last buffered output might not flush. You have …
Python pandas Tips
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
pandas
Settings
Please refer to Options for the pandas Package in Python for discussions.
Tips and Traps
-
Do NOT use
DataFrame.iterrows
. Please refer to the issue for discussions on it …
Tips on GPU Computing
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
List GPU Devices on Linux
You can list GPU devices using the following command on linux.
lspci -v | grep VGA
Machine Learning Frameworks Supporting Managing GPU Resources
Rust for IoT
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
tock-os
tock-os Tock is an embedded operating system designed for running multiple concurrent, mutually distrustful applications on Cortex-M and RISC-V based embedded platforms. Tock's design centers around protection, both from potentially …