summaryrefslogtreecommitdiffstats
path: root/benchmarks/include
Commit message (Collapse)AuthorAgeFilesLines
* working commit (temporary progress, doesn't build)Douglas Rumbaugh2025-04-051-5/+5
|
* Added uniform data generator as file optionDouglas Rumbaugh2025-02-201-215/+240
|
* Background compaction stuffDouglas Rumbaugh2025-02-061-2/+10
|
* Additional layout policies + more flexibility in buffer flushingDouglas Rumbaugh2025-01-161-1/+4
|
* Ajusted progress bar in insert benchmarkDouglas Rumbaugh2025-01-071-1/+0
|
* Fixed the reversed scale factor and buffer size on benchmarksDouglas B. Rumbaugh2024-12-231-0/+1
|
* Began migrating benchmarks over to new interfaceDouglas Rumbaugh2024-12-231-2/+20
|
* Adjusted query result interfacesHEADmasterDouglas B. Rumbaugh2024-12-061-4/+2
| | | | | | | Now, the vector<> is part of the user-defined type, not required by the framework. This should allow for more flexibility in either using alternative containers, or for more sensible implementations of queries with single value results (like range count).
* Warning fixesDouglas B. Rumbaugh2024-12-061-9/+15
|
* Interface update (#5)Douglas B. Rumbaugh2024-12-062-78/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Query Interface Adjustments/Refactoring Began the process of adjusting the query interface (and also the shard interface, to a lesser degree) to better accommodate the user. In particular the following changes have been made, 1. The number of necessary template arguments for the query type has been drastically reduced, while also removing the void pointers and manual delete functions from the interface. This was accomplished by requiring many of the sub-types associated with a query (parameters, etc.) to be nested inside the main query class, and by forcing the SHARD type to expose its associated record type. 2. User-defined query return types are now supported. Queries no longer are required to return strictly sets of records. Instead, the query now has LocalResultType and ResultType template parameters (which can be defaulted using a typedef in the Query type itself), allowing much more flexibility. Note that, at least for the short term, the LocalResultType must still expose the same is_deleted/is_tombstone interface as a Wrapped<R> used to, as this is currently needed for delete filtering. A better approach to this is, hopefully, forthcoming. 3. Updated the ISAMTree.h shard and rangequery.h query to use the new interfaces, and adjusted the associated unit tests as well. 4. Dropped the unnecessary "get_data()" function from the ShardInterface concept. 5. Dropped the need to specify a record type in the ShardInterface concept. This is now handled using a required Shard::RECORD member of the Shard class itself, which should expose the name of the record type. * Updates to framework to support new Query/Shard interfaces Pretty extensive adjustments to the framework, particularly to the templates themselves, along with some type-renaming work, to support the new query and shard interfaces. Adjusted the external query interface to take an rvalue reference, rather than a pointer, to the query parameters. * Removed framework-level delete filtering This was causing some issues with the new query interface, and should probably be reworked anyway, so I'm temporarily (TM) removing the feature. * Updated benchmarks + remaining code for new interface
* Added benchmarks for BigANNDouglas Rumbaugh2024-05-093-5/+103
|
* FST benchmarksDouglas Rumbaugh2024-05-031-1/+44
|
* TS BSM AdjustmentsDouglas Rumbaugh2024-05-012-7/+63
|
* File Util: fixed the reading in of undesired queriesDouglas Rumbaugh2024-05-011-1/+1
|
* Added error checks to file opening, and generalized key typesDouglas Rumbaugh2024-05-011-4/+36
|
* Added VPTree BSM benchmarkDouglas Rumbaugh2024-04-303-2/+357
|
* BSMTriespline: updated to use a rangecount queryDouglas Rumbaugh2024-04-231-4/+6
|
* benchmarks/file_util: removed dependency on framework in prep for ALEXDouglas Rumbaugh2024-04-231-4/+1
|
* Benchmark update+reorganizationDouglas Rumbaugh2024-04-222-14/+60
| | | | The Alex benchmark isn't updated yet.
* Added plain BSM and MDSP BSM benchmarkDouglas Rumbaugh2024-04-223-2/+171
|
* Properly implemented support for iteratively decomposable problemsDouglas Rumbaugh2024-04-191-6/+0
|
* Fixed some benchmarking bugsDouglas Rumbaugh2024-04-191-0/+6
|
* Benchmark updatesDouglas Rumbaugh2024-04-191-1/+17
|
* Updates for build on OpenBSDDouglas B. Rumbaugh2024-03-252-1/+10
| | | | | | | | | Necessary updates to get the codebase building under OpenBSD 7.5 with clang. This is a minimal set of changes to get building to work, which includes disabling several things that aren't directly compatable. More work will be necessary to get full functionality. In particular, Triespline, PGM, and the reference M-tree do not currently build on OpenBSD with clang due to GNU dependencies or other gcc specific features.
* Benchmark updatesDouglas Rumbaugh2024-02-235-285/+392
|
* BTree benchmarkDouglas Rumbaugh2024-01-311-2/+2
|
* Updated throughput bench to use SOSDDouglas Rumbaugh2024-01-311-0/+14
|
* Benchmarking updatesDouglas Rumbaugh2024-01-304-367/+33
|
* PGM-based Point Lookup benchmarksDouglas Rumbaugh2023-07-272-0/+21
|
* ALEX Benchmarking: added benchmark for ALEXDouglas Rumbaugh2023-07-252-235/+243
|
* Benchmarks: mtree and vptree benchmark updatesDouglas Rumbaugh2023-07-252-3/+15
| | | | | | | | | Note: cosine similarity doesn't seem to work for VPTree--I don't think that it is actually a metric, upon further research. At the very least I can't find anyone claiming it is, and I've found several people claiming it isn't. On testing with the Word2Vec data, Euclidean distance works insofar as the M-Tree and VPTree return the same KNN results for test queries, whereas Cosine Similarity does not work.
* M-Tree benchmarksDouglas Rumbaugh2023-07-242-4/+36
|
* Cosine Similarity TypeDouglas Rumbaugh2023-07-241-1/+1
|
* ISAM IRS query bugfixesDouglas Rumbaugh2023-07-241-1/+1
|
* Benchmarking: Added utility functions for VPTree/KNNDouglas Rumbaugh2023-07-231-4/+67
|
* BTree-based baselines for IRS and Range queriesDouglas Rumbaugh2023-07-232-3/+34
|
* Benchmarking updatesDouglas Rumbaugh2023-07-232-12/+36
|
* Benchmark updatesDouglas Rumbaugh2023-07-031-2/+2
|
* BugfixesDouglas Rumbaugh2023-07-031-0/+2
|
* Benchmark output format adjustmentsDouglas Rumbaugh2023-06-261-1/+1
| | | | | | | | | | Benchmarks should now return, insert throughput index size (not counting data arrays) sampling latency static index size static sampling latency
* Merge branch 'master' of github.com:dbrumbaugh/dynamic-extensionDouglas Rumbaugh2023-06-261-1/+1
|\
| * Benchmark updatesDouglas Rumbaugh2023-06-261-1/+1
| |
* | Added static benchmarkingDouglas Rumbaugh2023-06-261-0/+41
|/
* Benchmark refactoring/cleanupDouglas Rumbaugh2023-06-132-11/+79
|
* Benchmark refactoringDouglas Rumbaugh2023-06-132-0/+303