From bf1ceda994b4a8d4354c3226eff531840a1606c5 Mon Sep 17 00:00:00 2001
From: Isuru Fernando <idf2@illinois.edu>
Date: Sun, 13 Feb 2022 15:01:05 -0600
Subject: [PATCH] Fix path to tasksys.cpp

---
 examples/python/ispc-stream-harness.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/examples/python/ispc-stream-harness.py b/examples/python/ispc-stream-harness.py
index 722cd917c..f603aabbe 100644
--- a/examples/python/ispc-stream-harness.py
+++ b/examples/python/ispc-stream-harness.py
@@ -54,7 +54,8 @@ else:
 
 
 def main():
-    with open("tasksys.cpp") as ts_file:
+    this_dir = os.path.dirname(__file__)
+    with open(os.path.join(this_dir, "tasksys.cpp")) as ts_file:
         tasksys_source = ts_file.read()
 
     def make_knl(name, insn, vars):
-- 
GitLab