Yifang Fu

Results 1 comments of Yifang Fu

using the following commands from [https://www.tensorflow.org/extend/adding_an_op](url) `TF_INC=$(python -c 'import tensorflow as tf; print(tf.sysconfig.get_include())')` `TF_LIB=$(python -c 'import tensorflow as tf; print(tf.sysconfig.get_lib())')` `g++ -std=c++11 -shared hungarian.cc -o hungarian.so -fPIC -I$TF_INC -I$TF_INC/external/nsync/public -L$TF_LIB...