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
collect latest work of techniques of subgraph query
analyze and find out which benchmark to use
analyze and find out if TCR can support all required operators
Implement cypher on TCR [7/15]
design framework [4/8]
implement graph storage [4/23]
implement physical operators [5/23]
implement hand-optimized query plan towards LSQB or LDBC-SNB-IC or LDBC-SNB-BI [6/7] *
optimize implementation and hand-optimized query plan [7/7] *
finish implementation of cypher on TCR [7/15]
Write SIGMOD paper and do experiments [10/7]
finish outline [8/7]
finish design experiments [8/7]
finish first draft [9/7]
finish experiments [10/1]
finish revision [10/7]
SIGMOD paper submission [10/15]
VLDB paper submission [2024/1/1] (if not accepted by SIGMOD)
we choose to implement LDBC-SNB-BI and are working on these now (6/25)
Progress 1-4
β Finished
paper submitted to VLDB.
Progress 12-7
β Finished
finished the first round of paper modification.
π· In Progress
modifying the paper.
learning PyTorch internals.
π To Do
to make the paper ready for submission.
Progress 12-7
β Finished
finished the first draft of paper.
π· In Progress
modifying the paper.
learning PyTorch internals.
π To Do
to do remaining experiments like Performance Per Dollar test.
Progress 11-23
β Finished
finished most of experiments.
π· In Progress
writing the paper.
learning PyTorch internals.
π To Do
to do remaining experiments like Performance Per Dollar test.
Progress 11-9
β Finished
finished implementing all currently supported LDBC BI queries.
π· In Progress
writing the paper.
learning PyTorch internals.
doing ablation study
π To Do
to do scalability test.
to do other experiments like query time breakdown and Performance Per Dollar test.
Progress 11-2
β Finished
finished and improved the implementation of TreeTable, a class bringing in the graph-ralated optimization.
conducted comparison experiments on implemented LDBC BI benchmark queries.
conducted comparison experiments on LSQB benchmark queries.
π· In Progress
writing the paper.
implementing remaining LDBC BI queries in our system.
learning PyTorch internals.
π To Do
to do ablation study.
to do scalability test.
to do other experiments like query time breakdown and Performance Per Dollar test.
Progress 10-5
β Finished
finished the draft of the main part of paper.
implemented the expand_tree method of TreeTable.
π· In Progress
writing the paper.
implementing the graph-related optimisation method into our system.
implementing other LDBC BI queries using new techniques.
implementing remaining LDBC BI queries in our system.
learning PyTorch internals.
π To Do
to implement expand_tree and TreeTable and test the performance of implemented graph-related optimisation.
to learn about more join methods, like zip join and radix join.
to think about the way we systematically test the performance of PyTorch Tensor operators on CPU and GPU.
to think about the possibility of making CPU and GPU cooperate better.
Progress 9-21
β Finished
designed the preliminary structure of the paper and started writing the paper.
re-implemented LDBC BI Q9, Q11 and Q12 using EdgeTable and PathTable, in addition to Q1-Q8.
π· In Progress
writing the paper.
implementing the graph-related optimisation method into our system.
implementing other LDBC BI queries using new techniques.
implementing remaining LDBC BI queries in our system.
learning PyTorch internals.
π To Do
to implement expand_tree and TreeTable and test the performance of implemented graph-related optimisation.
to learn about more join methods, like zip join and radix join.
to think about the way we systematically test the performance of PyTorch Tensor operators on CPU and GPU.
to think about the possibility of making CPU and GPU cooperate better.
Progress 9-14
β Finished
improved and further completed the implementation of PathTable and EdgeTable.
re-implemented LDBC BI Q1 to Q8 using EdgeTable and PathTable, and compared the performance with previous implementation.
π· In Progress
implementing the graph-related optimisation method into our system.
implementing other LDBC BI queries using new techniques.
implementing remaining LDBC BI queries in our system.
learning PyTorch internals.
π To Do
to implement expand_tree and TreeTable and test the performance of implemented graph-related optimisation.
to learn about more join methods, like zip join and radix join.
to think about the way we systematically test the performance of PyTorch Tensor operators on CPU and GPU.
to think about the possibility of making CPU and GPU cooperate better.
Progress 9-7
β Finished
implemented get_neighbors in EdgeTable.
implemented select, project, aggregate, distinct and sort in PathTable.
re-implemented LDBC BI Q3 and Q4 using EdgeTable and PathTable, and compared the performance with previous implementation.
π· In Progress
implementing the graph-related optimisation method into our system.
implementing other LDBC BI queries in addition to Q3 and Q4 using new techniques.
implementing remaining LDBC BI queries in our system.
learning PyTorch internals.
π To Do
to implement expand_tree and TreeTable and test the performance of implemented graph-related optimisation.
to learn about more join methods, like zip join and radix join.
to think about the way we systematically test the performance of PyTorch Tensor operators on CPU and GPU.
to think about the possibility of making CPU and GPU cooperate better.
Progress 8-31
β Finished
implemented node renumbering and EdgeTable preprocessing.
implemented expand_path in PathTable and closure in EdgeTable.
π· In Progress
implementing the graph-related optimisation method into our system.
implementing remaining LDBC BI queries in our system.
learning PyTorch internals.
π To Do
to implement expand_tree and test the performance of implemented graph-related optimisation.
to learn about more join methods, like zip join and radix join.
to think about the way we systematically test the performance of PyTorch Tensor operators on CPU and GPU.
to think about the possibility of making CPU and GPU cooperate better.
Progress 8-17
β Finished
profiled our running code and found that torch.bincount takes too much time on GPU in Q3 and Q4, while torch.unique and torch.sort are relatively slow on CPU.
designed a graph-related optimisation method for our system, in which we compress the edge table and intermediate join results.
π· In Progress
implementing the graph-related optimisation method into our system.
implementing remaining LDBC BI queries in our system.
learning PyTorch internals.
π To Do
to learn about more join methods, like zip join and radix join.
to think about the way we systematically test the performance of PyTorch Tensor operators on CPU and GPU.
to think about the possibility of making CPU and GPU cooperate better.
Progress 8-3
β Finished
tested the effects of optimizations implemented last week on different queries and different scale factors.
π· In Progress
profiling our running code to see which operators take more time and trying to analyze the reason.
implementing remaining LDBC BI queries in our system.
learning PyTorch internals.
π To Do
to think about the possibility of making CPU and GPU cooperate better.
to add graph-specific optimisations into our system.
Progress 7-27
β Finished
implemented some basic optimisations like merging filter and project, merging join and project.
π· In Progress
profiling our running code to see which operators take more time and trying to analyze the reason.
implementing remaining LDBC BI queries in our system.
learning PyTorch internals.
π To Do
to think about the possibility of making CPU and GPU cooperate better.
to add graph-specific optimisations into our system.
Progress 7-20
β Finished
built PyTorch from source code and set up the debugging environment.
learned the basic knowledge of TorchScript.
looked into the source code of PyTorch Geometric.
π· In Progress
implementing LDBC BI queries Q16 and Q17 in our system.
learning Pytorch internals.
π To Do
to profile our running code and to see why some operators take much more time.
Progress 7-13
β Finished
implemented LDBI BI Q11, Q12, Q13, Q14, Q18.
finished the script that automatically runs all LDBC BI queries with pre-generated parameters in one time.
run LDBI BI queries on our system, TigerGraph and Neo4j with the scale factor of 10.
π· In Progress
implementing LDBC BI queries Q16 and Q17 in our system.
learning PyTorch internals.
π To Do
to learn more about PyTorch Geometric.
Progress 7-6
β Finished
tried the scale factors of 10 and 100, but failed.
read the paper Columnar Storage and List-based Processing for Graph Database Management Systems.
implemented LDBC BI queries Q1 to Q10 (except for Q10, which involves shortest path computation).
π· In Progress
implementing LDBC BI queries Q11 to Q20 in our system.
π To Do
to write a script that can automatically run our system on the LDBC BI queries and output the results to files in some format.
to learn more about PyTorch Geometric.
Progress 6-29
β Finished
run LDBC BI queries on Neo4j.
made our system support string filtering.
fixed some logical bugs about null value processing.
π· In Progress
implementing LDBC BI queries in addition to Q1, Q5 and Q6 in our system.
π To Do
to try running our system on the datasets of scale-factor 10 and 100.
to read the VLDB 2021 paper Columnar Storage and List-based Processing for Graph Database Management Systems.
to learn more about PyTorch Geometric.
Progress 6-21
β Finished
learned the syntax of GSQL (for TigerGraph) and Cypher (for Neo4j).
run LDBC SNB BI queries on TigerGraph.
π· In Progress
implementing LDBC BI queries in addition to Q1, Q5 and Q6 in our system.