24 lines
609 B
Plaintext
24 lines
609 B
Plaintext
# vCPU 를 Node 0 에 묶어도 backing 이 Node 1 에 있으면 접근은 remote 로 남는다
|
|
# Question: vCPU pinning 만 한 배치와 memory binding 까지 맞춘 배치에서 같은 memory 접근은 각각 어느 node 의 RAM 에 닿는가
|
|
direction: right
|
|
n0: "QEMU vCPU Thread" {
|
|
shape: rectangle
|
|
}
|
|
n1: "VM1 Memory Backing" {
|
|
shape: rectangle
|
|
}
|
|
n2: "Node 0 CPU" {
|
|
shape: rectangle
|
|
}
|
|
n3: "Node 0 RAM" {
|
|
shape: rectangle
|
|
}
|
|
n4: "Node 1 RAM" {
|
|
shape: rectangle
|
|
}
|
|
n0 -> n2: "vCPU Pinning"
|
|
n1 -> n4: "Memory Placement"
|
|
n2 -> n4: "Remote Access"
|
|
n1 -> n3: "Memory Binding"
|
|
n2 -> n3: "Local Access"
|