GPUDevice from init()
'lower' to use the lower triangle, 'upper' to use the upper triangle
order of the matrix A (number of rows and columns)
scalar multiplier for x*x^T
Float32Array input vector, length at least (n-1)*incx+1
stride for x (must be a positive integer)
Float32Array, row-major or column-major (see layout), at least (n-1)*lda+n elements
leading dimension of A (>= n either way — A is square)
Optionallayout: "column-major" | "row-major"storage layout of A (default: 'row-major'); for a symmetric
matrix, column-major storage just means the other triangle is the one
physically referenced for a given uplo
Performs the symmetric rank-1 update A = alpha * x * x^T + A
A is kept GPU-resident; x is a CPU Float32Array. A's own layout (set at
GpuMatrix.from time) determines the operation — there is no separate
layout argument here.
GPUDevice from init()
'lower' to use the lower triangle, 'upper' to use the upper triangle
order of the matrix A
scalar multiplier for x*x^T
Float32Array input vector
stride for x (must be a positive integer)
GpuMatrix, GPU-resident
leading dimension of A (must equal A.lda)
Performs the symmetric rank-1 update A = alpha * x * x^T + A
x and A are both 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 { ssyr } from "wgblas/ssyr";
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 n = 4;
const x = randomFloat32Array(n, -10, 10);
const A = randomFloat32Array(n * n, -10, 10);
const xGpu = GpuVector.from(x);
const AGpu = GpuMatrix.from(A, n, n, n, "row-major");
console.log("x:", x);
console.log("A (before):");
console.table(toMatrix(A, n, n));
// results stay on the GPU between steps
await ssyr(device, "lower", n, 1.0, xGpu, 1, AGpu, AGpu.lda); // A += x*x^T
await ssyr(device, "lower", n, 1.0, xGpu, 1, AGpu, AGpu.lda); // A += x*x^T again
// single readback (GpuMatrix.read() is already dense — no lda padding to strip)
const result = await AGpu.read();
console.log("A (lower triangle, after two rank-1 updates):");
console.table(toMatrix(result, n, n));
xGpu.destroy();
AGpu.destroy();
if (typeof process !== "undefined") cleanup();
GPUDevice from init()
'lower' to use the lower triangle, 'upper' to use the upper triangle
order of the matrix A
scalar multiplier for x*x^T
GpuVector input vector (not mutated)
stride for x (must be a positive integer)
GpuMatrix, mutated in place
leading dimension of A (must equal A.lda)
Performs the symmetric rank-1 update A = alpha * x * x^T + A
A is an n×n symmetric matrix stored in row-major order, updated in place. Only the triangle specified by
uplois referenced and updated; the other triangle is left untouched (implied by symmetry).Browser (standalone HTML):