Skip to content
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

Index analysis refactor #2 #1785

Merged
merged 9 commits into from
Dec 6, 2020

Conversation

SamArch27
Copy link
Collaborator

During the initial implementation of indexed inequalities, we added all possible indexable inequalities into the RAM with MakeIndexTransformer and then later when they weren't indexable we discharged the indexed inequalities from the RAM back into filters with IndexedInequalityTransformer. This approach is not very good and we can do much better.

The problem with this approach is that:

  1. It massively overcomplicates the RAM because in between the MakeIndexTransformer and IndexedInequalityTransformer the program wasn't in an executable state.
  2. If one wanted to disable the IndexedInequalityTransformer, then the program would crash (bad!).
  3. It introduces extra passes into the compilation phase because of the extra complexity of adding and then removing inequalities to be indexed.
  4. It's harder to maintain because the logic is overly complicated.
  5. The solvers within IndexAnalysis can't be pure because it must retain the state of the discharged attributes for later querying.

In this PR I have eliminated the IndexedInequalityTransformer and instead ensured that inequalities which cannot be indexed are never indexed in the first place by simply not adding them in MakeIndexTransformer. I also cleaned up my section of the MakeIndexTransformer to be significantly more readable.

I also added a TODO where I tagged myself to ensure that if we do later want to support data structures with multiple attributes w/inequalities that we can quickly fix the code to support this.

In essence, the logic is simplified from before and nicely refactored and all contained within MakeIndexTransformer, allowing for subsequent PRs to make the IndexAnalysis solvers stateless.

@codecov
Copy link

codecov bot commented Dec 5, 2020

Codecov Report

Merging #1785 (9442d65) into master (c07b5dc) will increase coverage by 0.01%.
The diff coverage is 81.51%.

Impacted file tree graph

@@            Coverage Diff             @@
##           master    #1785      +/-   ##
==========================================
+ Coverage   80.58%   80.59%   +0.01%     
==========================================
  Files         398      396       -2     
  Lines       25137    25060      -77     
==========================================
- Hits        20257    20198      -59     
+ Misses       4880     4862      -18     
Flag Coverage Δ
full ?

Flags with carried forward coverage won't be shown. Click here to find out more.

Impacted Files Coverage Δ
src/ram/analysis/Index.h 95.29% <ø> (-0.27%) ⬇️
src/ram/transform/MakeIndex.h 100.00% <ø> (ø)
src/ram/transform/MakeIndex.cpp 85.23% <79.16%> (+5.01%) ⬆️
src/ram/analysis/Index.cpp 96.85% <81.81%> (+0.59%) ⬆️
src/include/souffle/BinaryConstraintOps.h 63.21% <100.00%> (-3.86%) ⬇️
src/main.cpp 70.64% <100.00%> (ø)
src/ram/True.h 50.00% <0.00%> (-50.00%) ⬇️
src/include/souffle/datastructure/Brie.h 93.02% <0.00%> (+0.48%) ⬆️
... and 2 more

@b-scholz b-scholz merged commit 42e99c3 into souffle-lang:master Dec 6, 2020
@SamArch27 SamArch27 mentioned this pull request Dec 19, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants