Renamed quantize_binary to binary_quantize

This commit is contained in:
Andrew Kane
2024-04-14 16:57:28 -07:00
parent 3e48a3f69d
commit fe9a9a0d0f
10 changed files with 28 additions and 28 deletions

View File

@@ -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;