Directed Graph (no loops) vs. Acyclic Directed Graph (w/loops)

Feb 20, 2021  |  Author : admin_mirabilis

• Symmetric directed graphs are directed graphs where all edges are bi-directional. This means, for every arrow that belongs to the digraph, the corresponding inverse arrow also belongs to it.  • Simple directed graphs are directed graphs that have no loops, arrows that directly connect vertices to themselves, and no multiple arrows with same source and target nodes. As already introduced, in case of […]

Read more


Digital System Power, Processor Performance analysis and benchmarking

Feb 19, 2021  |  Author : admin_mirabilis

Understanding Processor Performance: Power Efficiency Matters When designing computer systems, processor performance isn’t just about raw speed. For many systems, efficiency is king. System designers, especially those creating large-scale computer systems like Google, prioritize CPUs that deliver the most processing power while consuming the least amount of energy. This is because, over time, the cost […]

Read more


Simple Directed Graph Example:

Feb 18, 2021  |  Author : admin_mirabilis

In formal terms, a directed graph is an ordered pair G = (V, A) where • V is a set whose elements are called vertices, nodes, or points; • A is a set of ordered pairs of vertices, called arrows, directed edges (sometimes simply edges with the corresponding set named E  instead of A), directed arcs, or directed lines.  It differs from an ordinary or undirected graph, in that the latter is defined in terms of unordered pairs of vertices, which are usually called edges, […]

Read more


Directed Acyclic Graph or Task Graph Reduction, Simplification

Feb 17, 2021  |  Author : admin_mirabilis

Reachability and DAG Reduction Example: The reachability relationship in any directed acyclic graph can be formalized as a partial order ≤ on the vertices of the DAG. In this partial order, two vertices u and v are ordered as u ≤ v exactly when there exists a directed path from u to v in the DAG; that is, when v is reachable from u.  However, different DAGs may give rise to the same reachability relation and the same partial order.  For example, the […]

Read more


Digital System Power & Processor Power Considerations

Feb 16, 2021  |  Author : admin_mirabilis

Configurable TDP: Configurable TDP (cTDP), also known as programmable TDP or TDP power cap, is an operating mode of later generations of Intel mobile processors, as of January 2014, and AMD processors, as of June 2012, that allows adjustments to their TDP values. By modifying the processor behavior and its performance levels, power consumption of a processor can be changed by altering its TDP at the […]

Read more