Skip to content

Commit

Permalink
fix: Removed debug flug
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielHauschildt committed Nov 27, 2024
1 parent 919c120 commit ade127e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web/src/onnx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ async function createOnnxSession(model: any, config: Config) {
const executionProviders = [useWebGPU ? 'webgpu' : 'wasm'];
const ort = useWebGPU ? ort_gpu : ort_cpu;

if (true || config.debug) {
if (config.debug) {
console.debug('\tUsing WebGPU:', useWebGPU);
console.debug('\tProxy to Worker:', proxyToWorker);

Expand Down

0 comments on commit ade127e

Please sign in to comment.