From b6b65cc5112a7b44cf483f9f963e61effb440802 Mon Sep 17 00:00:00 2001 From: Juan MarĂ­n Noguera Date: Fri, 1 Jan 2021 20:23:35 +0100 Subject: Cache coherency --- aoc/n3.3.dot | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 aoc/n3.3.dot (limited to 'aoc/n3.3.dot') diff --git a/aoc/n3.3.dot b/aoc/n3.3.dot new file mode 100644 index 0000000..4f5fa80 --- /dev/null +++ b/aoc/n3.3.dot @@ -0,0 +1,10 @@ +digraph G { + I -> S [label="ReqRd / DirRd, {Data /}"] + I -> M [label="ReqWr / DirWr, {Data /}"] + S -> I [label="CInv / CInvOK\nReemplazo /"] + S -> S [label="ReqRd /"] + S -> M [label="ReqWr / DirWr, {Data /}"] + M -> I [label="CWr / c.Data, CWrOK\nReemplazo / DirWB"] + M -> S [label="CRd / c.Data, CRdOK"] + M -> M [label="ReqRd /\nReqWr /"] +} -- cgit v1.2.3