Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Bug / Crash  Burst not working at all
#16
(04-11-2020, 12:53 PM)whitexroft Wrote: Thank you, that was it. I aplogize for being rude. Since I wasnt actually deep-profiling, I didnt expect it to behave like that.

So now I just need to figure out the freezes, and we can finally go with burst in the project. I ll try to make a repro sample for you Sonrisa It's not that we prefer Burst over Oni library, its that we are building for the consoles, and there are no Oni libraries for these in the package.

No need to apologize! Sonrisa

You've probably noticed that when enabling deep profiling in-editor, Unity warns you that it will need to recompile all of your scripts. This is because deep profiling actually changes your code: it inserts extra profiling tools in every function, to be able to measure how much time each call takes. This not only makes your code much slower, it also consumes extra memory.

When you build a standalone version, you can't recompile things on-the-fly when attaching the profiler. Your code has already been compiled will all profiling scaffolding built-in, so you pay the price upfront.

If you can send a repro project I'd gladly take a look at it and investigate.
Reply


Messages In This Thread
Burst not working at all - by manurocker95 - 05-10-2020, 06:00 PM
RE: Burst not working at all - by josemendez - 05-10-2020, 08:26 PM
RE: Burst not working at all - by manurocker95 - 05-10-2020, 08:35 PM
RE: Burst not working at all - by josemendez - 06-10-2020, 07:29 AM
RE: Burst not working at all - by manurocker95 - 06-10-2020, 01:20 PM
RE: Burst not working at all - by josemendez - 06-10-2020, 01:26 PM
RE: Burst not working at all - by whitexroft - 03-11-2020, 06:39 PM
RE: Burst not working at all - by josemendez - 04-11-2020, 08:36 AM
RE: Burst not working at all - by whitexroft - 04-11-2020, 10:43 AM
RE: Burst not working at all - by josemendez - 04-11-2020, 10:52 AM
RE: Burst not working at all - by whitexroft - 04-11-2020, 11:17 AM
RE: Burst not working at all - by josemendez - 04-11-2020, 11:22 AM
RE: Burst not working at all - by whitexroft - 04-11-2020, 12:05 PM
RE: Burst not working at all - by josemendez - 04-11-2020, 12:18 PM
RE: Burst not working at all - by whitexroft - 04-11-2020, 12:53 PM
RE: Burst not working at all - by josemendez - 04-11-2020, 01:17 PM
RE: Burst not working at all - by josemendez - 04-11-2020, 01:54 PM
RE: Burst not working at all - by whitexroft - 04-11-2020, 02:16 PM
RE: Burst not working at all - by josemendez - 04-11-2020, 02:32 PM
RE: Burst not working at all - by whitexroft - 04-11-2020, 02:55 PM
RE: Burst not working at all - by josemendez - 04-11-2020, 03:53 PM