Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions crates/oxmera-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
//! know about tensors, storage, backends, or dispatch. Everything may depend
//! on it; it depends on nothing but `std` and `thiserror`.
//!
//! Status: seams only. Every function that computes something is `todo!()` —
//! the shape/stride arithmetic (A1), broadcasting rules (A2), and error
//! taxonomy refinement (A5) are exercise rungs, implemented by the
//! maintainer, specified by the tests in `exercises/`.
//! It defines tensor data types, validated shapes and strides, memory layouts,
//! device handles, and the shared error taxonomy used throughout the workspace.
//! These backend-independent primitives keep representation and validation
//! rules consistent across CPU, Metal, and CUDA implementations.

#![forbid(unsafe_code)]
#![warn(missing_docs)]
Expand Down
2 changes: 1 addition & 1 deletion docs/adr/0005-publishing-policy.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ADR-0005 — Publishing policy

Status: Proposed
Status: Accepted
Date: 2026-08-21

## Context
Expand Down