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
I'm setting up ford in my fortran project. The html documentation is getting produced fine. I have set graph: true to produce dependency graphs, but they aren't getting rendered well in the html output. I tried setting graph_dir: to save copies of graphs and I got the below warning and error.
/home/tkoskela/python_envs/conquest/lib/python3.10/site-packages/ford/graphs.py:1483: TqdmWarning: Iterable length 1112 > 1000 but `chunksize` is not set. This may seriously degrade multiprocess performance. Set `chunksize=1` or more.
process_map(
Writing graphs: 0%| | 0/1112 [00:00<?, ?it/s]
concurrent.futures.process._RemoteTraceback:
"""
Traceback (most recent call last):
File "/usr/lib/python3.10/multiprocessing/queues.py", line 244, in _feed
obj = _ForkingPickler.dumps(obj)
File "/usr/lib/python3.10/multiprocessing/reduction.py", line 51, in dumps
cls(buf, protocol).dump(obj)
TypeError: cannot pickle '_io.TextIOWrapper' object
"""
I'm using ford version 7.0.3 and Python 3.10.12
The text was updated successfully, but these errors were encountered:
I'm trying to pickle objects that I generate in a script to process them afterwards, but I get this error:
File "<ipython-input-2-0f716e86ecd3>", line 1, in <module>
pickle.dump(
I'm setting up ford in my fortran project. The html documentation is getting produced fine. I have set
graph: true
to produce dependency graphs, but they aren't getting rendered well in the html output. I tried settinggraph_dir:
to save copies of graphs and I got the below warning and error.I'm using
ford version 7.0.3
andPython 3.10.12
The text was updated successfully, but these errors were encountered: