I want to build tensorflow with qualcomm hexagon libraries, just as the makefile like this
tensorflow/contrib/makefile/Makefile
ifdef HEXAGON_LIBS
LIBGEMM_WRAPPER := $(HEXAGON_LIBS)/libgemm_wrapper.so
ifeq ($(shell test -f $(LIBGEMM_WRAPPER) 2> /dev/null; echo $$?), 0)
$(info "Use hexagon libs at " $(LIBGEMM_WRAPPER))
else
$(error "hexagon libs not found at " $(LIBGEMM_WRAPPER))
endif
but I cannot find the libgemm_wrapper.so
in the HEXAGON SDK of Qualcomm.