hl_sequence_stub.h 2.5 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.
Z
zhangjinchao01 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22

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_SEQUENCE_STUB_H_
#define HL_SEQUENCE_STUB_H_

#include "hl_sequence.h"

inline void hl_max_sequence_forward(real* input,
                                    const int* sequence,
                                    real* output,
23
                                    int* index,
Z
zhangjinchao01 已提交
24 25 26
                                    int numSequences,
                                    int dim) {}

27 28
inline void hl_max_sequence_backward(
    real* outputGrad, int* index, real* inputGrad, int numSequences, int dim) {}
Z
zhangjinchao01 已提交
29

30 31 32
inline void hl_sequence2batch_copy(real* batch,
                                   real* sequence,
                                   const int* batchIndex,
Z
zhangjinchao01 已提交
33 34 35 36
                                   int seqWidth,
                                   int batchCount,
                                   bool seq2batch) {}

37 38 39
inline void hl_sequence2batch_add(real* batch,
                                  real* sequence,
                                  int* batchIndex,
Z
zhangjinchao01 已提交
40 41 42 43
                                  int seqWidth,
                                  int batchCount,
                                  bool seq2batch) {}

44 45 46 47 48 49 50 51 52
inline void hl_sequence2batch_copy_padding(real* batch,
                                           real* sequence,
                                           const int* sequenceStartPositions,
                                           const size_t sequenceWidth,
                                           const size_t maxSequenceLength,
                                           const size_t numSequences,
                                           bool normByTimes,
                                           bool seq2batch) {}

Z
zhangjinchao01 已提交
53 54 55 56 57 58 59 60
inline void hl_sequence_avg_forward(real* dst,
                                    real* src,
                                    const int* starts,
                                    int height,
                                    int width,
                                    const int mode) {}

#endif  // HL_SEQUENCE_STUB_H_