mirror of
https://github.com/pgvector/pgvector.git
synced 2026-07-02 10:40:57 +08:00
Renamed quantize_binary to binary_quantize
This commit is contained in:
@@ -873,9 +873,9 @@ vector_mul(PG_FUNCTION_ARGS)
|
||||
/*
|
||||
* Quantize a vector
|
||||
*/
|
||||
PGDLLEXPORT PG_FUNCTION_INFO_V1(quantize_binary);
|
||||
PGDLLEXPORT PG_FUNCTION_INFO_V1(binary_quantize);
|
||||
Datum
|
||||
quantize_binary(PG_FUNCTION_ARGS)
|
||||
binary_quantize(PG_FUNCTION_ARGS)
|
||||
{
|
||||
Vector *a = PG_GETARG_VECTOR_P(0);
|
||||
float *ax = a->x;
|
||||
|
||||
Reference in New Issue
Block a user