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

@@ -869,9 +869,9 @@ halfvec_mul(PG_FUNCTION_ARGS)
/*
* Quantize a half vector
*/
PGDLLEXPORT PG_FUNCTION_INFO_V1(halfvec_quantize_binary);
PGDLLEXPORT PG_FUNCTION_INFO_V1(halfvec_binary_quantize);
Datum
halfvec_quantize_binary(PG_FUNCTION_ARGS)
halfvec_binary_quantize(PG_FUNCTION_ARGS)
{
HalfVector *a = PG_GETARG_HALFVEC_P(0);
half *ax = a->x;