- [C Preprocessor tricks, tips, and idioms][1]
- [Standard alternative to GCC's ##VA_ARGS trick?][2]
- [Variadic Macros][3], gcc manual
- [Appending to VA_ARGS][4]
- [Comma omission and comma deletion][5]
- IEEE-754 Floating Point Converter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- a blog article: "Understanding LSTM Networks", http://colah.github.io/posts/2015-08-Understanding-LSTMs/ | |
- a paper (LSTM): long short-term memory: http://www.bioinf.jku.at/publications/older/2604.pdf | |
- a paper (GRU) Gated Recurrent Unit: "Learning Phrase Representations using RNN Encoder–Decoder for Statistical Machine | |
Translation", 2014, https://arxiv.org/pdf/1406.1078v3.pdf | |
- phd thesis: "Long Short-Term Memory in Recurrent Neural Networks", 2001, http://www.felixgers.de/papers/phd.pdf |
- https://github.com/ARM-software/CMSIS_5/blob/develop/CMSIS/NN/Include/arm_nnfunctions.h
- a paper [CMSIS-NN: Efficient Neural Network Kernels for Arm Cortex-M CPUs][1], google scolar of the author [Liangzhen Lai][2]
- a paper [Fixed point quantization of deep convolutional networks][3]
- a paper [Deep Convolutional Neural Network Inference with Floating-point Weights and Fixed-point Activations][4]
- a blog [Why GEMM is at the heart of deep learning][5]
- a paper [cuDNN: Efficient Primitives for Deep Learning][6]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bind -T root F12 \ | |
set prefix None \;\ | |
set key-table off \;\ | |
set status-style "fg=$color_status_text,bg=$color_window_off_status_bg" \;\ | |
set window-status-current-format "#[fg=$color_window_off_status_bg,bg=$color_window_off_status_current_bg]$separator_powerline_right#[default] #I:#W# #[fg=$color_window_off_status_current_bg,bg=$color_window_off_status_bg]$separator_powerline_right#[default]" \;\ | |
set window-status-current-style "fg=$color_dark,bold,bg=$color_window_off_status_current_bg" \;\ | |
if -F '#{pane_in_mode}' 'send-keys -X cancel' \;\ | |
refresh-client -S \;\ | |
bind -T off F12 \ |