serizba / cppflow

Run TensorFlow models in C++ without installation and without Bazel

Home Page:https://serizba.github.io/cppflow/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Regarding compiling with earlier version of g++ /C++

bmiftah opened this issue · comments

Hi , I try to compile my C++ code that load tensorflow modle with functions from cppflow library. This code perefectly loaded model and make prediction. But later , when I integrate this code compiled with -std=c++17 9, g++ 9.0 with aother C++ project wirtten in C++11 compiled with older g++ (4.8) , the compilation failed.

Is there a way I can use my code that uses Cppflow library and written in C++17 and g++ 9.0 inside a code C++11 9 compiled in g++4.8 ?

C++17 is a strict requirment for CPPflow ?

I am not planing to make the code compatible with previous c++ standards. But you can take a look to #108 or other issues about the topic. There shouldn't be many changes to do.