-
Notifications
You must be signed in to change notification settings - Fork 9
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
Measure ScopeLink, GetLink, BindLink, DualLink performance #8
Comments
Three or more distinct measurements are needed:
|
Ensure that relevant benchmarks are added to cover: |
Merge opencog -> singnet
Scope links are probably the most expensive link types to construct and insert in the AtomSpace. First calculating the hash value during construction is more expensive than for non scope links. Scope links like
PatternLink
,BindLink
, etc, are even more expensive to construct so. Then inserting them to the AtomSpace also requires more computation like testing for alpha-equivalence.query_benchmark
does support scope links but mostly for querying, not construction and insertion...All that to say that scope links really should be supported by
atomspace_bm
(if that doesn't get replaced by something else soon).The text was updated successfully, but these errors were encountered: