Skip to content

Commit

Permalink
add pgdiskann load config in frontend.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sheharyar570 committed Oct 25, 2024
1 parent d081997 commit 69ce9f4
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions vectordb_bench/frontend/config/dbCaseConfigs.py
Original file line number Diff line number Diff line change
Expand Up @@ -950,6 +950,12 @@ class CaseConfigInput(BaseModel):
CaseConfigParamInput_query_search_list_size,
]

PgDiskANNLoadConfig = [
CaseConfigParamInput_IndexType_PgDiskANN,
CaseConfigParamInput_max_neighbors,
CaseConfigParamInput_l_value_ib,
]

PgDiskANNPerformanceConfig = [
CaseConfigParamInput_IndexType_PgDiskANN,
CaseConfigParamInput_max_neighbors,
Expand Down Expand Up @@ -986,6 +992,7 @@ class CaseConfigInput(BaseModel):
CaseLabel.Performance: PgVectorScalePerformanceConfig,
},
DB.PgDiskANN: {
CaseLabel.Load: PgDiskANNLoadConfig,
CaseLabel.Performance: PgDiskANNPerformanceConfig,
},
}

0 comments on commit 69ce9f4

Please sign in to comment.