This repository has been archived on 2026-02-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
tkDNN/include/Network.h
T
Francesco Gatti 0767df43a2 initial commit
2017-06-28 01:14:39 +02:00

21 lines
297 B
C++

#ifndef NETWORK_H
#define NETWORK_H
#include "utils.h"
namespace tkDNN {
class Network {
public:
Network();
virtual ~Network();
cudnnDataType_t dataType;
cudnnTensorFormat_t tensorFormat;
cudnnHandle_t cudnnHandle;
cublasHandle_t cublasHandle;
};
}
#endif //NETWORK_H