0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-30 12:48:54 +02:00
construct/include/ircd/gpt/token.h

72 lines
1 KiB
C
Raw Normal View History

2021-03-30 03:22:42 +02:00
// Matrix Construct
//
// Copyright (C) Matrix Construct Developers, Authors & Contributors
// Copyright (C) 2016-2021 Jason Volk <jason@zemos.net>
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice is present in all copies. The
// full license for this software is available in the LICENSE file.
#pragma once
2021-04-02 22:01:38 +02:00
#ifdef __OPENCL_C_VERSION__
#define HAVE_IRCD_GPT_TOKEN_H
2021-03-30 03:22:42 +02:00
2021-04-02 22:01:38 +02:00
union ircd_gpt_token
2021-03-30 03:22:42 +02:00
{
float
word[768],
attn[12][64];
};
2021-04-02 22:01:38 +02:00
union ircd_gpt_tokenv
2021-03-30 03:22:42 +02:00
{
float4
word[768/4],
attn[12][64/4];
};
2021-04-02 22:01:38 +02:00
struct ircd_gpt_qkv
2021-03-30 03:22:42 +02:00
{
2021-04-02 22:01:38 +02:00
union ircd_gpt_tokenv
2021-03-30 03:22:42 +02:00
qry,
key,
val;
};
2021-04-02 22:01:38 +02:00
struct ircd_gpt_qkvv
2021-03-30 03:22:42 +02:00
{
2021-04-02 22:01:38 +02:00
union ircd_gpt_tokenv
2021-03-30 03:22:42 +02:00
qry,
key,
val;
};
2021-04-02 22:01:38 +02:00
struct ircd_gpt_attn_mask
2021-03-30 03:22:42 +02:00
{
bool
token[1024];
};
2021-04-02 22:01:38 +02:00
union ircd_gpt_aperature
2021-03-30 03:22:42 +02:00
{
float
word[768],
fcon[2304],
proj[3][768],
qkv[3][12][64],
attn[12][64];
};
2021-04-02 22:01:38 +02:00
union ircd_gpt_aperaturev
2021-03-30 03:22:42 +02:00
{
float4
word[768/4],
fcon[2304/4],
proj[3][768/4],
qkv[3][12][64/4],
attn[12][64/4];
};
#endif