Closed jeffmccune closed 3 years ago
Yea, it's trying to load an example module but the path isn't set. Either comment it out in gquantrc: https://github.com/NVIDIA/fsi-samples/blob/v1.0.2/gQuant/plugins/rapids_plugin/gquantrc
# my_node= %(MODULEPATH)s/my_node.py
Or export the environment variable MODULEPATH
to the path where you have the modules listed in gquantrc. For the my_node.py
it should be the path on your system to that file's directory i.e.
https://github.com/NVIDIA/fsi-samples/tree/v1.0.2/gQuant/plugins/rapids_plugin/modules
@avolkov1 Thank you so much! That fixed it.
diff --git a/gQuant/plugins/rapids_plugin/gquantrc b/gQuant/plugins/rapids_plugin/gquantrc
index e7b3346..95bfc46 100644
--- a/gQuant/plugins/rapids_plugin/gquantrc
+++ b/gQuant/plugins/rapids_plugin/gquantrc
@@ -1,2 +1,2 @@
[ModuleFiles]
-my_node= %(MODULEPATH)s/my_node.py
+# my_node= %(MODULEPATH)s/my_node.py
Overview
Thanks for publishing this, it's very interesting and I appreciate the time and effort you're spending on it. I'm trying to get started with 02_single_stock_trade.ipnyb with git tag v1.0.2 (abf9d337035c7d3ca11697e7fb4610156824b036) and when I load the notebook in Jupyter Lab, I get the following error in the
task_graph.draw()
cell.Any suggestions to get the graph widget working?
Environment:
Debian 10.8 amd64
conda info
conda list