diff --git a/hpvm/projects/keras/frontend/approxhpvm_translator.py b/hpvm/projects/keras/frontend/approxhpvm_translator.py index 1b041a6de475d5770268db113ecde16e0403c62a..852b3e89f4ca98d072e846af1cd4aed66bd97f8c 100644 --- a/hpvm/projects/keras/frontend/approxhpvm_translator.py +++ b/hpvm/projects/keras/frontend/approxhpvm_translator.py @@ -1127,5 +1127,5 @@ def translate_to_approxhpvm(model, print ("-- ApproxHPVM src : ", src_dir + "approxhpvm_src.cc") - return weights_dir + return src_dir diff --git a/hpvm/projects/keras/src/Benchmark.py b/hpvm/projects/keras/src/Benchmark.py index 7b0b5447bc88d85a47a4274b5484b19f0a66acdc..b3b85a4277a99b451367a4afaa7a422abcfc1d58 100644 --- a/hpvm/projects/keras/src/Benchmark.py +++ b/hpvm/projects/keras/src/Benchmark.py @@ -3,6 +3,7 @@ import sys import os import shutil +import subprocess from keras.utils.np_utils import to_categorical from keras.models import load_model from frontend.approxhpvm_translator import translate_to_approxhpvm @@ -39,18 +40,36 @@ class Benchmark: # Compiles frontend generated sources def compileSource(self, working_dir): + + src_file = os.getcwd() + "/" + working_dir + "/approxhpvm_src.cc" + target_binary = os.getcwd() + "/" + working_dir + "/HPVM_binary" + approx_conf_file = "tuner_confs.txt" - # set LLVM_SRC_ROOT - os.environ["CFLAGS"] = "" - os.environ["CXXFLAGS"] = "" - - dest_file = working_dir + "CMakeLists.txt" - shutil.copy("cmake_template/CMakeLists.txt", dest_file) - - # Cmake ../ - # make - + FNULL = open(os.devnull, 'w') + + try: + subprocess.run([ + "approxhpvm.py", + "-h" + ], check=True, stdout=FNULL) + + except: + print ("\n\n ERROR: Could not find approxhpvm.py (HPVM compile script)!! \n\n") + print ("To Compile, Must set PATH to include approxhpvm.py script. Do the following: ") + print ("**** export PATH=${PATH_TO_YOUR_HPVM_INSTALLATION}/build/bin/:$PATH *****") + sys.exit(1) + + + try: + subprocess.run([ + "approxhpvm.py", src_file, target_binary, + "-t", "tensor", "--conf-file", approx_conf_file + ], check=True) + except: + print ("\n\n ERROR: HPVM Compilation Failed!! \n\n") + sys.exit(1) + def printUsage(self): print ("Usage: python ${benchmark.py} [hpvm_reload|train] [frontend] [compile]")