gemm_f16.h 189 Bytes
Newer Older
Zhekai Zhang's avatar
Zhekai Zhang committed
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include "common.h"
#include "Tensor.h"

Tensor gemm_f16(
    Tensor input,  // FP16
    Tensor weight, // FP16
    Tensor out,      // FP16
    float alpha,
    float beta
);