We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cd7afe commit 6811d76Copy full SHA for 6811d76
2 files changed
.gitignore
@@ -37,6 +37,7 @@ cmake_install.cmake
37
*.tmp
38
temp/
39
tmp/
40
+benchmarks/tmp_*
41
42
# Dependency directories
43
deps/
benchmarks/pome_bench.py tools/pome_bench.pybenchmarks/pome_bench.py renamed to tools/pome_bench.py
@@ -3,7 +3,9 @@
3
import os
4
import sys
5
6
-POME_BIN = sys.argv[1] if len(sys.argv) > 1 else "./build_new/pome"
+sys.path.append(os.path.join(os.path.dirname(__file__), ".."))
7
+
8
+POME_BIN = sys.argv[1] if len(sys.argv) > 1 else "./build/pome"
9
PYTHON_BIN = "python3"
10
11
import re
0 commit comments