![]() |
|
|
#1 |
|
Bemusing Prompter
"Danny"
Dec 2002
California
23·313 Posts |
Probably a silly question, but what do all the values in gwnum.txt mean?
I noticed that each line in gwnum.txt corresponds to a set of data from the benchmarks. For example: Code:
BenchData=3200K,8,8,1,03004470,2021-10-03,12,272.13 Code:
FFTlen=3200K, Type=3, Arch=4, Pass1=1280, Pass2=2560, clm=1 (8 cores, 8 workers): 29.35, 29.52, 29.28, 29.37, 29.30, 29.25, 29.38, 29.75 ms. Throughput: 272.13 iter/sec. Code:
BenchData=FFT size,cores,workers,A,B,date,C,throughput I know it's probably not important to the user, but I'm still curious as to what they are for. Last fiddled with by ixfd64 on 2022-07-22 at 21:30 |
|
|
|
|
|
#2 |
|
"TF79LL86GIMPS96gpu17"
Mar 2017
US midwest
7,823 Posts |
From the source module gwbench.c for prime95 v30.7b9:
Code:
/* Create the table to hold the bench data */
errcode = sqlite3_exec (BENCH_DB,
"CREATE TABLE bench_data (fftlen INT, num_cores INT, num_workers INT, num_hyperthreads INT, \
impl INT, bench_date DATE, bench_length INT, throughput REAL)",
NULL, NULL, NULL);
Code:
/* Read the existing throughput benchmark data. Format for benchmark data is: */ /* BenchData=fftlen,num_cores,num_workers,num_hyperthreads,impl_id,date,bench_length_in_seconds,throughput */ Code:
sscanf (bench_data, "%d%c,%d,%d,%d,%08X,%10s,%d,%lf",
&fftlen, &fftlen_multiplier, &num_cores, &num_workers, &num_hyperthreads,
&impl_id, bench_date, &bench_length, &throughput);
Last fiddled with by kriesel on 2022-07-22 at 21:56 |
|
|
|
|
|
#3 |
|
Bemusing Prompter
"Danny"
Dec 2002
California
47108 Posts |
Thanks. I re-implemented gwbench_implementation_id() in Python for fun and got the same values.
Last fiddled with by ixfd64 on 2022-07-26 at 05:40 |
|
|
|
![]() |
| Thread Tools | |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Trying to decipher results... | piforbreakfast | PrimeNet | 1 | 2020-12-30 20:37 |
| Multiply By Drawing Lines | petrw1 | Math | 2 | 2014-05-20 06:13 |
| Put-down lines | davieddy | Soap Box | 3 | 2011-12-14 20:53 |
| Lines in a Square | Kees | Puzzles | 16 | 2009-05-07 15:24 |
| need help with ecm lines | jasong | Information & Answers | 3 | 2007-11-16 07:32 |