hl_gpu.h 1.3 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
Z
zhangjinchao01 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */

#ifndef HL_GPU_H_
#define HL_GPU_H_

Y
Yu Yang 已提交
18
#include "hl_aggregate.h"
Z
zhangjinchao01 已提交
19
#include "hl_base.h"
Y
Yu Yang 已提交
20
#include "hl_cnn.h"
Z
zhangjinchao01 已提交
21 22 23 24
#include "hl_cuda.h"
#include "hl_cuda_cublas.h"
#include "hl_cuda_cudnn.h"
#include "hl_lstm.h"
Y
Yu Yang 已提交
25
#include "hl_matrix.h"
Z
zhangjinchao01 已提交
26
#include "hl_sequence.h"
Y
Yu Yang 已提交
27
#include "hl_sparse.h"
28
#ifndef PADDLE_MOBILE_INFERENCE
29
#include "hl_warpctc_wrap.h"
30
#endif
Z
zhangjinchao01 已提交
31 32 33 34

#ifdef HPPL_STUB_FUNC
#include "stub/hl_aggregate_stub.h"
#include "stub/hl_cnn_stub.h"
Y
Yu Yang 已提交
35 36 37
#include "stub/hl_cuda_cublas_stub.h"
#include "stub/hl_cuda_cudnn_stub.h"
#include "stub/hl_cuda_stub.h"
Z
zhangjinchao01 已提交
38
#include "stub/hl_lstm_stub.h"
Y
Yu Yang 已提交
39
#include "stub/hl_matrix_stub.h"
Z
zhangjinchao01 已提交
40
#include "stub/hl_sequence_stub.h"
Y
Yu Yang 已提交
41
#include "stub/hl_sparse_stub.h"
Z
zhangjinchao01 已提交
42 43 44
#endif

#endif /* HL_GPU_H_ */