Results 836 comments of Vladimir Mandic

@gyagp any progress on **emscripten** `worker.js` issue i've mentioned - it uses global `onmessage` handler so it intercepts all messages including the one you're using.

@qjia7 yup, aware of `dataToGPU`, but i'm not a GLSL expert, so it will take me a while to come up with a working code. just feels natural that `toPixel`...

@qjia7 example is always useful to have (currently there is not much about `dataToGPU`) and can be used immediately on the breaking change for `toPixels`, well, some changes can be...

@pyu10055 `gpu-pipeline` example is 500+ lines of code split into 6 js files (*not modules*) that are visible to each other only via global namespace - this kind of project...

@qjia7 imo, backend to decide unless canvas already has a context - in which case it should fall back to using whatever is already allocated, but its ok if its...

got a working example with single typescript module (200 loc, with full strong typing) and with a single exported method: source code: usage: ```js const data = tensor.dataToGPU({ customTexShape: [canvas.width,...

@ygf8 its not necessary to call `syncWait` to draw data at all. the issue is that some model execution has items on webgl pipeline even after `model.execute` finishes, so if...

> Is there any way to force the webgl cleanup associated to model execution or reset it because the model has already given the result we expected Maybe, but i...