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
in devel the comments are gone (which inputs and outputs are used for each invoke call), also it is no longer visible which operation is called (fix by defining and using an enum into g_registration)
The text was updated successfully, but these errors were encountered:
Good point. I will probably need to put them into a different place (e.g. annotations on the arrays instead of on the code (which will probably be gone soon))
After implementing the reworked code I can only envision a comment with pseudo-code describing the network in human readable form:
E.g.
/* Inputs 10 (1,1)
0: 1 = QUANTIZE(10)
1: 4 = FULLY_CONNECTED(1,2,3)
2: 7 = FULLY_CONNECTED(4,5,6)
3: 0 = FULLY_CONNECTED(7,8,9)
4: 11 = DEQUANTIZE(0)
Outputs 11 (1.1) */
Do you think that this adds value to the generated file?
cpetig
changed the title
Annotations missing in devel
Add comments to help debugging/understanding the generated code (was: Annotations missing in devel)
Jul 13, 2020
in devel the comments are gone (which inputs and outputs are used for each invoke call), also it is no longer visible which operation is called (fix by defining and using an enum into g_registration)
The text was updated successfully, but these errors were encountered: