Guodong Chen
Guodong Chen
好的
================== This is my situation: I have ported OpenVDB to the web platform, and OpenVDB relies on TBB for its multi-threaded implementation. The porting process went smoothly, of course. However,...
================== But I conducted an experiment using std::thread, and the code is roughly like the following. ``` static std::vector threads; for (int i = 0; i < 8; ++i) {...
=============== I have conducted some research, and I modified the source code of TBB by adding logging for thread creation in the `rml_thread_monitor.h` file. Through analyzing the logs, I discovered...
But I have found a possible solution, which is to execute the following code segment after the program starts, acting as the warm-up code for =============== ``` { #pragma optimize("",...
> Hi, Did you face this issue with TBB prior to your porting to WASM? As you have said - it doesn't seem to be a WASM issue, but an...
HI @JhaShweta1 ============================= I conducted the same experiment on `OpenSubdiv`, which is a geometry algorithm library specifically designed for mesh subdivision. I discovered some strange phenomena. The phenomenon is that...
> elalish/manifold#653 (comment) There seems to be no way
Certainly, TBB WebAssembly (WASM) is very unstable, but some open-source projects depend on it. It seems like the official team doesn't pay much attention to the bugs discussed. I wonder...
> Hi All, sorry to hear you had such problem. Our team are not yet experts in WASM. We are also new to this technology so it takes longer time...