GPUDevice from init()
number of rows in A (length of x)
number of columns in A (length of y)
scalar multiplier for x*y^T
Float32Array input vector, length at least (m-1)*incx+1
stride for x (must be a positive integer)
Float32Array input vector, length at least (n-1)*incy+1
stride for y (must be a positive integer)
Float32Array, row-major or column-major (see layout), at least
(m-1)*lda+n elements for row-major or (n-1)*lda+m elements for column-major
leading dimension of A (>= n for row-major, >= m for column-major)
Optionallayout: "column-major" | "row-major"storage layout of A (default: 'row-major')
Performs the rank-1 update A = alpha * x * y^T + A
A is kept GPU-resident; x and y are CPU Float32Arrays. A's own layout
(set at GpuMatrix.from time) determines the operation — there is no
separate layout argument here.
GPUDevice from init()
number of rows in A
number of columns in A
scalar multiplier for x*y^T
Float32Array input vector
stride for x (must be a positive integer)
Float32Array input vector
stride for y (must be a positive integer)
GpuMatrix, GPU-resident
leading dimension of A (must equal A.lda)
Performs the rank-1 update A = alpha * x * y^T + A
x, y, and A are all kept resident on the GPU. A's own layout (set at
GpuMatrix.from time) determines the operation — there is no separate
layout argument here.
import { init, cleanup } from "wgblas";
import { sger } from "wgblas/sger";
import { GpuVector } from "wgblas/classes/GpuVector";
import { GpuMatrix } from "wgblas/classes/GpuMatrix";
import { randomFloat32Array } from "wgblas/random";
// Reshapes a flat row-major array into rows for console.table's 2D grid view.
function toMatrix(A, rows, cols, lda = cols) {
const out = [];
for (let r = 0; r < rows; r++)
out.push(Array.from(A.subarray(r * lda, r * lda + cols), (v) => +v.toFixed(4)));
return out;
}
const device = await init();
const m = 4, n = 5;
const x = randomFloat32Array(m, -10, 10);
const y = randomFloat32Array(n, -10, 10);
const A = randomFloat32Array(m * n, -10, 10);
const xGpu = GpuVector.from(x);
const yGpu = GpuVector.from(y);
const AGpu = GpuMatrix.from(A, m, n, n, "row-major");
console.log("x:", x);
console.log("y:", y);
console.log("A (before):");
console.table(toMatrix(A, m, n));
// results stay on the GPU between steps
await sger(device, m, n, 1.0, xGpu, 1, yGpu, 1, AGpu, AGpu.lda); // A += x*y^T
await sger(device, m, n, 1.0, xGpu, 1, yGpu, 1, AGpu, AGpu.lda); // A += x*y^T again
// single readback (GpuMatrix.read() is already dense — no lda padding to strip)
const result = await AGpu.read();
console.log("A (after two rank-1 updates):");
console.table(toMatrix(result, m, n));
xGpu.destroy();
yGpu.destroy();
AGpu.destroy();
if (typeof process !== "undefined") cleanup();
GPUDevice from init()
number of rows in A
number of columns in A
scalar multiplier for x*y^T
GpuVector input vector (not mutated)
stride for x (must be a positive integer)
GpuVector input vector (not mutated)
stride for y (must be a positive integer)
GpuMatrix, mutated in place
leading dimension of A (must equal A.lda)
Performs the rank-1 update A = alpha * x * y^T + A
A is an m×n matrix stored in row-major order, updated in place.
ldais the leading dimension (number of floats between the start of consecutive rows — must be >= n).Browser (standalone HTML):