I can't understand what the {built-in method load}
output in cProfile means.
I know that question was already asked but i saw no real answer. I couldn't find out by myself either.
The executed script (Go_IA_vs_IA.py) imports functions from Go_settings.py and use them. You can find them here if it can be any useful for you : https://github.com/Ashargin/Go
Here is what I obtain :
Ordered by: internal time
ncalls tottime percall cumtime percall filename:lineno(function)
25 3.793 0.152 3.793 0.152 {built-in method load}
1 0.071 0.071 3.938 3.938 Go_IA_vs_IA.py:1(<module>)
28481/205 0.027 0.000 0.061 0.000 copy.py:137(deepcopy)
5930/918 0.010 0.000 0.046 0.000 copy.py:215(_deepcopy_list)
... more lines
Obviously I want to optimize that line as it contributes for 96% of the time spent.