Fixed multi-GPU training for Tensor Cores

This commit is contained in:
AlexeyAB
2018-03-09 19:44:46 +03:00
parent a6c51e3b75
commit 880cf187d8
5 changed files with 48 additions and 35 deletions

View File

@ -64,6 +64,10 @@ typedef struct network{
#ifdef GPU
float **input_gpu;
float **truth_gpu;
float **input16_gpu;
float **output16_gpu;
size_t *max_input16_size;
size_t *max_output16_size;
int wait_stream;
#endif
} network;