Distributed training

This commit is contained in:
Joseph Redmon
2014-12-07 00:41:26 -08:00
parent 1edcf73a73
commit 28e2115272
9 changed files with 229 additions and 110 deletions

View File

@ -48,7 +48,8 @@ void top_k(float *a, int n, int k, int *index)
void error(char *s)
{
fprintf(stderr, "Error: %s\n", s);
perror(s);
//fprintf(stderr, "Error: %s\n", s);
exit(0);
}