-
Notifications
You must be signed in to change notification settings - Fork 0
utility dot
GitHub Action edited this page Jul 9, 2026
·
1 revision
inline matrix dot(const matrix& a, const matrix& b)Dot products (multiplies) two matrices.
Returns a utility::matrix
| Parameter | Type | Use | Optional |
|---|---|---|---|
a |
utility::matrix |
Input A | ❌ |
b |
utility::matrix |
Input B | ❌ |
// Calling the dot() function
utility::matrix a;
utility::matrix b;
utility::matrix c = utility::dot(a, b);- AIUsage
- Block
- Embedder
- Introduction
- Layer
- Model
- NeuralNetwork
- PositionalEncoding
- SelfAttention
- Tokenizer
- Utility