Skip to content
View lcf87's full-sized avatar
Block or Report

Block or report lcf87

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Debugging the TensorFlow internals Debugging the TensorFlow internals
    1
    > If you want to be able to debug CUDA kernels, this isn't for you
    2
    3
    There are tons and tons of tutorials teaching you how to debug the TensorFlow Python APIs, which is good. But there is nearly zero converage anywhere on how to debug the internals of TensorFlow. By internals I mean everything under the Python layer, i.e. the C and C++ runtime library. 
    4
    
                  
    5
    Here I'll show you how to setup the environment to debug, and how to use `gdb` to see under the hood of TensorFlow. But before we start, I have to mention this open source [book](https://github.com/horance-liu/tensorflow-internals). It covered so many internal workings of TensorFlow and is definitely worth reading. But sadly it doesn't have an official English version. You can go to the issue page and there's a thread mentioning a Google translated version. I still find it useful, despite kinda hard to read.