mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-05 15:55:57 +03:00
Store the fp-speed-1.c test program used to measure relative performance of
SQLite versus the standard library, in the test/ directory. A header comment explains how to use it. FossilOrigin-Name: eaff376277edceb043e9aac9d2df3e1157f576605508733be8a0a0aa4d720e1d
This commit is contained in:
11
manifest
11
manifest
@@ -1,5 +1,5 @@
|
|||||||
C Add\sthe\s--nolongdouble\soption\sto\sspeedtest1.c.
|
C Store\sthe\sfp-speed-1.c\stest\sprogram\sused\sto\smeasure\srelative\sperformance\sof\nSQLite\sversus\sthe\sstandard\slibrary,\sin\sthe\stest/\sdirectory.\s\sA\sheader\scomment\nexplains\show\sto\suse\sit.
|
||||||
D 2023-07-03T15:11:28.795
|
D 2023-07-03T15:30:50.934
|
||||||
F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1
|
F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1
|
||||||
F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea
|
F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea
|
||||||
F LICENSE.md df5091916dbb40e6e9686186587125e1b2ff51f022cc334e886c19a0e9982724
|
F LICENSE.md df5091916dbb40e6e9686186587125e1b2ff51f022cc334e886c19a0e9982724
|
||||||
@@ -1014,6 +1014,7 @@ F test/fkey8.test 51deda7f1a1448bca95875e4a6e1a3a75b4bd7215e924e845bd60de60e4d84
|
|||||||
F test/fkey_malloc.test 594a7ea1fbab553c036c70813cd8bd9407d63749
|
F test/fkey_malloc.test 594a7ea1fbab553c036c70813cd8bd9407d63749
|
||||||
F test/fordelete.test ba98f14446b310f9c9d935b97ec748753d0144a28b356ba30d1f4f6958fdde5c
|
F test/fordelete.test ba98f14446b310f9c9d935b97ec748753d0144a28b356ba30d1f4f6958fdde5c
|
||||||
F test/format4.test eeae341953db8b6bda7f549044797c3278a6cc345d11ada81471671b654f8ef4
|
F test/format4.test eeae341953db8b6bda7f549044797c3278a6cc345d11ada81471671b654f8ef4
|
||||||
|
F test/fp-speed-1.c ca95152d579530c967240ead1387dc1208052d310dfa22bc9ebded56d4e6c026
|
||||||
F test/fpconv1.test d5d8aa0c427533006c112fb1957cdd1ea68c1d0709470dabb9ca02c2e4c06ad8
|
F test/fpconv1.test d5d8aa0c427533006c112fb1957cdd1ea68c1d0709470dabb9ca02c2e4c06ad8
|
||||||
F test/fts-9fd058691.test 78b887e30ae6816df0e1fed6259de4b5a64ad33c
|
F test/fts-9fd058691.test 78b887e30ae6816df0e1fed6259de4b5a64ad33c
|
||||||
F test/fts3.test 672a040ea57036fb4b6fdc09027c18d7d24ab654
|
F test/fts3.test 672a040ea57036fb4b6fdc09027c18d7d24ab654
|
||||||
@@ -2042,8 +2043,8 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93
|
|||||||
F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
|
F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
|
||||||
F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
|
F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
|
||||||
F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
|
F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
|
||||||
P 32befb224b254639e756fd493f300507ff60c5222e00a7338dbcd39140133964
|
P 6bf6018a00d61c5f0e53b37b00befaf5ad1d85323f41cf0cea25d8c6c1017096
|
||||||
R c8e7dd74f6b9c42320f5944043a97c25
|
R ef72dab00177aafb299a3d17bab4eff5
|
||||||
U drh
|
U drh
|
||||||
Z 6df861edb8bc9863ba30116d69bbe800
|
Z b2aa398ed798c317f62bc01949c71c6b
|
||||||
# Remove this line to create a well-formed Fossil manifest.
|
# Remove this line to create a well-formed Fossil manifest.
|
||||||
|
@@ -1 +1 @@
|
|||||||
6bf6018a00d61c5f0e53b37b00befaf5ad1d85323f41cf0cea25d8c6c1017096
|
eaff376277edceb043e9aac9d2df3e1157f576605508733be8a0a0aa4d720e1d
|
164
test/fp-speed-1.c
Normal file
164
test/fp-speed-1.c
Normal file
@@ -0,0 +1,164 @@
|
|||||||
|
/*
|
||||||
|
** Performance testing of floating-point binary-to-decimal conversion for
|
||||||
|
** SQLite versus the standard library.
|
||||||
|
**
|
||||||
|
** To compile:
|
||||||
|
**
|
||||||
|
** make sqlite3.c
|
||||||
|
** gcc -Os -c sqlite3.c
|
||||||
|
** gcc -I. -Os test/fp-speed-1.c sqlite3.o -ldl -lm -lpthread
|
||||||
|
**
|
||||||
|
** To run the test:
|
||||||
|
**
|
||||||
|
** time ./a.out 0 10000000 <-- standard library
|
||||||
|
** time ./a.out 1 10000000 <-- SQLite
|
||||||
|
** time ./a.out 2 10000000 <-- SQLite with long-double disabled
|
||||||
|
*/
|
||||||
|
static double aVal[] = {
|
||||||
|
-1.0163830486285643089e+063,
|
||||||
|
+0.0049243807391586981e-019,
|
||||||
|
+7.3818732407343994867e-095,
|
||||||
|
+7.0678595219225717143e+000,
|
||||||
|
+9.2807266319850025655e+120,
|
||||||
|
+5.8871050861933394663e+135,
|
||||||
|
-2.2998023621259662805e-168,
|
||||||
|
-1.5903581924910847482e+181,
|
||||||
|
+2.4313441816844978216e-001,
|
||||||
|
-3.8290987328945399091e-147,
|
||||||
|
+1.8787914062744001349e-009,
|
||||||
|
+0.7270653560487146653e-014,
|
||||||
|
+0.0639577697913183665e+107,
|
||||||
|
+5.2292338879315861930e-103,
|
||||||
|
+6.3747682672872231319e-021,
|
||||||
|
+8.6972339538329106984e-129,
|
||||||
|
-9.5074486051597691937e-026,
|
||||||
|
-8.6480257845368753018e-005,
|
||||||
|
-3.5657595775797470332e+017,
|
||||||
|
-7.8323106179731761351e+161,
|
||||||
|
+7.7813875274120800372e+077,
|
||||||
|
-1.8739718928360196596e-050,
|
||||||
|
+8.6898145915593357218e-051,
|
||||||
|
+6.0566766359877837871e+002,
|
||||||
|
+4.1703379217148160678e+199,
|
||||||
|
+2.1283871288746651560e+150,
|
||||||
|
-6.8395236083891810637e+128,
|
||||||
|
-6.2114299763939529155e-147,
|
||||||
|
-2.0753525742614637350e-149,
|
||||||
|
+5.8727459803944290257e-007,
|
||||||
|
+8.5888991062002101817e+010,
|
||||||
|
+6.8624461031355917632e+026,
|
||||||
|
-3.3053986756670905167e-075,
|
||||||
|
-4.3596843152763444945e-108,
|
||||||
|
+0.0834139520104099673e+098,
|
||||||
|
-8.8581986548904222440e-192,
|
||||||
|
-3.6622095428727698202e+038,
|
||||||
|
-6.6965852297025063260e+005,
|
||||||
|
+1.8204169347406488441e-054,
|
||||||
|
+6.5234508038649000384e-065,
|
||||||
|
+1.5923006018219011453e+083,
|
||||||
|
+1.7362555291656389480e+018,
|
||||||
|
+7.2875431976854785882e+160,
|
||||||
|
+1.2835880105958926748e-146,
|
||||||
|
+8.0516253320320819420e-113,
|
||||||
|
+6.6324633399381145440e-030,
|
||||||
|
-1.7126500070280062058e-149,
|
||||||
|
+1.6995738341583712335e+042,
|
||||||
|
+7.6048766923738663725e-112,
|
||||||
|
+0.6159117235449455043e-004,
|
||||||
|
+5.7544894355415943289e-135,
|
||||||
|
+8.2970228592690581890e-023,
|
||||||
|
-6.5531925360163067447e+020,
|
||||||
|
+5.8321334606187030050e+120,
|
||||||
|
+5.6557166509571891727e+095,
|
||||||
|
+0.3322789708438408704e-114,
|
||||||
|
-7.1210648776698686623e-050,
|
||||||
|
-9.6721262526706343301e+179,
|
||||||
|
-3.4583916571377395084e-106,
|
||||||
|
+4.7896094323214750793e-172,
|
||||||
|
-9.6926028040004137875e-056,
|
||||||
|
+7.0683848275381385483e-198,
|
||||||
|
-5.2970114182162961964e-007,
|
||||||
|
-4.4287021200905393271e-170,
|
||||||
|
+0.0728891155732808799e-189,
|
||||||
|
-9.1855462025879447465e+175,
|
||||||
|
+3.7294126234131007796e+015,
|
||||||
|
+2.6857421882792719241e+003,
|
||||||
|
-4.7070607333624685339e+039,
|
||||||
|
+7.2175820768279334274e+136,
|
||||||
|
-8.3678412534261163481e-115,
|
||||||
|
+2.2174844304241822163e+019,
|
||||||
|
+0.1949824588606861016e+112,
|
||||||
|
-9.7334052955672071912e+151,
|
||||||
|
-9.7793887766936999879e-142,
|
||||||
|
-5.1561164587416931561e+139,
|
||||||
|
-7.5048993577765174789e-022,
|
||||||
|
+7.3556076568687784568e+107,
|
||||||
|
-5.0681628575533599865e-144,
|
||||||
|
+1.5209705642027747811e+165,
|
||||||
|
-7.5989782535048296040e-101,
|
||||||
|
+1.3654137203389775871e-016,
|
||||||
|
-1.6441720554651372066e+087,
|
||||||
|
-4.9042433196141125923e+000,
|
||||||
|
-7.7063611961649130777e+118,
|
||||||
|
+0.1699427460930766201e+174,
|
||||||
|
+8.3374317849572216870e-145,
|
||||||
|
-5.2355330480469580072e+081,
|
||||||
|
-3.8510045942194147919e+141,
|
||||||
|
-6.3513622544326339887e-147,
|
||||||
|
+2.3869303484454428988e+049,
|
||||||
|
+3.8352715871620360268e-165,
|
||||||
|
-3.1263120493136887902e+035,
|
||||||
|
-5.5794797002556490823e+051,
|
||||||
|
-8.8109874479595604379e+142,
|
||||||
|
-4.3727360120203216922e+070,
|
||||||
|
-3.1109951189668539974e+170,
|
||||||
|
-9.4841878031704268232e+011,
|
||||||
|
-3.7398451668304407277e+067,
|
||||||
|
+4.8984042008915959963e-091,
|
||||||
|
};
|
||||||
|
#define NN (sizeof(aVal)/sizeof(aVal[0]))
|
||||||
|
|
||||||
|
#include "sqlite3.h"
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
int main(int argc, char **argv){
|
||||||
|
int i;
|
||||||
|
int cnt;
|
||||||
|
int fg;
|
||||||
|
char zBuf[1000];
|
||||||
|
|
||||||
|
if( argc!=3 ){
|
||||||
|
fprintf(stderr, "Usage: %s FLAG COUNT\n", argv[0]);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
cnt = atoi(argv[2]);
|
||||||
|
fg = atoi(argv[1]);
|
||||||
|
|
||||||
|
switch( fg % 3 ){
|
||||||
|
case 0: {
|
||||||
|
printf("Doing %d calls to C-lib sprintf()\n", cnt);
|
||||||
|
for(i=0; i<cnt; i++){
|
||||||
|
sprintf(zBuf, "%.26g", aVal[i%NN]);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 1: {
|
||||||
|
printf("Doing %d calls to sqlite3_snprintf()\n", cnt);
|
||||||
|
for(i=0; i<cnt; i++){
|
||||||
|
sqlite3_snprintf(sizeof(zBuf), zBuf, "%!.26g", aVal[i%NN]);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 2: {
|
||||||
|
printf("Doing %d calls to sqlite3_snprintf() without long double\n", cnt);
|
||||||
|
sqlite3_test_control(SQLITE_TESTCTRL_USELONGDOUBLE, 0);
|
||||||
|
for(i=0; i<cnt; i++){
|
||||||
|
sqlite3_snprintf(sizeof(zBuf), zBuf, "%!.26g", aVal[i%NN]);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
Reference in New Issue
Block a user