mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
19 lines
328 B
Text
19 lines
328 B
Text
/-
|
|
ComputationProfile.lean - Minimal stub
|
|
-/
|
|
|
|
import Semantics.DynamicCanal
|
|
|
|
namespace Semantics.ComputationProfile
|
|
|
|
open DynamicCanal
|
|
|
|
abbrev Scalar := Fix16
|
|
|
|
structure ComputationProfile where
|
|
parallelism : Scalar
|
|
memoryAccess : Scalar
|
|
branching : Scalar
|
|
deriving Repr, DecidableEq
|
|
|
|
end Semantics.ComputationProfile
|