Discover Packages
github.com/zerfoo/zerfoo
internal
xblas
package
Version:
v0.3.0
Opens a new window with list of versions in this module.
Published: Aug 25, 2025
License: Apache-2.0
Opens a new window with license information.
Imports: 5
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Jump to ...
Documentation
Index
Constants
Variables
Functions
GemmF16(m, n, k, a, b, c)
GemmF32(m, n, k, a, b, c)
GemmF64(m, n, k, a, b, c)
GemmF8(m, n, k, a, b, c)
Types
Source Files
Documentation
Documentation
¶
func GemmF16(m, n, k int, a, b, c []float16.Float16)
func GemmF32(m, n, k int, a, b, c []float32)
func GemmF64(m, n, k int, a, b, c []float64)
func GemmF8(m, n, k int, a, b, c []float8.Float8)
GemmF16 computes C = A * B for Float16 by converting through float32 SGEMM.
GemmF32 computes C = A * B for row-major contiguous matrices.
A has shape (m, k), B has shape (k, n), C has shape (m, n).
Strides are assumed to be k for A and n for B and C.
GemmF64 computes C = A * B for row-major contiguous matrices.
GemmF8 computes C = A * B for Float8 by converting through float32 SGEMM.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.