File tree 6 files changed +33
-2
lines changed
server/src/router/decentralized
6 files changed +33
-2
lines changed Original file line number Diff line number Diff line change @@ -119,16 +119,21 @@ export abstract class Base<T> {
119
119
switch ( step ) {
120
120
case AggregationStep . ADD :
121
121
console . log ( `> Adding contribution from node ${ from ?? '"unknown"' } for round (${ this . communicationRound } , ${ this . round } )` )
122
- return
122
+ break
123
123
case AggregationStep . UPDATE :
124
124
if ( from === undefined ) {
125
125
return
126
126
}
127
127
console . log ( `> Updating contribution from node ${ from } for round (${ this . communicationRound } , ${ this . round } )` )
128
- return
128
+ break
129
129
case AggregationStep . AGGREGATE :
130
130
console . log ( '*' . repeat ( 80 ) )
131
131
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
+ }
132
137
}
133
138
}
134
139
Original file line number Diff line number Diff line change @@ -73,5 +73,9 @@ export function getModelSizes (modelType: ModelType): Required<ModelSize> {
73
73
return { nLayer : 4 , nHead : 4 , nEmbd : 128 }
74
74
case 'gpt-nano' :
75
75
return { nLayer : 3 , nHead : 3 , nEmbd : 48 }
76
+ default : {
77
+ const _ : never = modelType
78
+ throw new Error ( "should never happen" )
79
+ }
76
80
}
77
81
}
Original file line number Diff line number Diff line change @@ -56,6 +56,10 @@ export class Disco {
56
56
case 'local' :
57
57
options . client = new clients . Local ( options . url , task , options . aggregator )
58
58
break
59
+ default : {
60
+ const _ : never = options . scheme
61
+ throw new Error ( 'should never happen' )
62
+ }
59
63
}
60
64
}
61
65
if ( options . informant === undefined ) {
@@ -69,6 +73,10 @@ export class Disco {
69
73
case 'local' :
70
74
options . informant = new informants . LocalInformant ( task )
71
75
break
76
+ default : {
77
+ const _ : never = options . scheme
78
+ throw new Error ( 'should never happen' )
79
+ }
72
80
}
73
81
}
74
82
if ( options . logger === undefined ) {
Original file line number Diff line number Diff line change @@ -120,6 +120,10 @@ export class Decentralized extends Server {
120
120
}
121
121
break
122
122
}
123
+ default : {
124
+ const _ : never = msg
125
+ throw new Error ( 'should never happen' )
126
+ }
123
127
}
124
128
} catch ( e ) {
125
129
console . error ( 'when processing WebSocket message:' , e )
Original file line number Diff line number Diff line change @@ -12,5 +12,10 @@ export function getClient (trainingScheme: Required<Task['trainingInformation'][
12
12
return new clients . federated . FederatedClient ( CONFIG . serverUrl , task , aggregator )
13
13
case 'local' :
14
14
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
+ }
15
20
}
16
21
}
Original file line number Diff line number Diff line change @@ -131,6 +131,11 @@ export default defineComponent({
131
131
case ' local' :
132
132
this .trainingInformant = new informant .LocalInformant (... args )
133
133
break
134
+ default : {
135
+ // eslint-disable-next-line no-unused-vars
136
+ const _: never = newScheme
137
+ throw new Error (' should never happen' )
138
+ }
134
139
}
135
140
}
136
141
},
You can’t perform that action at this time.
0 commit comments