Skip to content

Instantly share code, notes, and snippets.

View csukuangfj's full-sized avatar
👀
I may be slow to respond.

Fangjun Kuang csukuangfj

👀
I may be slow to respond.
  • Xiaomi Corporation
  • Peking
View GitHub Profile
@csukuangfj
csukuangfj / c-notes.md
Last active January 9, 2019 05:11
c-notes.md
  • [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
@csukuangfj
csukuangfj / deep-learning-notes
Last active December 24, 2018 09:44
deep learning notes
- 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
@csukuangfj
csukuangfj / arm-notes.md
Last active February 12, 2022 13:24
arm notes

Deep Learning

  • 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]
@csukuangfj
csukuangfj / cpp-notes.md
Last active January 11, 2019 01:57
notes about c++ programming
@csukuangfj
csukuangfj / toggle_keybindings.tmux.conf
Created December 7, 2018 02:25 — forked from samoshkin/toggle_keybindings.tmux.conf
tmux.conf excerpt to toggle on/off session keybindings and prefix handling
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 \