We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c080ff0 commit 3913484Copy full SHA for 3913484
src/bindings/utils/testBindingBinary.ts
@@ -203,7 +203,7 @@ if (process.env.TEST_BINDING_CP === "true" && (process.parentPort != null || pro
203
const gpuType = binding.getGpuType();
204
void (gpuType as BuildGpu satisfies typeof gpuType);
205
if (gpuType !== message.gpu)
206
- throw new Error(`GPU type mismatch. Expected: ${message.gpu}, got: ${gpuType}`);
+ throw new Error(`Binary GPU type mismatch. Expected: ${message.gpu}, got: ${gpuType}`);
207
208
sendMessage({type: "done"});
209
} catch (err) {
0 commit comments