TinyChatEngine
Loading...
Searching...
No Matches
BMM_F32T.h
1#include "common.h"
2
3class BMM_F32T {
4 public:
5 BMM_F32T(float _alpha);
6 BMM_F32T(){};
7 void forward(const Matrix3D<float> &x, const Matrix3D<float> &weight, Matrix3D<float> &output);
8 void forward_weight_untransposed(const Matrix3D<float> &x, const Matrix3D<float> &weight, Matrix3D<float> &output);
9 float alpha;
10
11 private:
12 std::string profile_name = "BMM_F32T";
13};
14
15void load_BMM_F32T(BMM_F32T &op, std::string prefix);
Definition BMM_F32T.h:3
Definition common.h:34