Skip to content

Commit 5d282bf

Browse files
committed
*: ensure exhaustiveness on switches
1 parent 218b3c3 commit 5d282bf

File tree

6 files changed

+33
-2
lines changed

6 files changed

+33
-2
lines changed

discojs/discojs-core/src/aggregator/base.ts

+7-2
Original file line numberDiff line numberDiff line change
@@ -119,16 +119,21 @@ export abstract class Base<T> {
119119
switch (step) {
120120
case AggregationStep.ADD:
121121
console.log(`> Adding contribution from node ${from ?? '"unknown"'} for round (${this.communicationRound}, ${this.round})`)
122-
return
122+
break
123123
case AggregationStep.UPDATE:
124124
if (from === undefined) {
125125
return
126126
}
127127
console.log(`> Updating contribution from node ${from} for round (${this.communicationRound}, ${this.round})`)
128-
return
128+
break
129129
case AggregationStep.AGGREGATE:
130130
console.log('*'.repeat(80))
131131
console.log(`Buffer is full. Aggregating weights for round (${this.communicationRound}, ${this.round})\n`)
132+
break
133+
default: {
134+
const _: never = step
135+
throw new Error('should never happen')
136+
}
132137
}
133138
}
134139

discojs/discojs-core/src/models/gpt/config.ts

+4
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,9 @@ export function getModelSizes (modelType: ModelType): Required<ModelSize> {
7373
return { nLayer: 4, nHead: 4, nEmbd: 128 }
7474
case 'gpt-nano':
7575
return { nLayer: 3, nHead: 3, nEmbd: 48 }
76+
default: {
77+
const _: never = modelType
78+
throw new Error("should never happen")
79+
}
7680
}
7781
}

discojs/discojs-core/src/training/disco.ts

+8
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@ export class Disco {
5656
case 'local':
5757
options.client = new clients.Local(options.url, task, options.aggregator)
5858
break
59+
default: {
60+
const _: never = options.scheme
61+
throw new Error('should never happen')
62+
}
5963
}
6064
}
6165
if (options.informant === undefined) {
@@ -69,6 +73,10 @@ export class Disco {
6973
case 'local':
7074
options.informant = new informants.LocalInformant(task)
7175
break
76+
default: {
77+
const _: never = options.scheme
78+
throw new Error('should never happen')
79+
}
7280
}
7381
}
7482
if (options.logger === undefined) {

server/src/router/decentralized/server.ts

+4
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,10 @@ export class Decentralized extends Server {
120120
}
121121
break
122122
}
123+
default: {
124+
const _: never = msg
125+
throw new Error('should never happen')
126+
}
123127
}
124128
} catch (e) {
125129
console.error('when processing WebSocket message:', e)

web-client/src/clients.ts

+5
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,10 @@ export function getClient (trainingScheme: Required<Task['trainingInformation'][
1212
return new clients.federated.FederatedClient(CONFIG.serverUrl, task, aggregator)
1313
case 'local':
1414
return new clients.Local(CONFIG.serverUrl, task, aggregator)
15+
default: {
16+
// eslint-disable-next-line no-unused-vars
17+
const _: never = trainingScheme
18+
throw new Error('should never happen')
19+
}
1520
}
1621
}

web-client/src/components/training/Trainer.vue

+5
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,11 @@ export default defineComponent({
131131
case 'local':
132132
this.trainingInformant = new informant.LocalInformant(...args)
133133
break
134+
default: {
135+
// eslint-disable-next-line no-unused-vars
136+
const _: never = newScheme
137+
throw new Error('should never happen')
138+
}
134139
}
135140
}
136141
},

0 commit comments

Comments
 (0)