-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworkFunction.js
More file actions
303 lines (256 loc) · 7.17 KB
/
workFunction.js
File metadata and controls
303 lines (256 loc) · 7.17 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
/*
* @file workFunction.js
*
* @author Erin Peterson, erin@distributive.network
* @author Mehedi Arefin, mehedi@distributive.network
* @date Oct 25th, 2022
*/
'use strict';
/**
* Work function that is passed to DCP Worker
* @async
* @function
* @name workFunction
* @param { object } sliceData
* @param { object } labels
*/
async function workFunction(sliceData, labels, preprocess, postprocess, pythonPackages, modelArg) {
progress(0);
require('dcp-wasm.js');
var model, packages, preStr, postStr;
if (!modelArg)
{
const moduleInput = require('module.js');
model = b64ToArrayBuffer(moduleInput.model);
packages = moduleInput.packages;
preStr = atob(moduleInput.preprocess);
postStr = atob(moduleInput.postprocess);
}
else
{
model = b64ToArrayBuffer(modelArg);
preStr = preprocess;
postStr = postprocess;
packages = pythonPackages;
}
// DECLARE VARIABLES
let feeds = {};
let finalResult = {};
let infResult = {};
const numInputs = Object.keys(sliceData.b64Data).length;
// CREATE ORT SESSION
progress(0.1);
if (!globalThis.ort) {
globalThis.ort = require('dcp-ort.js');
};
ort.env.wasm.simd = true;
console.log(ort.env.versions);
// add else -> comments get run
if (!globalThis.session) {
globalThis.session = await ort.InferenceSession.create(model, {
executionProviders : [labels['webgpu'] ? 'webgpu' : 'wasm'],
graphOptimizationLevel: 'all'
});
}
const inputNames = session.inputNames;
const outputNames = session.outputNames;
progress(0.2);
let _progress = 0.2;
// DECLARE UTIL FUNCTIONS
/**
* Convert B64 to Array Buffer in DCP work function
* @function
* @name b64ToArrayBuffer
* @param { string } base64
* @returns { Uint8Array.buffer }
*/
function b64ToArrayBuffer(base64) {
const binary = atob(base64);
const len = binary.length;
const bytes = new Uint8Array(len);
for (let i = 0; i < len; i++) {
bytes[i] = binary.charCodeAt(i);
}
return bytes.buffer;
};
/**
* Map inference results from a list of key-value pairs into an object in DCP work function
* @function
* @name mapToObj
* @param { Map<string, string>} m - Map which is to be converted to an object
* @returns { object } obj
*/
function mapToObj(m) {
const obj = Object.fromEntries(m);
for (const key of Object.keys(obj)) {
if (obj[ key ].constructor.name == 'Map') {
obj[ key ] = mapToObj(obj[ key ]);
}
}
return obj;
};
/**
* Performs the inference on the feeds
* @async
* @function
* @name runInference
* @param { object } feeds
* @returns { Promise<object> } infOut
*/
async function runInference(feeds) {
const infStart = performance.now();
const infOut = await session.run(feeds);
return infOut;
};
/**
* Python Work Function
* @async
* @function
* @name pythonWorkFunction
* @param { Array<string> }packages
* @param { object } sliceData
* @param { object } labels
* @returns { object } finalResult
*/
async function pythonWorkFunction(packages, sliceData, labels) {
// GET PYODIDE CORE
if (!globalThis.pyodideCore) {
globalThis.pyodideCore = require('pyodide-core.js');
}
if (!globalThis.pyodide) {
globalThis.pyodide = await pyodideCore.pyodideInit();
}
// PREP PYTHON PACKAGES
await pyodideCore.loadPackage(packages);
// PUT STRINGS IN PYTHON SPACE
globalThis.preStr = preStr;
globalThis.postStr = postStr;
// WRITE PRE AND POST PROCESS FUNCTIONS TO DISK
pyodide.runPython(`
import js
with open('./preprocess.py', 'w') as f:
f.write( js.globalThis.preStr )
with open('./postprocess.py', 'w') as f:
f.write( js.globalThis.postStr )
`);
// IMPORT PRE AND POST PROCESS FUNCTIONS
try {
preprocess = pyodide.runPython(`
import preprocess
preprocessFunction = [ i for i in dir(preprocess) if 'preprocess' == i.lower() ]
pythonPre = getattr( preprocess, preprocessFunction[0] )
pythonPre
`);
postprocess = pyodide.runPython(`
import postprocess
postprocessFunction = [ i for i in dir(postprocess) if 'postprocess' in i.lower() ];
pythonPost = getattr( postprocess, postprocessFunction[0] )
pythonPost
`);
} catch(error) {
const stack = error.message.split('\n');
const errorMsg = stack[stack.length - 2];
console.log('ahhhhhhhhhhhh error', error)
return {
'code': 'pyodide',
'msg' : errorMsg,
'file': labels['fileID']
};
}
// CORE LOOP
for (const [ key, value ] of Object.entries(sliceData.b64Data)) {
progress(_progress);
start = performance.now();
// DECODE INPUT
labels['fileID'] = key;
const b64Input = value;
const abInput = b64ToArrayBuffer(b64Input);
// CONVERT AB TO BYTES AND RUN PYTHON PREPROCESS
pyodide.globals.set('preprocessArgs', [abInput, inputNames]);
const preStart = performance.now();
try {
pyPreOut = pyodide.runPython(`
import numpy as np
preprocessArgs = preprocessArgs.to_py()
bytesInput = preprocessArgs[0].tobytes()
inputNames = preprocessArgs[1]
inputNames = np.array(inputNames)
feed = pythonPre(bytesInput, inputNames)
for(key, array) in feed.items():
feed[key] = np.ascontiguousarray(array, dtype=array.dtype)
feed
`);
} catch(error) {
const stack = error.message.split('\n');
const errorMsg = stack[stack.length - 2];
return {
'code': 'preprocess',
'msg' : errorMsg,
'file': labels['fileID']
};
}
pyodide.globals.pop('preprocessArgs');
// CONVERT NP ARRAY TO ONNX TENSOR
for (const key of pyPreOut.keys()) {
const value = pyPreOut.get(key);
feeds[ key ] = new ort.Tensor(
value.dtype.name,
value.getBuffer().data,
value.shape.toJs());
};
// RUN INFERENCE
try {
infResult = await runInference(feeds);
feeds = {};
} catch(error) {
return {
'code': 'inference',
'msg' : error.message,
'file': labels['fileID']
};
}
for (const key of Object.keys(infResult)) {
const value = infResult[key];
value.data_buffer = value.data.buffer;
infResult[key] = value;
};
const postStart = performance.now();
pyodide.globals.set('postprocessArgs', [infResult, labels, outputNames]);
try {
infResult = pyodide.runPython(`
import numpy as np
postprocessArgs = postprocessArgs.to_py()
outData = postprocessArgs[0]
labels = postprocessArgs[1]
outputNames = postprocessArgs[2]
for key, value in outData.items():
outDims = value.dims.to_py()
outType = str(value.type)
pyOutData = value.data_buffer
pyOutData = pyOutData.to_py()
outData[key] = np.frombuffer(pyOutData.tobytes(), dtype = outType).reshape(outDims)
pyOut = pythonPost(outData, labels, outputNames)
pyOut
`);
} catch(error) {
const stack = error.message.split('\n');
const errorMsg = stack[stack.length - 2];
return {
'code': 'postprocess',
'msg' : errorMsg,
'file': labels['fileID']
};
}
infResult = infResult.toJs();
infResult = mapToObj(infResult);
finalResult[ key ] = infResult;
_progress = _progress + (.8 / numInputs);
}
return finalResult;
};
finalResult = await pythonWorkFunction(packages, sliceData, labels);
// RETURN RESULTS
progress(1);
return finalResult;
}
exports.workFunction = workFunction;