-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathFixedTopologyHighDensityIntraNodeSolver.ts
More file actions
591 lines (529 loc) · 16.1 KB
/
FixedTopologyHighDensityIntraNodeSolver.ts
File metadata and controls
591 lines (529 loc) · 16.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
import {
type XYConnection as HgXYConnection,
type JPort,
type JRegion,
type ViaData,
type ViaByNet,
type ViaTile,
ViaGraphSolver,
createConvexViaGraphFromXYConnections,
} from "@tscircuit/hypergraph"
import { ConnectivityMap } from "circuit-json-to-connectivity-map"
import type {
HighDensityIntraNodeRoute,
NodeWithPortPoints,
PortPoint,
} from "../../types/high-density-types"
import { BaseSolver } from "../BaseSolver"
import { buildColorMapFromPortPoints } from "./buildColorMapFromPortPoints"
export type ViaRegion = {
viaRegionId: string
center: { x: number; y: number }
diameter: number
connectedTo: string[]
}
export type HighDensityIntraNodeRouteWithVias = HighDensityIntraNodeRoute & {
viaRegions: ViaRegion[]
}
export interface FixedTopologyHighDensityIntraNodeSolverParams {
nodeWithPortPoints: NodeWithPortPoints
colorMap?: Record<string, string>
traceWidth?: number
connMap?: ConnectivityMap
effort?: number
}
const P99_MAX_ITERATIONS = 24411
/**
* Routes intra-node traces using a fixed via-topology grid and the hypergraph
* via solver.
*/
export class FixedTopologyHighDensityIntraNodeSolver extends BaseSolver {
override getSolverName(): string {
return "FixedTopologyHighDensityIntraNodeSolver"
}
constructorParams: FixedTopologyHighDensityIntraNodeSolverParams
nodeWithPortPoints: NodeWithPortPoints
colorMap: Record<string, string>
traceWidth: number
connMap?: ConnectivityMap
rootConnectionNameByConnectionId: Map<string, string | undefined> = new Map()
lastActiveSubSolver: ViaGraphSolver | null = null
solvedRoutes: HighDensityIntraNodeRouteWithVias[] = []
vias: ViaRegion[] = []
tiledViasByNet: ViaByNet = {}
constructor(params: FixedTopologyHighDensityIntraNodeSolverParams) {
super()
this.constructorParams = params
this.nodeWithPortPoints = params.nodeWithPortPoints
this.colorMap = params.colorMap ?? {}
this.traceWidth = params.traceWidth ?? 0.15
this.connMap = params.connMap
this.MAX_ITERATIONS = P99_MAX_ITERATIONS * (params.effort ?? 1)
// Initialize colorMap if not provided
if (Object.keys(this.colorMap).length === 0) {
this.colorMap = buildColorMapFromPortPoints(this.nodeWithPortPoints)
}
}
getConstructorParams(): FixedTopologyHighDensityIntraNodeSolverParams {
return this.constructorParams
}
private _getViaTileDiameter(viaTile: ViaTile): number {
for (const vias of Object.values(viaTile.viasByNet)) {
if (vias.length > 0) return vias[0].diameter
}
return 0.3
}
private _initializeGraph(): ViaGraphSolver | null {
// Build connections from port points
const connectionMap = new Map<
string,
{ points: PortPoint[]; rootConnectionName?: string }
>()
for (const pp of this.nodeWithPortPoints.portPoints) {
const existing = connectionMap.get(pp.connectionName)
if (existing) {
existing.points.push(pp)
} else {
connectionMap.set(pp.connectionName, {
points: [pp],
rootConnectionName: pp.rootConnectionName,
})
}
}
this.rootConnectionNameByConnectionId.clear()
const inputConnections: HgXYConnection[] = []
for (const [connectionName, data] of connectionMap.entries()) {
if (data.points.length < 2) continue
this.rootConnectionNameByConnectionId.set(
connectionName,
data.rootConnectionName,
)
inputConnections.push({
connectionId: connectionName,
start: { x: data.points[0].x, y: data.points[0].y },
end: {
x: data.points[data.points.length - 1].x,
y: data.points[data.points.length - 1].y,
},
})
}
if (inputConnections.length === 0) return null
const convexGraph = createConvexViaGraphFromXYConnections(inputConnections)
this.tiledViasByNet = convexGraph.viaTile.viasByNet ?? {}
return new ViaGraphSolver({
inputGraph: {
regions: convexGraph.regions,
ports: convexGraph.ports,
},
inputConnections: convexGraph.connections,
viaTile: convexGraph.viaTile,
})
}
_step() {
let activeSubSolver = this.activeSubSolver as ViaGraphSolver | null
if (!activeSubSolver) {
activeSubSolver = this._initializeGraph()
if (!activeSubSolver) {
this.solved = true
return
}
this.activeSubSolver = activeSubSolver
this.lastActiveSubSolver = activeSubSolver
}
activeSubSolver.step()
if (activeSubSolver.solved) {
this._processResults(activeSubSolver)
this.lastActiveSubSolver = activeSubSolver
this.activeSubSolver = null
this.solved = true
} else if (activeSubSolver.failed) {
this.error = activeSubSolver.error
this.lastActiveSubSolver = activeSubSolver
this.activeSubSolver = null
this.failed = true
}
}
private _upsertGlobalVia(
viasByPosition: Map<
string,
{
center: { x: number; y: number }
diameter: number
connectedTo: Set<string>
}
>,
position: { x: number; y: number },
diameter: number,
connectionName: string,
) {
const posKey = `${position.x.toFixed(4)},${position.y.toFixed(4)}`
if (!viasByPosition.has(posKey)) {
viasByPosition.set(posKey, {
center: { x: position.x, y: position.y },
diameter,
connectedTo: new Set(),
})
}
viasByPosition.get(posKey)!.connectedTo.add(connectionName)
}
private _upsertRouteViaRegion(
routeViaRegions: ViaRegion[],
position: { x: number; y: number },
diameter: number,
connectionName: string,
regionId: string,
) {
if (
routeViaRegions.some(
(v) =>
Math.abs(v.center.x - position.x) < 0.01 &&
Math.abs(v.center.y - position.y) < 0.01,
)
) {
return
}
routeViaRegions.push({
viaRegionId: regionId,
center: { x: position.x, y: position.y },
diameter,
connectedTo: [connectionName],
})
}
private _appendRoutePoint(
routePoints: Array<{ x: number; y: number; z: number }>,
point: { x: number; y: number; z: number },
) {
const lastPoint = routePoints[routePoints.length - 1]
if (
lastPoint &&
Math.abs(lastPoint.x - point.x) <= 1e-6 &&
Math.abs(lastPoint.y - point.y) <= 1e-6 &&
lastPoint.z === point.z
) {
return
}
routePoints.push(point)
}
private _parseViaRegionNetName(regionId: string): string | null {
const marker = ":v:"
const markerIndex = regionId.lastIndexOf(marker)
if (markerIndex !== -1) return regionId.slice(markerIndex + marker.length)
const lastColon = regionId.lastIndexOf(":")
if (lastColon === -1) return regionId
return regionId.slice(lastColon + 1)
}
private _parseViaRegionTilePrefix(regionId: string): string | null {
const marker = ":v:"
const markerIndex = regionId.lastIndexOf(marker)
if (markerIndex <= 0) return null
return regionId.slice(0, markerIndex)
}
private _selectViasForTraversedRegion(
viaTile: ViaTile,
viaRegion: JRegion,
): ViaData[] {
const netName = this._parseViaRegionNetName(viaRegion.regionId)
if (!netName) return []
const viasForNet = viaTile.viasByNet[netName]
if (!viasForNet || viasForNet.length === 0) return []
const tilePrefix = this._parseViaRegionTilePrefix(viaRegion.regionId)
if (!tilePrefix) return viasForNet
const tileScopedVias = viasForNet.filter((via) =>
via.viaId.startsWith(`${tilePrefix}:`),
)
return tileScopedVias.length > 0 ? tileScopedVias : viasForNet
}
private _findNearestVia(vias: ViaData[], point: { x: number; y: number }) {
let best: ViaData | null = null
let bestDistance = Infinity
for (const via of vias) {
const dx = via.position.x - point.x
const dy = via.position.y - point.y
const distance = dx * dx + dy * dy
if (distance < bestDistance) {
bestDistance = distance
best = via
}
}
return best
}
private _getBottomRoutePointsBetweenVias(
viaTile: ViaTile,
viasForRegion: ViaData[],
entryVia: ViaData,
exitVia: ViaData,
): Array<{ x: number; y: number }> | null {
if (entryVia.viaId === exitVia.viaId) {
return [entryVia.position]
}
const viaIdSet = new Set(viasForRegion.map((via) => via.viaId))
const bottomSegments = viaTile.routeSegments.filter(
(routeSegment) =>
routeSegment.layer === "bottom" &&
routeSegment.segments.length >= 2 &&
viaIdSet.has(routeSegment.fromPort) &&
viaIdSet.has(routeSegment.toPort),
)
const adjacency = new Map<
string,
Array<{ to: string; points: Array<{ x: number; y: number }> }>
>()
const addEdge = (
from: string,
to: string,
points: Array<{ x: number; y: number }>,
) => {
if (!adjacency.has(from)) adjacency.set(from, [])
adjacency.get(from)!.push({ to, points })
}
for (const routeSegment of bottomSegments) {
addEdge(routeSegment.fromPort, routeSegment.toPort, routeSegment.segments)
addEdge(
routeSegment.toPort,
routeSegment.fromPort,
[...routeSegment.segments].reverse(),
)
}
const queue = [entryVia.viaId]
const visited = new Set<string>([entryVia.viaId])
const prev = new Map<
string,
{ from: string; points: Array<{ x: number; y: number }> }
>()
while (queue.length > 0) {
const viaId = queue.shift()!
if (viaId === exitVia.viaId) break
for (const edge of adjacency.get(viaId) ?? []) {
if (visited.has(edge.to)) continue
visited.add(edge.to)
prev.set(edge.to, { from: viaId, points: edge.points })
queue.push(edge.to)
}
}
if (!prev.has(exitVia.viaId)) return null
const edgeChain: Array<Array<{ x: number; y: number }>> = []
let cursor = exitVia.viaId
while (cursor !== entryVia.viaId) {
const step = prev.get(cursor)
if (!step) return null
edgeChain.push(step.points)
cursor = step.from
}
edgeChain.reverse()
const pathPoints: Array<{ x: number; y: number }> = []
for (const points of edgeChain) {
for (const point of points) {
const lastPoint = pathPoints[pathPoints.length - 1]
if (
!lastPoint ||
Math.abs(lastPoint.x - point.x) > 1e-6 ||
Math.abs(lastPoint.y - point.y) > 1e-6
) {
pathPoints.push(point)
}
}
}
return pathPoints.length > 0 ? pathPoints : null
}
private _appendViaUsage(
viasByPosition: Map<
string,
{
center: { x: number; y: number }
diameter: number
connectedTo: Set<string>
}
>,
routeViaRegions: ViaRegion[],
connectionName: string,
regionId: string,
via: ViaData | null,
) {
if (!via) return
this._upsertGlobalVia(
viasByPosition,
via.position,
via.diameter,
connectionName,
)
this._upsertRouteViaRegion(
routeViaRegions,
via.position,
via.diameter,
connectionName,
regionId,
)
}
private _processResults(viaGraphSolver: ViaGraphSolver) {
this.solvedRoutes = []
const viaTile = viaGraphSolver.viaTile
const fallbackViaDiameter = viaTile
? this._getViaTileDiameter(viaTile)
: 0.3
const viasByPosition: Map<
string,
{
center: { x: number; y: number }
diameter: number
connectedTo: Set<string>
}
> = new Map()
for (const solvedRoute of viaGraphSolver.solvedRoutes) {
const connectionName = solvedRoute.connection.connectionId
const rootConnectionName =
this.rootConnectionNameByConnectionId.get(connectionName)
const routePoints: Array<{ x: number; y: number; z: number }> = []
const routeViaRegions: ViaRegion[] = []
const path = solvedRoute.path
if (path.length === 0) continue
const firstPort = path[0].port as JPort
this._appendRoutePoint(routePoints, {
x: firstPort.d.x,
y: firstPort.d.y,
z: 0,
})
for (let i = 1; i < path.length; i++) {
const previousCandidate = path[i - 1]
const currentCandidate = path[i]
const previousPoint = {
x: previousCandidate.port.d.x,
y: previousCandidate.port.d.y,
}
const currentPoint = {
x: currentCandidate.port.d.x,
y: currentCandidate.port.d.y,
}
const traversedRegion = currentCandidate.lastRegion as
| JRegion
| undefined
if (!traversedRegion?.d?.isViaRegion || !viaTile) {
this._appendRoutePoint(routePoints, {
x: currentPoint.x,
y: currentPoint.y,
z: 0,
})
continue
}
const viasForRegion = this._selectViasForTraversedRegion(
viaTile,
traversedRegion,
)
if (viasForRegion.length === 0) {
this._appendRoutePoint(routePoints, {
x: currentPoint.x,
y: currentPoint.y,
z: 0,
})
continue
}
const entryVia = this._findNearestVia(viasForRegion, previousPoint)
const exitVia = this._findNearestVia(viasForRegion, currentPoint)
if (!entryVia || !exitVia) {
this._appendRoutePoint(routePoints, {
x: currentPoint.x,
y: currentPoint.y,
z: 0,
})
continue
}
const bottomPoints = this._getBottomRoutePointsBetweenVias(
viaTile,
viasForRegion,
entryVia,
exitVia,
)
if (!bottomPoints || bottomPoints.length === 0) {
this._appendRoutePoint(routePoints, {
x: currentPoint.x,
y: currentPoint.y,
z: 0,
})
continue
}
this._appendViaUsage(
viasByPosition,
routeViaRegions,
connectionName,
traversedRegion.regionId,
entryVia,
)
this._appendViaUsage(
viasByPosition,
routeViaRegions,
connectionName,
traversedRegion.regionId,
exitVia,
)
this._appendRoutePoint(routePoints, {
x: entryVia.position.x,
y: entryVia.position.y,
z: 0,
})
this._appendRoutePoint(routePoints, {
x: entryVia.position.x,
y: entryVia.position.y,
z: 1,
})
for (const point of bottomPoints) {
this._appendRoutePoint(routePoints, { x: point.x, y: point.y, z: 1 })
}
this._appendRoutePoint(routePoints, {
x: exitVia.position.x,
y: exitVia.position.y,
z: 1,
})
this._appendRoutePoint(routePoints, {
x: exitVia.position.x,
y: exitVia.position.y,
z: 0,
})
this._appendRoutePoint(routePoints, {
x: currentPoint.x,
y: currentPoint.y,
z: 0,
})
}
const routeVias = routeViaRegions.map((viaRegion) => ({
x: viaRegion.center.x,
y: viaRegion.center.y,
}))
this.solvedRoutes.push({
capacityMeshNodeId: this.nodeWithPortPoints.capacityMeshNodeId,
connectionName,
rootConnectionName,
traceThickness: this.traceWidth,
viaDiameter:
routeViaRegions.length > 0
? Math.max(
...routeViaRegions.map((viaRegion) => viaRegion.diameter),
)
: fallbackViaDiameter,
route: routePoints,
vias: routeVias,
viaRegions: routeViaRegions,
})
}
let viaIndex = 0
this.vias = Array.from(viasByPosition.values()).map((viaInfo) => ({
viaRegionId: `via_${viaIndex++}`,
center: viaInfo.center,
diameter: viaInfo.diameter,
connectedTo: Array.from(viaInfo.connectedTo),
}))
}
getOutput(): HighDensityIntraNodeRouteWithVias[] {
return this.solvedRoutes
}
getOutputVias(): ViaRegion[] {
return this.vias
}
override visualize() {
if (this.activeSubSolver) {
return this.activeSubSolver.visualize()
}
if (this.lastActiveSubSolver) {
return this.lastActiveSubSolver.visualize()
}
return super.visualize()
}
}