Vasco Flores
Vasco Flores
following this
cvschaefer one interesting workaround I just got, was simply to disable cssembed and the less is parsed well, still don't know what's going on
I can see a possible division by zero on the line below that: https://github.com/javieryanez/nodemcu-modules/blob/master/bmp180/bmp180.lua#L96 Which as you can see on Bosch provided driver, based on the same algorithms, does a...
I also had to remove that std::string() constructor in [background-filter.cpp#L282](https://github.com/royshil/obs-backgroundremoval/blob/main/src/background-filter.cpp#L282) and hopefully let the compiler handle the string copy, now all works perfect. I'm using gcc 7.5.0, OBS Studio 27.0.1...
that's just sick dude, do it
I've been having the same problem as mrcmorales, it could be related to recent updates on Synfomy but for now I'm clueless, I'll do what I can to help tho....
Gracias ricardclau I already analysed the commits way back to that, it's interesting that such commit is working which I noticed was yours. Particularly interesting is one of the latest...
Spot-on @biozshock ! I compiled the latest commit with `-arch=sm_21` which is equivalent to `-arch=compute_21 -code=compute_21,sm_21` instead of the default `-arch=compile_10`and my GTX 550 Ti is now displaying the best...
I didn't use `-arch=sm_21` for some special reason, just to what my card seemed most fit and checking the syntax at the cuda doc. I may try other settings when...
@biozshock you are right indeed there is no compute_21 defined I guess `-arch=sm_21` is a shorthand to `-arch=compute_20 -code=compute_20,sm_21` then. I never really went much through on cuda programming anyway...