package hardcaml_xilinx_reports

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

Reading of report files generated by the synthesis project.

module Subgroup : sig ... end
module Group : sig ... end
module Clock : sig ... end
type t = {
  1. groups : Group.t Base.List.t;
  2. clocks : Clock.t Base.List.t;
}

Utilization and timing report data.

val sexp_of_t : t -> Sexplib0.Sexp.t
val read : file_name:Base.String.t -> t

Read back a report file generated by the vivado project tcl script and convert to a tree of groups and subgroups. Includes the total module setup and hold slack.

val print_utilization_table : file:Stdio.Out_channel.t -> top_level_name:Base.String.t -> circuits:Hardcaml.Circuit.t Base.List.t -> (Base.String.t * t Base.Option.t) Base.List.t -> Base.Unit.t

Prints the utilization table hierarchically.

val print_timing_table : file:Stdio.Out_channel.t -> top_level_name:Base.String.t -> circuits:Hardcaml.Circuit.t Base.List.t -> (Base.String.t * t Base.Option.t) Base.List.t -> Base.Unit.t

Prints the timing table hierarchically.

OCaml

Innovation. Community. Security.