Skip to content

Commit 73b02db

Browse files
Update banner
1 parent 2c88509 commit 73b02db

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/begrun.cpp

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,14 @@ _ _ ________ _________
3030

3131
// Set threads and report
3232
omp_set_num_threads(args.threads);
33-
std::cout << "Using: " << args.threads << " threads\n";
33+
34+
std::cout << " Threads: " << args.threads << "\n";
35+
36+
#ifdef NEXT_FP64
37+
std::cout << " Precision: FP64\n";
38+
#elif defined(NEXT_FP32)
39+
std::cout << " Precision: FP32\n";
40+
#endif
3441

3542
// Load particles
3643
std::vector<Particle> particles = LoadParticlesFromFile(args.input_file);

0 commit comments

Comments
 (0)