You need to sign in or sign up before continuing.
ternary.h 8.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.

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. */

#pragma once

17
#include "paddle/phi/common/int_array.h"
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
#include "paddle/phi/core/meta_tensor.h"

namespace phi {

// Common InferMeta Functions for ternary operators, The format like:
//
//   1. void [FunctionDesc|OpName]InferMeta(const MetaTensor& x,
//                                          const MetaTensor& y,
//                                          const MetaTensor& z,
//                                          ...,
//                                          MetaTensor* out) {}
//
// NOTE: The name "InferShape" may be not appropriate. "InferMeta" may be good.
//   Because functions in this file not only can infer shape, but also need
//   infer lod or other useful data.
33
//
34 35
// The InferMeta Functions in this file are arranged in alphabetic order.

36 37 38 39 40 41 42
void AccuracyInferMeta(const MetaTensor& out,
                       const MetaTensor& indice,
                       const MetaTensor& label,
                       MetaTensor* accuracy,
                       MetaTensor* correct,
                       MetaTensor* total,
                       MetaConfig config = MetaConfig());
43 44 45 46 47

void AddmmInferMeta(const MetaTensor& input,
                    const MetaTensor& x,
                    const MetaTensor& y,
                    float beta,
48
                    float alpha,
49 50
                    MetaTensor* out);

Z
zyfncg 已提交
51 52 53 54 55
void ArangeInferMeta(const MetaTensor& start,
                     const MetaTensor& end,
                     const MetaTensor& step,
                     MetaTensor* out);

L
lyq 已提交
56 57 58 59 60 61 62 63 64 65
void BoxCoderInferMeta(const MetaTensor& prior_box,
                       const MetaTensor& prior_box_var,
                       const MetaTensor& target_box,
                       const std::string& code_type,
                       bool box_normalized,
                       int axis,
                       const std::vector<float>& variance,
                       MetaTensor* output_box,
                       MetaConfig config = MetaConfig());

66 67 68 69 70
void FlashAttnInferMeta(const MetaTensor& q,
                        const MetaTensor& k,
                        const MetaTensor& v,
                        MetaTensor* out,
                        MetaTensor* softmax,
71
                        MetaTensor* softmax_lse,
72 73
                        MetaTensor* seed_offset);

S
sneaxiy 已提交
74 75 76 77 78 79 80 81
void FlashAttnV1InferMeta(const MetaTensor& q,
                          const MetaTensor& k,
                          const MetaTensor& v,
                          MetaTensor* out,
                          MetaTensor* softmax,
                          MetaTensor* softmax_lse,
                          MetaTensor* seed_offset);

82
void InstanceNormInferMeta(const MetaTensor& x,
83 84
                           const MetaTensor& scale,
                           const MetaTensor& bias,
85 86 87 88 89 90
                           float epsilon,
                           MetaTensor* y,
                           MetaTensor* saved_mean,
                           MetaTensor* saved_variance,
                           MetaConfig config = MetaConfig());

91 92 93 94 95 96 97 98 99 100
void GroupNormInferMeta(const MetaTensor& x,
                        const MetaTensor& scale,
                        const MetaTensor& bias,
                        float epsilon,
                        int groups,
                        const std::string& data_layout,
                        MetaTensor* y,
                        MetaTensor* mean,
                        MetaTensor* variance);

H
hong 已提交
101
void LayerNormInferMeta(const MetaTensor& x,
102 103
                        const MetaTensor& scale,
                        const MetaTensor& bias,
H
hong 已提交
104 105 106 107 108 109 110 111
                        float epsilon,
                        int begin_norm_axis,
                        MetaTensor* out,
                        MetaTensor* mean,
                        MetaTensor* variance,
                        MetaConfig config = MetaConfig());

void LayerNormGradInferMeta(const MetaTensor& x,
112 113
                            const MetaTensor& y,
                            const MetaTensor& z,
H
hong 已提交
114 115 116 117
                            MetaTensor* dx,
                            MetaTensor* dy,
                            MetaTensor* dz);

118 119 120 121 122
void LerpInferMeta(const MetaTensor& x,
                   const MetaTensor& y,
                   const MetaTensor& weight,
                   MetaTensor* out);

123 124 125 126 127
void LinspaceRawInferMeta(const MetaTensor& start,
                          const MetaTensor& stop,
                          const MetaTensor& number,
                          MetaTensor* out);

128 129 130
void LinspaceInferMeta(const MetaTensor& start,
                       const MetaTensor& stop,
                       const MetaTensor& number,
131
                       DataType dtype,
132
                       MetaTensor* out);
133

134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
void MultiClassNMSInferMeta(const MetaTensor& bboxes,
                            const MetaTensor& scores,
                            const MetaTensor& rois_num,
                            float score_threshold,
                            int nms_top_k,
                            int keep_top_k,
                            float nms_threshold,
                            bool normalized,
                            float nms_eta,
                            int background_label,
                            MetaTensor* out,
                            MetaTensor* index,
                            MetaTensor* nms_rois_num,
                            MetaConfig config = MetaConfig());

149 150
void NllLossRawInferMeta(const MetaTensor& input,
                         const MetaTensor& label,
151
                         const MetaTensor& weight,
152 153 154 155 156 157
                         int64_t ignore_index,
                         const std::string& reduction,
                         MetaTensor* out,
                         MetaTensor* total_weight,
                         MetaConfig config = MetaConfig());

158 159 160 161 162 163 164
void PutAlongAxisInferMeta(const MetaTensor& x,
                           const MetaTensor& index,
                           const MetaTensor& value,
                           int axis,
                           const std::string& reduce,
                           MetaTensor* out);

165 166
void RoiAlignInferMeta(const MetaTensor& x,
                       const MetaTensor& boxes,
167
                       const MetaTensor& boxes_num,
168 169 170 171 172 173 174 175
                       int pooled_height,
                       int pooled_width,
                       float spatial_scale,
                       int sampling_ratio,
                       bool aligned,
                       MetaTensor* out,
                       MetaConfig config = MetaConfig());

176 177
void RoiPoolInferMeta(const MetaTensor& x,
                      const MetaTensor& boxes,
178
                      const MetaTensor& boxes_num,
179 180 181 182 183 184
                      int pooled_height,
                      int pooled_width,
                      float spatial_scale,
                      MetaTensor* out,
                      MetaTensor* arg_max);

185 186 187 188 189 190
void ScatterInferMeta(const MetaTensor& x,
                      const MetaTensor& index,
                      const MetaTensor& updates,
                      bool overwrite,
                      MetaTensor* out);

191 192 193 194 195
void ScatterNdAddInferMeta(const MetaTensor& x,
                           const MetaTensor& index,
                           const MetaTensor& updates,
                           MetaTensor* out);

196 197 198 199 200 201 202 203
void SendURecvInferMeta(const MetaTensor& x,
                        const MetaTensor& src_index,
                        const MetaTensor& dst_index,
                        const std::string& reduce_op,
                        const IntArray& out_size,
                        MetaTensor* out,
                        MetaTensor* dst_count);

204 205 206 207 208 209 210 211 212
void SpectralNormInferMeta(const MetaTensor& weight,
                           const MetaTensor& u,
                           const MetaTensor& v,
                           int dim,
                           int power_iters,
                           float eps,
                           MetaTensor* out,
                           MetaConfig config = MetaConfig());

213 214 215 216 217 218 219 220
void ViterbiDecodeInferMeta(const MetaTensor& input,
                            const MetaTensor& transition,
                            const MetaTensor& length,
                            bool include_bos_eos_tag,
                            MetaTensor* scores,
                            MetaTensor* path,
                            MetaConfig config = MetaConfig());

221
}  // namespace phi