Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • sudarshan-ghonge/bayeswave
  • april.partington/bayeswave
  • lscsoft/bayeswave
  • tyson-littenberg/bayeswave
  • james-clark/bayeswave
  • meg.millhouse/bayeswave
  • katerina.chatziioannou/bayeswave
  • deborah.ferguson/bayeswave
  • thomas-callister/bayeswave
  • andoni.torres/bayeswave
  • erika.cowan/bayeswave
  • bcheeseboro/bayeswave
  • salvatore-vitale/bayeswave
  • bence.becsy/bayeswave
  • duncanmmacleod/bayeswave
  • paul.baker/bayeswave
  • leo-singer/bayeswave
  • hannah.griggs/bayeswave
  • bhooshan.gadre/bayeswave
  • ka-wa.tsang/bayeswave
  • marcella.wijngaarden/bayeswave
  • bruce.edelman/bayeswave
  • sangeet.paul/bayeswave
  • colm.talbot/bayeswave
  • sophie.hourihane/bayeswave
  • arianna.renzini/bayeswave
  • nayyer.raza/bayeswave
  • cailin.plunkett/bayeswave
  • johnmichael.sullivan/bayeswave
  • seth.moriarty/bayeswave
  • howard.deshong/bayeswave
  • argyro.sasli/bayeswave
  • megan.arogeti/bayeswave
  • johnmichael.sullivan/bayeswave-master-dev
  • tomasz.baka/bayeswave
  • cjhaster/bayeswave
  • meg.millhouse/bayeswave-cicd-testing
  • neil.cornish/bayeswave
38 results
Show changes
Commits on Source (2)
......@@ -4304,9 +4304,9 @@ void blstart(double *data, double *residual, int N, double dt, double fmin, int
fprintf(outFile,"%.15e %.15e\n", (double)(i)/Tobs, SN[i]);
}
fclose(outFile);
time ( &rawtime );
timeinfo = localtime ( &rawtime );
printf ("Avg PSD: Current local time and date: %s\n", asctime (timeinfo) );
// time ( &rawtime );
// timeinfo = localtime ( &rawtime );
// printf ("Avg PSD: Current local time and date: %s\n", asctime (timeinfo) );
}
......@@ -4371,9 +4371,9 @@ void blstart(double *data, double *residual, int N, double dt, double fmin, int
}
fclose(outFile);
time ( &rawtime );
timeinfo = localtime ( &rawtime );
printf("Fairdraw PSD: Current local time and date: %s\n", asctime (timeinfo) );
// time ( &rawtime );
// timeinfo = localtime ( &rawtime );
// printf("Fairdraw PSD: Current local time and date: %s\n", asctime (timeinfo) );
free(xint);
free(yint);
......
......@@ -58,11 +58,11 @@ int main(int argc, char *argv[])
char filename[MAXSTRINGSIZE];
char modelname[MAXSTRINGSIZE];
time_t rawtime;
struct tm * timeinfo;
time ( &rawtime );
timeinfo = localtime ( &rawtime );
printf ("Begin: Current local time and date: %s\n", asctime (timeinfo) );
// time_t rawtime;
// struct tm * timeinfo;
// time ( &rawtime );
// timeinfo = localtime ( &rawtime );
// printf ("Begin: Current local time and date: %s\n", asctime (timeinfo) );
/* LAL data structure that will contain all of the data from the frame files */
LALInferenceRunState *runState = XLALCalloc(1,sizeof(LALInferenceRunState));
......
......@@ -1330,9 +1330,9 @@ void RJMCMC(struct Data *data, struct Model **model, struct BayesLineParams ***b
time_t rawtime;
struct tm * timeinfo;
time ( &rawtime );
timeinfo = localtime ( &rawtime );
printf ("Current local time and date: %s\n", asctime (timeinfo) );
// time ( &rawtime );
// timeinfo = localtime ( &rawtime );
// printf ("Current local time and date: %s\n", asctime (timeinfo) );
/******************************************************************************/
/* */
/* Set up checkpointing */
......@@ -1750,15 +1750,15 @@ void RJMCMC(struct Data *data, struct Model **model, struct BayesLineParams ***b
chain->mc+=chain->cycle;
time ( &rawtime );
timeinfo = localtime ( &rawtime );
// time ( &rawtime );
// timeinfo = localtime ( &rawtime );
// Save progress
if(__bayeswave_saveStateFlag)
{
fprintf(stdout,"Interrupt/Timer message received\n");
fprintf(stdout,"Saving state to checkpoint directory\n");//,resumefilename);
fprintf (stdout, "Current local time and date: %s\n", asctime (timeinfo) );
// fprintf (stdout, "Current local time and date: %s\n", asctime (timeinfo) );
save_sampler(data, chain, model, bayesline, bayescbc, modelname, fprop);
__bayeswave_saveStateFlag = 0;
fflush(stdout);
......@@ -1777,9 +1777,9 @@ void RJMCMC(struct Data *data, struct Model **model, struct BayesLineParams ***b
end = clock();
cpu_time_used = ((double) (end - start)) / CLOCKS_PER_SEC;
printf("RJMCMC took %e seconds\n", cpu_time_used);
time ( &rawtime );
timeinfo = localtime ( &rawtime );
printf ("Current local time and date: %s\n", asctime (timeinfo) );
// time ( &rawtime );
// timeinfo = localtime ( &rawtime );
// printf ("Current local time and date: %s\n", asctime (timeinfo) );
free_double_matrix(fprop,NI);
......