From 7dd934913d9b41f1209ca676b46d4499cbef4e3e Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Fri, 11 Feb 2022 15:51:14 -0800 Subject: [PATCH] Improved output [skip ci] --- src/ivfflat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ivfflat.h b/src/ivfflat.h index 21a9f08..5d8535c 100644 --- a/src/ivfflat.h +++ b/src/ivfflat.h @@ -56,7 +56,7 @@ (code); \ INSTR_TIME_SET_CURRENT(duration); \ INSTR_TIME_SUBTRACT(duration, start); \ - elog(INFO, "%s: %f ms", name, INSTR_TIME_GET_MILLISEC(duration)); \ + elog(INFO, "%s: %.3f ms", name, INSTR_TIME_GET_MILLISEC(duration)); \ } while (0) #else #define Bench(name, code) (code)