-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tao ad #130
Tao ad #130
Conversation
Codecov ReportPatch coverage:
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## computgraph #130 +/- ##
===============================================
+ Coverage 56.24% 59.73% +3.48%
===============================================
Files 55 55
Lines 3339 3340 +1
===============================================
+ Hits 1878 1995 +117
+ Misses 1461 1345 -116
☔ View full report in Codecov by Sentry. |
# Arguments: | ||
- `g::Graph`: graph for which to find the total number of operations. | ||
""" | ||
function totaloperation(g::Graph) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rename to count_operation?
src/computational_graph/eval.jl
Outdated
|
||
# #@inline eval(d::DiagramId) = error("eval for $d has not yet implemented!") | ||
# # | ||
function evalGraph!(g::Graph) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rename evalGraph! -> eval!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
passing an additional vector "leaf" which contains the leaf weight.
eval! should have the same behavior as the compiled function
Add front propagation Auto differentiation.
Add function that counts total number of "*" and "+" in a tree.