mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
23 lines
428 B
Text
23 lines
428 B
Text
/-
|
|
ComputationProfile.lean - Minimal stub
|
|
-/
|
|
|
|
import Mathlib.Data.Nat.Basic
|
|
import Mathlib.Data.Int.Basic
|
|
import Semantics.DynamicCanal
|
|
import Semantics.FixedPoint
|
|
|
|
namespace Semantics.ComputationProfile
|
|
|
|
open DynamicCanal
|
|
open Semantics.Q16_16
|
|
|
|
abbrev Scalar := Q16_16
|
|
|
|
structure Profile where
|
|
parallelism : Scalar
|
|
memoryAccess : Scalar
|
|
branching : Scalar
|
|
deriving Repr, DecidableEq
|
|
|
|
end Semantics.ComputationProfile
|