package hardcaml

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Hardcaml.ArchitectureSource

Hardware architecture specification.

Sourcetype t =
  1. | Small
    (*

    Smallest size

    *)
  2. | Balanced
    (*

    Best balance between size and speed

    *)
  3. | Fast
    (*

    Fastest speed

    *)

This type is for use in hardware designs where we may have a number of different implementations, and the choice of which is best depends on the use case.

include Sexplib0.Sexpable.S with type t := t
Sourceval t_of_sexp : Sexplib0.Sexp.t -> t
Sourceval sexp_of_t : t -> Sexplib0.Sexp.t
Sourceval of_string : string -> t
Sourceval default : t

Default is set to balanced.

OCaml

Innovation. Community. Security.