You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 11, 2021. It is now read-only.
I seem to be able to load these files individually with dyna -i, but when I try to load their concatenation I get this crash:
jasoneis@a14:~$ dyna -i wordgraph.dyna
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
/home/nwf/src/dyna2/src/Dyna/Backend/Python/interpreter.py in <module>()
688
689 if __name__ == '__main__':
--> 690 main()
/home/nwf/src/dyna2/src/Dyna/Backend/Python/interpreter.py in main()
668
669 try:
--> 670 interp.do(plan)
671 except DynaInitializerException as e:
672 print e
/home/nwf/src/dyna2/src/Dyna/Backend/Python/interpreter.py in do(self, filename, initialize)
512
513 # TODO: this should be a transaction.
--> 514 for k, v in env.agg_decl.items():
515 self.new_fn(k, v)
516
AttributeError: 'module' object has no attribute 'agg_decl'
FATAL ERROR (AttributeError): 'module' object has no attribute 'agg_decl'
Crash log available /home/jasoneis/.dyna/crash.log
Saving crash as jasoneis:2013-07-03:18:01:13:19675.log ...
The text was updated successfully, but these errors were encountered:
$ cat *5.dyna > graph-data.dyna
$ dist/build/dyna/dyna graph-data.dyna
Compiler panic!
This is almost assuredly not your fault! Please contact a TA.
Uncaught Haskell exception: stack overflow
and comments:
These files seem to crash the parser... haskell throws a stackoverflow exception then the parser exit with status 0. @nwf can you fix the return code (it shouldn't be 0) and look into why the parser doesn't like these files?
The stack overflow remains mysterious despite some time investigating; I'll pick it up again tomorrow. The compiler now at least exits with a failure when it happens.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I seem to be able to load these files individually with
dyna -i
, but when I try to load their concatenation I get this crash:The text was updated successfully, but these errors were encountered: