Skip to content

Commit

Permalink
profile view never works
Browse files Browse the repository at this point in the history
  • Loading branch information
grasingerm committed Jun 5, 2023
1 parent 64fc77a commit f357caa
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions mcmc_clustering_eap_chain.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ using Distributions;
using LinearAlgebra;
using Logging;
using DelimitedFiles;
using ProfileView;
#using ProfileView;
using DecFP;
using Quadmath;

Expand Down Expand Up @@ -332,7 +332,8 @@ end
(chain, sas, vas, ar) = if pargs["profile"]
@info "Profiling the mcmc code...";
mcmc(5, pargs); # run first to compile code
@profview mcmc(pargs["num-steps"], pargs);
#@profview mcmc(pargs["num-steps"], pargs);
error("Not currently implemented...");
println("Press ENTER to continue...");
readline(stdin);
exit(1);
Expand Down

0 comments on commit f357caa

Please sign in to comment.