We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c88509 commit 73b02dbCopy full SHA for 73b02db
src/begrun.cpp
@@ -30,7 +30,14 @@ _ _ ________ _________
30
31
// Set threads and report
32
omp_set_num_threads(args.threads);
33
- std::cout << "Using: " << args.threads << " threads\n";
+
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
41
42
// Load particles
43
std::vector<Particle> particles = LoadParticlesFromFile(args.input_file);
0 commit comments