Skip to content

Commit 59ee68e

Browse files
committed
remove AI slop
1 parent 3f2609d commit 59ee68e

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

next/utils/ec2TablesGenerator.ts

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -99,52 +99,38 @@ export function ec2(instance: Omit<EC2Instance, "pricing">): Table[] {
9999
? "Yes"
100100
: "No",
101101
help: "https://en.wikipedia.org/wiki/Non-uniform_memory_access",
102-
helpText:
103-
"Non-Uniform Memory Access (NUMA) is a computer memory design where memory access time depends on the memory location relative to the processor. In a NUMA system, processors are divided into nodes, each with its own local memory. Accessing local memory is faster than accessing memory from another node.",
104102
},
105103
{
106104
name: "NUMA Node Count",
107105
children: instance.numa_node_count ?? "N/A",
108-
helpText:
109-
"The number of NUMA nodes (memory domains) in the system. Each node typically contains one or more processors and local memory.",
110106
},
111107
{
112108
name: "Max NUMA Distance",
113109
children: instance.max_numa_distance ?? "N/A",
114-
helpText:
115-
"The maximum distance between NUMA nodes, indicating the relative cost of accessing memory from the furthest node. Lower values indicate better memory locality.",
116110
},
117111
{
118112
name: "Cores per NUMA Node (Avg)",
119113
children: instance.core_count_per_numa_node
120114
? instance.core_count_per_numa_node.toFixed(1)
121115
: "N/A",
122-
helpText:
123-
"Average number of physical CPU cores per NUMA node. This affects how workloads should be distributed for optimal performance.",
124116
},
125117
{
126118
name: "Threads per NUMA Node (Avg)",
127119
children: instance.thread_count_per_numa_node
128120
? instance.thread_count_per_numa_node.toFixed(1)
129121
: "N/A",
130-
helpText:
131-
"Average number of hardware threads (vCPUs) per NUMA node. For optimal performance, bind your application to a single NUMA node when possible.",
132122
},
133123
{
134124
name: "Memory per NUMA Node (Avg MB)",
135125
children: instance.memory_per_numa_node_mb
136126
? `${instance.memory_per_numa_node_mb.toFixed(0)} MB`
137127
: "N/A",
138-
helpText:
139-
"Average amount of local memory available per NUMA node. Allocating memory on the same node as your compute improves performance.",
140128
},
141129
{
142130
name: "L3 Cache per NUMA Node (Avg MB)",
143131
children: instance.l3_per_numa_node_mb
144132
? `${instance.l3_per_numa_node_mb.toFixed(1)} MB`
145133
: "N/A",
146-
helpText:
147-
"Average amount of L3 cache available per NUMA node. L3 cache is the last level of CPU cache before accessing main memory.",
148134
},
149135
{
150136
name: "L3 Cache Shared",
@@ -154,8 +140,6 @@ export function ec2(instance: Omit<EC2Instance, "pricing">): Table[] {
154140
: instance.l3_shared
155141
? "Yes"
156142
: "No",
157-
helpText:
158-
"Whether the L3 cache is shared across NUMA nodes. Non-shared L3 cache typically provides better performance isolation.",
159143
},
160144
],
161145
},

0 commit comments

Comments
 (0)