GPT2.h 927 Bytes
Newer Older
liucong's avatar
liucong committed
1
2
#ifndef __GPT2_H__
#define __GPT2_H__
3
4
5
6
7
8
9
10

#include <cstdint>
#include <string>
#include <migraphx/program.hpp>
#include <tokenization.h>

namespace migraphxSamples
{
liucong's avatar
liucong committed
11
12
13
14
15
16
17
18
19
    typedef enum _ErrorCode
    {
        SUCCESS=0, 
        MODEL_NOT_EXIST, 
        CONFIG_FILE_NOT_EXIST, 
        FAIL_TO_LOAD_MODEL, 
        FAIL_TO_OPEN_CONFIG_FILE, 
    }ErrorCode;

20
21
22
23
24
25
26
27
28
29
30
31
32
33
    typedef struct _Predictions
    {
        long unsigned int index;
        float predictionvalue;
    }Predictions;

class GPT2
{

public:
    GPT2();
    
    ~GPT2();

liucong's avatar
liucong committed
34
    ErrorCode Initialize();
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49

    ErrorCode Preprocessing(cuBERT::FullTokenizer tokenizer,
                             char *question,
                             std::vector<long unsigned int> &input_id);

    long unsigned int Inference(const std::vector<long unsigned int> &input_id);

private:
    migraphx::program net;
    std::string inputName;
    migraphx::shape inputShape;
};

}
#endif