jiazhihao / TASO

The Tensor Algebra SuperOptimizer for Deep Learning
Apache License 2.0
687 stars 90 forks source link

Why "generator" building is not a part of CMakeLists.txt? #53

Closed burlachenkok closed 4 years ago

burlachenkok commented 4 years ago

Dear TASO authors. There are no conditional statements inside the project file: https://github.com/jiazhihao/TASO/blob/master/CMakeLists.txt

I have observed that I can build "generator.cc" via https://github.com/jiazhihao/TASO/blob/master/src/generator/compile.sh

But why is it not a part of CMakeLists.txt ? Is it due to historical reasons or it's so just due to some hidden problem?

jiazhihao commented 4 years ago

@burlachenkok Thank you for your interests in TASO. This is because we expect that most users would like to directly use pre-generated graph substitutions without having to rerun the TASO generator. You can always build and run the generator using the compile.sh file you discovered.

burlachenkok commented 4 years ago

Thanks