Skip to content

Commit

Permalink
Merge branch 'aerospike'
Browse files Browse the repository at this point in the history
  • Loading branch information
randersenYB committed Jun 17, 2024
2 parents 3bb0474 + 89e0704 commit ab7e39f
Show file tree
Hide file tree
Showing 21 changed files with 4,211 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
matrix:
dataset: [random-xs-20-angular]
library:
- aerospike
- annoy
- balltree
- bruteforce
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ results/*
venv

.idea
aerospike/data/*.hdf5
107 changes: 107 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python Debugger: ann-benchmarks-aerospike",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/run.py",
"cwd": "${workspaceFolder}",
"args": ["--algorithm", "aerospike",
"--max-n-algorithms", "4",
"--runs", "5",
"--dataset", "random-xs-20-angular",
"--local",
"--force",
"--timeout", "300"],
"console": "integratedTerminal"
},
{
"name": "Python Debugger: ann-benchmarks-aerospike Glove Angular",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/run.py",
"cwd": "${workspaceFolder}",
"args": ["--algorithm", "aerospike",
"--max-n-algorithms", "4",
"--runs", "5",
"--dataset", "glove-100-angular",
"--local",
"--force",
"--timeout", "300"],
"console": "integratedTerminal"
},
{
"name": "Python Debugger: ann-benchmarks-aerospike Euclidean Local",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/run.py",
"cwd": "${workspaceFolder}",
"args": ["--algorithm", "aerospike",
"--max-n-algorithms", "5",
"--dataset", "gist-960-euclidean",
"--local",
"--force",
"--timeout", "7200"],
"console": "integratedTerminal"
},
{
"name": "Python Debugger: ann-benchmarks-aerospike Docker",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/run.py",
"cwd": "${workspaceFolder}",
"args": ["--algorithm", "aerospike",
"--max-n-algorithms", "5",
"--force",
"--timeout", "7200"],
"console": "integratedTerminal"
},
{
"name": "Python Debugger: hdf_import",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/aerospike/hdf_import.py",
"cwd": "${workspaceFolder}/aerospike",
"args": [
"--dataset", "random-xs-20-angular",
"--concurrency", "5000",
"--idxdrop",
"--logfile", "./hdfimport.log",
"--loglevel", "DEBUG"
],
"console": "integratedTerminal"
},
{
"name": "Python Debugger: hdf_import glove",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/aerospike/hdf_import.py",
"cwd": "${workspaceFolder}/aerospike",
"args": [
"--dataset", "glove-100-angular",
"--concurrency", "10000",
"--logfile", "./hdfimport.log",
"--idxdrop",
"--loglevel", "DEBUG"
],
"console": "integratedTerminal"
},
{
"name": "Python Debugger: hdf_query",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/aerospike/hdf_query.py",
"cwd": "${workspaceFolder}/aerospike",
"args": [
"--dataset", "random-xs-20-angular",
"--logfile", "./hdfquery.log",
"-r", "10"
],
"console": "integratedTerminal"
},
]
}
Loading

0 comments on commit ab7e39f

Please sign in to comment.