blob: aa9f8aea786458b3190ca5f44ab675f2bee514a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include <stdint.h>
#include <array>
namespace DirectCompute
{
struct LookupTablesData
{
std::array<uint16_t, 0x10000> gelu;
std::array<uint16_t, 0x10000> exponent;
LookupTablesData();
};
}
|