Advertisement
Guest User

DiscreteDelay error from Terry in nengo_dl

a guest
Jan 5th, 2022
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 3.19 KB | None | 0 0
  1. Traceback (most recent call last):
  2.   File "/home/justus/OneDrive/Projects/snn_mpc/learn_predictive_model.py", line 242, in <module>
  3.     main()
  4.   File "/home/justus/OneDrive/Projects/snn_mpc/learn_predictive_model.py", line 88, in main
  5.     test_output = evaluate(
  6.   File "/home/justus/OneDrive/Projects/snn_mpc/learn_predictive_model.py", line 232, in evaluate
  7.     output = sim.evaluate(inputs, targets)
  8.   File "/home/justus/anaconda3/envs/nengo/lib/python3.9/site-packages/nengo/utils/magic.py", line 181, in __call__
  9.     return self.wrapper(self.__wrapped__, self.instance, args, kwargs)
  10.   File "/home/justus/nengo-dl/nengo_dl/simulator.py", line 67, in require_open
  11.     return wrapped(*args, **kwargs)
  12.   File "/home/justus/nengo-dl/nengo_dl/simulator.py", line 904, in evaluate
  13.     return self._call_keras(
  14.   File "/home/justus/anaconda3/envs/nengo/lib/python3.9/site-packages/nengo/utils/magic.py", line 181, in __call__
  15.     return self.wrapper(self.__wrapped__, self.instance, args, kwargs)
  16.   File "/home/justus/nengo-dl/nengo_dl/simulator.py", line 50, in with_self
  17.     output = wrapped(*args, **kwargs)
  18.   File "/home/justus/nengo-dl/nengo_dl/simulator.py", line 1043, in _call_keras
  19.     outputs = getattr(self.keras_model, func_type)(**func_args)
  20.   File "/home/justus/anaconda3/envs/nengo/lib/python3.9/site-packages/tensorflow/python/keras/engine/training.py", line 1489, in evaluate
  21.     tmp_logs = self.test_function(iterator)
  22.   File "/home/justus/anaconda3/envs/nengo/lib/python3.9/site-packages/tensorflow/python/eager/def_function.py", line 889, in __call__
  23.     result = self._call(*args, **kwds)
  24.   File "/home/justus/anaconda3/envs/nengo/lib/python3.9/site-packages/tensorflow/python/eager/def_function.py", line 950, in _call
  25.     return self._stateless_fn(*args, **kwds)
  26.   File "/home/justus/anaconda3/envs/nengo/lib/python3.9/site-packages/tensorflow/python/eager/function.py", line 3023, in __call__
  27.     return graph_function._call_flat(
  28.   File "/home/justus/anaconda3/envs/nengo/lib/python3.9/site-packages/tensorflow/python/eager/function.py", line 1960, in _call_flat
  29.     return self._build_call_outputs(self._inference_function.call(
  30.   File "/home/justus/anaconda3/envs/nengo/lib/python3.9/site-packages/tensorflow/python/eager/function.py", line 591, in call
  31.     outputs = execute.execute(
  32.   File "/home/justus/anaconda3/envs/nengo/lib/python3.9/site-packages/tensorflow/python/eager/execute.py", line 59, in quick_execute
  33.     tensors = pywrap_tfe.TFE_Py_Execute(ctx._handle, device_name, op_name,
  34. tensorflow.python.framework.errors_impl.InternalError: 2 root error(s) found.
  35.   (0) Internal:  Blas xGEMM launch failed : a.shape=[1,600,12], b.shape=[1,12,32], m=600, n=32, k=12
  36.      [[{{node keras_model/TensorGraph/while/body/_1/keras_model/TensorGraph/while/iteration_0/DotIncBuilder/MatMul}}]]
  37.      [[keras_model/TensorGraph/while/exit/_172/_22]]
  38.   (1) Internal:  Blas xGEMM launch failed : a.shape=[1,600,12], b.shape=[1,12,32], m=600, n=32, k=12
  39.      [[{{node keras_model/TensorGraph/while/body/_1/keras_model/TensorGraph/while/iteration_0/DotIncBuilder/MatMul}}]]
  40. 0 successful operations.
  41. 0 derived errors ignored. [Op:__inference_test_function_3184]
  42.  
  43. Function call stack:
  44. test_function -> test_function
  45.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement