diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-03-20 12:58:20 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-03-20 12:58:20 -0300 |
commit | 61e845e2c747919096c80c2ad1f6f3ee420aa41b (patch) | |
tree | 2db523bffd575c0b2e3647ace8488fa4e0cd39b4 | |
parent | 2e375ce824d44531ba512cb7aed3bdae956abcf4 (diff) | |
download | code-61e845e2c747919096c80c2ad1f6f3ee420aa41b.tar.gz code-61e845e2c747919096c80c2ad1f6f3ee420aa41b.tar.bz2 code-61e845e2c747919096c80c2ad1f6f3ee420aa41b.zip |
Changed data collection mechanism to write binary files of a selection of configurations
-rw-r--r-- | walk.cpp | 50 |
1 files changed, 32 insertions, 18 deletions
@@ -1,6 +1,6 @@ #include <getopt.h> #include <iomanip> - +#include <fstream> #include "pcg-cpp/include/pcg_random.hpp" #include "randutils/randutils.hpp" @@ -50,10 +50,8 @@ Real wignerInverse(Real p, Real ε = 1e-14) { } class QuadraticModel { -private: - Vector J; - public: + Vector J; unsigned N; QuadraticModel(unsigned N, Rng& r, bool diag = false) : J(N), N(N) { @@ -128,14 +126,14 @@ Vector randomStep(const QuadraticModel& M, const Vector& x₀, Real E, Rng& r, R int main(int argc, char* argv[]) { unsigned N = 10; Real T = 10; - Real T₀ = 2; Real E = 0; Real Δt = 1e-4; - Real Δt₀ = 1e-2; + Real Δw = 1e-2; + bool diag = true; int opt; - while ((opt = getopt(argc, argv, "N:E:T:t:I:i:")) != -1) { + while ((opt = getopt(argc, argv, "N:E:T:t:w:d")) != -1) { switch (opt) { case 'N': N = (unsigned)atof(optarg); @@ -146,14 +144,14 @@ int main(int argc, char* argv[]) { case 'T': T = atof(optarg); break; - case 'I': - T₀ = atof(optarg); - break; case 't': Δt = atof(optarg); break; - case 'i': - Δt₀ = atof(optarg); + case 'w': + Δw = atof(optarg); + break; + case 'd': + diag = false; break; default: exit(1); @@ -161,23 +159,39 @@ int main(int argc, char* argv[]) { } Rng r; - QuadraticModel model(N, r, true); + QuadraticModel model(N, r, diag); Vector x₀ = normalizeVector(randomVector(N, r)); x₀ = gradientDescent(model, x₀, E); std::cout << std::setprecision(15); - for (Real t = 0; t < T₀; t += Δt₀) { - x₀ = randomStep(model, x₀, E, r, Δt₀); - } - Vector x = x₀; + Real timeSinceWrite = Δw; + + std::ofstream outfile(std::to_string(N) + "_" + std::to_string(E) + "_" + std::to_string(Δt) + "_" + std::to_string(Δw) + ".dat", std::ios::out | std::ios::binary); + + for (Real Jᵢ : model.J) { + float Jif = Jᵢ; + outfile.write((const char*)(&Jif), sizeof(float)); + } + for (Real t = 0; t < T; t += Δt) { - std::cout << t << " " << x.dot(x₀) / N << std::endl; x = randomStep(model, x, E, r, Δt); + + if (timeSinceWrite >= Δw) { + for (Real xᵢ : x) { + float xif = xᵢ; + outfile.write((const char*)(&xif), sizeof(float)); + } + timeSinceWrite = 0; + } + + timeSinceWrite += Δt; } + outfile.close(); + return 0; } |