Skip to content

Commit

Permalink
Sources fixed - Yolo v2 can be used on Windows (MSVS 2015 + CUDA 8.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexeyAB committed Dec 2, 2016
1 parent 2710d63 commit 5b6dd3a
Show file tree
Hide file tree
Showing 17 changed files with 1,571 additions and 358 deletions.
5 changes: 4 additions & 1 deletion src/art.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
#include "option_list.h"
#include "blas.h"
#include "classifier.h"
#include <sys/time.h>
//#include <sys/time.h>
#include <time.h>
#include <winsock.h>
#include "gettimeofday.h"

#ifdef OPENCV
#include "opencv2/highgui/highgui_c.h"
Expand Down
5 changes: 4 additions & 1 deletion src/classifier.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
#include "assert.h"
#include "classifier.h"
#include "cuda.h"
#include <sys/time.h>
//#include <sys/time.h>
#include <time.h>
#include <winsock.h>
#include "gettimeofday.h"

#ifdef OPENCV
#include "opencv2/highgui/highgui_c.h"
Expand Down
2 changes: 1 addition & 1 deletion src/cpu_gemm.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "mini_blas.h"
//#include "mini_blas.h"

void cpu_gemm_nn(int TA, int TB, int M, int N, int K, float ALPHA,
float *A, int lda,
Expand Down
5 changes: 4 additions & 1 deletion src/demo.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
#include "box.h"
#include "image.h"
#include "demo.h"
#include <sys/time.h>
//#include <sys/time.h>
#include <time.h>
#include <winsock.h>
#include "gettimeofday.h"

#define FRAMES 3

Expand Down
Loading

0 comments on commit 5b6dd3a

Please sign in to comment.