I’m starting to like the sound of Dev Log Mondays… hope y’all enjoyed the slight-more-in-depth-than-usual dev log! Let me know if you want to see more in this style ❤️ P.S. I got a little carried away with the thumbnail
@rohitrajak51283 жыл бұрын
Yes. Bring it on Cherno.
@ManiacKnight3 жыл бұрын
We need more thumbnails like this 🙏
@zyansheep3 жыл бұрын
Have you ever programmed in rust?
@ianpan01023 жыл бұрын
Great thumbnail lol
@bigmistqke3 жыл бұрын
I really like these sort of devlogs. It's nice to follow along w ur dev process and to get in touch w the intricacies of working w gpus.
@mastershooter643 жыл бұрын
It's awesome that you actually acknowledge the help you got from the community and are humble
@jwadaow3 жыл бұрын
It's humble that you actually acknowledge the help you got from the video and are awesome.
@PrefoX3 жыл бұрын
@Roland Grange its not normal if I check all companys and how they act when they fucked up stuff...
@jamesmnguyen3 жыл бұрын
I actually encountered the same issue with the irradiance shaders. One way I solved this was to tile the renderings. Basically render a subset of the irradiance map and split the queuesubmit calls so the driver never kills the task. I considered changing the driver timeout threshold. But not every pc will have that modification applied.
@kebrus3 жыл бұрын
this comments needs more thumbs up, dividing work through time should work
@jamesmnguyen3 жыл бұрын
@@ginxxxxx I request elaboration.
@jamesmnguyen3 жыл бұрын
@@ginxxxxx Ok. How does this relate to the original comment?
@jamesmnguyen3 жыл бұрын
@@ginxxxxx I used the term as a visual explanation of what's going on. Not the literal definition of what the GPU does.
@kuroakevizago3 жыл бұрын
Epic thumnail 😅👌
@opressedrage3 жыл бұрын
your name is used to insult people in my country
@kuroakevizago3 жыл бұрын
@@opressedrage sorry, but my name is a the best gift I could ever had from my grandfather
@anis19303 жыл бұрын
@@opressedrage hahahah
@nicolaslavinicki40293 жыл бұрын
Don't got it, the thumbnail is form a movie or something?
@mistakenmeme3 жыл бұрын
@@opressedrage Based username then
@Mozartenhimer3 жыл бұрын
I've seen that happen in CUDA codes. As soon as you started describing when it happened, it rang bells in my head. The solution for that was to split the work into multiple dispatches.
@kvatikoss17303 жыл бұрын
So it takes less time?
@georgimirazchiyski20233 жыл бұрын
@@kvatikoss1730 the multiple dispatches altogether won't take less time, but each of those dispatches will take less time, which is what the driver is concerned about.
@grolich3 жыл бұрын
If, by changing the registry, you mean the Timeout Detection and Recovery registry keys, to my knowledge people just got used to always break up long computations into several short ones because of different issues it was causing. I sometimes think it has become a habit and most people don’t really think about it much anymore... they just avoid it by force of habit... apparently, sometimes, it’s good to be reminded...
3 жыл бұрын
This. If possible, can you split the compute shader or the data and do multiple compute passes and then combine the output?
@jamesmnguyen3 жыл бұрын
@ As long as the task has independent parts it can be split. In the case of irradiance calculations. Each Pixel of the cubemap is independent. But splitting that far down is bad for performance.
@hymnsfordisco3 жыл бұрын
"2048 is overkill, I just like to turn stuff up to 11". Nice binary joke
@tqwewe3 жыл бұрын
I didn't think it's a binary joke... it's a quote from a movie about turning the volume up to 11 (instead of 10)
@gamerkaue883 жыл бұрын
@@tqwewe It's because 2048 is 2¹¹
@tqwewe3 жыл бұрын
@The Cherno pls confirm
@bjarnestronstrup91223 жыл бұрын
@@gamerkaue88 I don't think he though of that you're just looking too much into it.
@VikingVertigo3 жыл бұрын
@@bjarnestronstrup9122 obviously it is both - the classic Spinal Tap reference and 2048 being 2^11
@OfficialFraq3 жыл бұрын
NVidia's tools are a godsend when it comes to graphics programming, I'm glad you fixed your Vulkan problems! :))
@Spartan3223 жыл бұрын
@ Or AMD.
@dimitar.bogdanov3 жыл бұрын
@@Spartan322 well that was kind of obvious
@Spartan3223 жыл бұрын
@@dimitar.bogdanov True, but even still, AMD doesn't do that. (not to mention most of the time they make it open source)
@delphicdescant3 жыл бұрын
@ This library claims to support Linux just fine. Are you sure? I haven't tried it, but I was interested in it. Not if you're right though.
@GuilhermeOliveira-kr8vw3 жыл бұрын
I had a similar problem while running some heavy polymer simulations in CUDA last year. It turns out that depending on the length of my polymer and the number of forces to calculate (that were random by design), the CUDA kernels would drop after 1 or 2 seconds. The solution? I needed to re-structure the memory layout and break down kernel calls. That was actually nice, because the code ran much faster after that. I heard that this is a safety feature. Like so, the work (and the heat) is distributed more evenly over all the processing units.
@martonkos57753 жыл бұрын
That thumbnail make me left OpenGL and move to Vulkan.
@eliaswenner78473 жыл бұрын
Good ducking luck ... You'll need it !
@martonkos57753 жыл бұрын
@@eliaswenner7847 Thank you man.😜 I'm sure I will need it.😅
@shambhav95343 жыл бұрын
I' currently being annoyed by GL_TRIANGLES.
@douplofigure3 жыл бұрын
@@martonkos5775 I personally actually found vulkan easier, there is no hidden 'magic' so you can often debug much easier.
@delphicdescant3 жыл бұрын
@@douplofigure Yes, this meme of Vulkan being super hard needs to end imo. It's cleaner, and cleaner is better for understanding.
@pw11693 жыл бұрын
Came across the compute shader crash a few months ago. We run two computer shaders on startup for our app, once to create a normal map from a height map, and one to set a mask in the alpha channel from a 2d polygon that's represented by a bunch of 2d lines. 2nd compute shader was crashing on some pc's, finally figured out the driver was dying from taking too long. So had to break up the compute shader into a couple of passes. Really makes me question using compute for large tasks if the driver can just crash the application, especially when we don't know the full range of cards our app runs on. A gl/vk call to disable the timeout would be really handy since setting client pc registry settings isn't ideal. Until then, the only fix is to be really really conservative with your compute calls!
@Feathomable3 жыл бұрын
I feel you. From time to time our buildserver used to crash from GPU timeouts from environment map filtering as part of a test because it had a slow GPU. Forced us to implement a faster filtering shader in the end.
@jgurtz3 жыл бұрын
Finally getting a chance to watch this and I have to say (in devops land), troubleshooting timeout issues in multi-tier apps is one of the more difficult issues that can happen. Here, the timeout is non-obvious and that's just crazy to try to figure out. All timeouts should be well documented, whether in api or part of a larger system!
@Pakillototaki2 жыл бұрын
We faced the same TDR crash while working on a Point cloud rendering system. It was super annoying because we set the points buffer to scale with the GPU VRAM (so the "better" the gpu, the more points you get loaded and rendered in a frame) so the crash appeared mostly in high end GPUs. This is the thing with graphics programming... more often than not you feel like you are working in the X-Files, dealing with supernatural forces.
@YeetHandle3 жыл бұрын
“Nvidia after math only works on Nvidia GPUs, in case that’s a surprise.” I don’t know why, but I found that hilarious.
@ludologian3 жыл бұрын
I thought you have mentioned Nvidia insight tool in the previous video lol , I'm happy that you debug it & resolved the issue it should be so satisfying thanks for explaining how you figured it out
@epicthief3 жыл бұрын
Watching the journey of someone making a whole engine from scratch has been 👏 can't wait for more
@epicthief3 жыл бұрын
@@ginxxxxx you'll have to watch to find out and subscribe to learn more!
@vikrams66613 жыл бұрын
"Make a video on Aftermath" great idea, can make other devs like you can solve driver crashes👍
@bigmistqke3 жыл бұрын
I love the internet so much. You have a problem? Shout it into the void and the void answers. Being a part of this collective knowledge s beautiful.
@RC-12903 жыл бұрын
19:50 this is fairly common. It's a feature of Windows called TDR (Timeout Detection and Recovery) to reduce the impact of GPU operations that hang for whatever reason. You CAN change it in the registry, but that's only really useful for debugging.
@RC-12903 жыл бұрын
As you found out, reducing the time various operations take is the real solution. But if you can't scale down the work-load you can sometimes split it over multiple frames or draw calls. It's somewhat similar to making sure windows doesn't think an application has crashed, by making sure you pump the message loop, except for GPU work, rather than CPU work.
@bancodrut3 жыл бұрын
From a user perspective this was also very informative. I have a GTX 770 and I get Device Lost crashes in Unreal Engine 4 games quite often and I didn't knew what could cause this (apparently it wasn't happening that often for everyone). Good to know what's up in the backbone, now I kinda know which settings I might try and tune down in the game settings/config file.
@roiiam3 жыл бұрын
best bet for you would be to change registry for Timeout detection and recovery (TDR) and might not need to lower any settings
@bancodrut3 жыл бұрын
@@roiiam actually tried that. Didn't helped, it would only freeze for longer (as long as TDR value) so the only thing changing is the driver's time to recovery. Leaving default value there is no freeze just straight crash/hung and recover. As stupid as it might seem the issue was a weirdly unstable overclock (modded vbios) on my end. The weird part is that it crashed only under certain workloads but very dependant on context transitions (sometimes spotted after 1h of gaming, other times after 5h). Quite hard to test for stability there.
@Braindrain853 жыл бұрын
Very interesting to see you solving errors. It also may help others and let them search in different places, to see where the issue lies.
@DBLCreations3 жыл бұрын
Man, the only thing i can say is: Hats off to you man! All that code! I know a little bit of coding. I'm a graphic (Web) Designer. But i don't come anywhere CLOSE to your skills. I'm so curious as to when it will be done. Even though, of course, you are never truly done but i mean, when it's finished up to point where one could use it, how it will look like etc... 😎This must be so much work man!
@nylok55973 жыл бұрын
Changing the watchdog timer will mask a similar issue in the future. Breaking the work into smaller chunks is you're best bet. Since the change is only local to you're pc
@comradepeter873 жыл бұрын
Meanwhile I'm still struggling to pass a vector to a function by reference..
@gmfCoding3 жыл бұрын
relatable
@royalsquad39923 жыл бұрын
me too lol but keep goin 🙃
@comradepeter873 жыл бұрын
Oh forgot to add, not in C++, in Rust. There's a huge difference here.
@thetrickster423 жыл бұрын
@@comradepeter87 You often want to pass a slice rather than a vector in Rust. Keep fighting that borrow checker, it's worth it! :)
@comradepeter873 жыл бұрын
@@thetrickster42 I'm actually getting an error of std::marker::Sized not being defined on vec (Animal just being a trait I created), when I pass a vector to a function. Could this be possibly solved by passing a slice?
@zechordlord2 жыл бұрын
The second issue is familiar to users of CUDA based ray-tracers. We literally had to edit that registry key to let renders finish.
@r.f.mineguy77153 жыл бұрын
This project is looking awesome! You’re explanations are always superb as well!
@SimonBuchanNz3 жыл бұрын
Pretty sure you're aware, but you can use #line directives in GLSL too, which you could use in your shader splitter to fix your error line number.
@DaddyFrosty Жыл бұрын
So that’s why it exists…
@aronseptianto81423 жыл бұрын
there's like a (somewhat) big red text whenever you open substance painter that says "can you edit this registry so the gpu won't freak out if there's a 10s operation"
@somekindofdevil3 жыл бұрын
Similar problem happens when using GPU heavy programs like Substance Designer/Painter. They recommend to change registry entries " TdrDelay " and " TdrDdiDelay " to a higher value. I always found it strange.
@samuelmungy91013 жыл бұрын
I made those two recommendations in the previous video! I'm glad you got to fix those bugs. I had my suspicions that we had the same issue :)
@Glyn-Leine3 жыл бұрын
This does sound familiar, I've had this happen before during point cloud generation. It only happened on NVidia cards though for us, and we were using OpenCL which is pretty unstable on Nvidia. we've had to split up the workload into multiple compute shader dispatch calls. On NV OpenCL calls longer than 5 seconds cause a timeout on OpenCL it throws a CL_OUT_OF_RESOURCES and then crashes the driver, and possibly the entire pc... On AMD OpenCL doesn't do anything until 15 seconds and then throws a CL_ERROR_KERNEL_TIMEOUT_TI. This is however configurable on AMD cards. not sure if you can configure it on NV as well. So I recommend doing something similar to what we did and do a little GPU performance analysis at startup to get a general guestimate, then we split up the compute calls into multiple smaller dispatches. we start with one we guestimated we could handle and slowly increase the size until we reach a sweet spot. yes, your compute dispatches will be slightly slower, but they'll be stable.
@BlenderhilfeDe3 жыл бұрын
yeah driver timeouts are horrible... we had this problem in blender too with gpu-raytracing in cycles... on complex scenes it will trigger a crash if a compute-cycle is taking to long in cuda/opencl
@antonrr903 жыл бұрын
Blender3D used to have "Hung GPU" problems all the time. "NVidia Timeout Settings" were capped at 2.0 sec. "Windows GPU Timeout" set at 2.0 sec. Renders with high memory usage by zone would take upwards of 4-5 sec. which would crash the driver. you would have to restart the driver, and in some cases restart the computer, because the driver would hard-crash. Nvidia was the biggest culprit, since you had to edit the Timeout Settings in a text editor, because it was not available in there shell application. Took we too weeks to track down a forum discussion pointing to the settings that needed to be changed.
@p2501853 жыл бұрын
Device lost is not a driver crash, it is a TDR. TDR occurs when DMA buffer execution takes too long (more than TdrDelay value, which is 2 sec by default). PageFault is not a driver crash. It is a Gpu hang, also visible as Tdr because in this case Gpu can't read the memory properly so it can't proceed next commands, so it goes into 'idle' state and currently executing DMA buffer time is > TdrDelay. Driver crash occurs when you pass invalid data to the API.
@JohnAmanar2 жыл бұрын
Great video! Yeah, the timeout registry setting was also required for Unreal's GPU lightmass calculations.
@joebhomenye3 жыл бұрын
if you want to be able to do the same amount of compute work while avoiding a timeout, break your compute task into smaller passes and use commandBuffer per pass (add a barrier between each pass to preserve your read & write order) so each level of your radiance cube map will run on its own commandBuffer
@bigmistqke3 жыл бұрын
That feeling when making a breakthrough when u bounced against a wall for so long... Bliss.
@taw3e83 жыл бұрын
I've actually met with this issue before while using some programm and the solution was to change the waiting time to a higher value in Windows paging files if I remember correctly
@AndrewCJP3 жыл бұрын
GPU's need run multiple jobs at the same time (especially on windows), So a job (like a VKCommandBuffer) is scheduled in smallish chunks. The GPU needs to limit the time taken for a context to drain/complete the chunk so it can switch to another context (for instance a Windows OS Job). This is similar to thread scheduling on a CPU core. Without this scheduling approach GPU operations would execute sequentially so the OS wouldn't be able to update the desktop while a game was rendering a frame. The main causes of Device Timeout/hung are: too complex compute shaders, certain memory faults or rendering super large triangles.
@jamesmnguyen3 жыл бұрын
After some experimentation. The GPU divides the work by vkQueueSubmit. Which was kinda annoying since I like to send a whole bunch of cmd buffers all at once.
@AndrewCJP3 жыл бұрын
@@jamesmnguyen Sort of. It is actually recommended (on both VK and DX12) to submit multiple cmd buffers in a single VKQueueSubmit to minimise the driver scheduling overhead(and allow some driver optimizations). The chunks of work only contain a few shader executions (compute or graphics) that have the same pipeline/GPU state set. A PSO change can cause the context to "Roll" as the GPU hardware needs to change configuration (for example, enable blending hardware unit) , causing a context switch at the same time.
@jamesmnguyen3 жыл бұрын
@@AndrewCJP That explains why trying to submit work too many times locks up my OS.
@TheDonsky3 жыл бұрын
I've faced the "compute shader taking too long" crash quite a bit frequently when working with CUDA. I've implemented an accelerated offline renderer about 3 years ago and that driver crash came up quite frequently. To get rid of the issue, you just open Nsight Monitor options (if you have that one installed) and change "Microsoft Display Driver" settings for that timeout. However, I would not recommend it. Haven't yet touched anything compute related with my "infant" Vulkan engine just yet, but with CUDA I was literally unable to move windows around when the compute kernels took too much time and the system was terribly unresponsive (I too have a GTX 1080ti, but once again, it was an offline renderer and the case was far worse for me because of the constant load that came with it). Just split the job into multiple dispatches and it should be both smoother and more stable. Kernel launch overhead is a real thing, but it's not that hard to strike balance and still maintain 99% of the performance, at least from my limited experience.
@officialVIGNUM3 жыл бұрын
Nsight Tutorial would be awsome! I’ve seen very few up to date tutorials related to it. And they don’t cover much knowledge. Also CUDA and Gpu occupancy would be nice topics
@2nafish1173 жыл бұрын
Is nobody going to talk about the epic thumbnail to this video?
@constexprThoughts3 жыл бұрын
Loved the "Yaaaayyy!!!". Good job! 👏👏👏👏
@helloworldmo3 жыл бұрын
I am programming machine learning app with numpy operations but man this is like godlike power to be able to program such complicated things in c++ 😂
@cannac69953 жыл бұрын
I thought for a second that this was a Disney Movie because of that thumbnail
@simoncowell10292 жыл бұрын
Question: Why have mipmaps for a skybox texture ? Are not mipmaps only for minification (and not magnification), and at 2048x2048, and being infinitely distant, are they not always going to be used at level 0, and therefore not require minification ?
@LittleRainGames3 жыл бұрын
In substance painter when you load it, it mentions that the program can crash if your nvidia driver has a setting enabled or disabled, something about how long it takes. Sounds like the same thing. I'll try loading it up and see, other programs probably set this automatically to get around this.
@vikashchouhan5043 жыл бұрын
Thumbnail was enough to make me excited.
@mayushkumar16233 жыл бұрын
Okay so Cherno is reading my mind! I had the same problem in my engine a few days ago. Just implemented irradiance filtering. Launched the sandbox and after a few seconds, my whole system froze dead. I am on arch btw running the open source amd drivers (amdgpu). Then i lowered the sample rate and it worked fine. Seems like a common issue. I'll use some crash reporting tool and further investigate this.
@DukeAbbaddon3 жыл бұрын
The WAIT code behaviour is most commonly to your programming, On load; A standard wait between cycles : In vulkan & Direct X RS
@EmanuilGlavchev3 жыл бұрын
Thanks for diving in properly :)
@GonziHere3 жыл бұрын
OMG that thumbnail with that title is pure gold :-D
@Daninshit3 жыл бұрын
Substance Painter needs to change something in the registry for the driver wait some more before decide to crash, and Blender in some cases with the Cycles cuda based render.
@thewhitefalcon85392 жыл бұрын
Far as I know, the GPU can't do literally anything else at all while your shader is running. If your shader takes 30 seconds the user's computer is, effectively, completely frozen for 30 seconds (because the screen is frozen). That's why the timeout is short.
@MatyyRdk3 жыл бұрын
I can't get those NVDBG shader dump files. I tried using the SDK and the standalone aftermath monitor that comes with Nsight Graphics with no luck. I have compiled the shaders with debugging symbols. Anyone knows how to get Aftermath to map the shaders to crash reports? Is it possible that it does not do the mapping if the crash did not occur in a shader?
@danyildiabin49533 жыл бұрын
That’s some nice debugging knowledge
@boozebeard95013 жыл бұрын
O that second crash problem sounds like the same thing early versions of substance painter had. At least it sounds very similar and there was a reg edit that increased the time the GPU would wait as a work around.
@TheSulross3 жыл бұрын
installed kitty shell program, which uses OpenGL, and it worked fine. installed neovim, which requires Vulcan and its been a no-go. (i have a NVidia graphics card). If there's no package manager way I can install Vulcan and have it just work, then Vulcan is not for me - will it ever become something that's mainstream, the way OpenGL became?
@Kazyek3 жыл бұрын
Since compute shaders are used to run heavy long-running computation on gpu (like mining), I guess there should be some way to write a long-running compute shader by providing some kind of notification to tell the driver it haven't hanged?
@johnspeny52153 жыл бұрын
Among the early birds today.
@beProsto3 жыл бұрын
among us would be shorter to say
@vertigo69823 жыл бұрын
His thumbnail looked like he was some 80s guy with a mullet.
@JakeDownsWuzHere3 жыл бұрын
lol it's been a while since i've seen one of your vids, and holy shit, you've basically built unity? lol nice!
@call_me_stan58873 жыл бұрын
Cherno, do you have another channel where you showcase your music?
@happydawg26633 жыл бұрын
I've used Nsight for a while, pretty good tool. There's something similar also for AMD but not as good at the moment at least as far as I'm aware of.
@thomaspayne91683 жыл бұрын
I had the exact same thing happen 2 days ago when implementing a compute shader for marching cubes, stack exchange helped me out a lot and I almost downloaded nvidia nsight, small world lol
@patrickwaterman49593 жыл бұрын
which is the best vulkan driver for gtx 1060 laptop for cemu emulator ?
@lifeartstudios62073 жыл бұрын
Would be very interested to know about any plans for vr support
@ShadowRocker242 жыл бұрын
I just met a problem with this as well, Vulkan instance-6 keeps popping up whenever i try to start Breath of the wild for the pc, in Cemu and I have no idea how to fix it, if you have any insight on this that be awesome right now
@XonfWu3 жыл бұрын
Can't agree more with your opinion on sharing experience with all other developers around the world. By the way, it seems like that the Nvidia Nsight has lots of problems, cause my VS 2019 has just became unusable after installing the CUDA toolkit. Finally, the VSE part of the Nsight is to blame for greatly slowing down Visual Studio 2019.
@EricWilliamsCG3 жыл бұрын
3:08 zoom in, enhance, zoom in, zoom in enhance zooooooom dang it. Guess youtube doesn't have those features yet.
@sddndsiduae4b-6883 жыл бұрын
i don't develop graphic engines for more that 15 years, but i always knew that you can't lock primary/only graphic card of computer for more that one second, and even now rare new GPU have ability to execute different application (i.e. processes in terms of OS) simultaniously, which means while (shader/compute) program is running, no other process can access gpu, and in case of primary gpu on pc, for user that means that his pc hangs(don't react to any input in reasonable amount of time). i.e. don't run (singe) shader/compute program for more that 1 second, give others processes to use video card, or use separate (non primary) gpu and acquire it in exclusive use from OS. this one was pretty obvious for me.
@misterluckyowl69563 жыл бұрын
Hey Cherno. What do you think about Vulkan and their roadmap or supported gfx card? I have a Nvidia 560 and this gfx card is not really boosted up with Vulkan API. Could you explain Vulkan in a new Video, please.
@nextlifeonearth3 жыл бұрын
About a tutorial for Aftermath: I would rather have something platform agnostic than Aftermath, if there is such a thing. With a bunch of us still using AMD cards and Intel actually becoming a thing soon, I don't think it's wise to lock anything into Nvidia's vendor lock in. By the way didn't validation layers help in anything?
@subterfugue3 жыл бұрын
I agree. Nvidia cares way too little about cross platform and has too little support for Linux as well.
@nextlifeonearth3 жыл бұрын
@@valmirius The vicious cycle of people sponsoring the big guy so the little can never compete.
@ThisRandomUsername3 жыл бұрын
"still using AMD cards". Lol. I don't think I'd buy myself an Nvidia card unless they got their drivers into the Linux kernel like AMD has done. Also, the RX500 and 5000 series were pretty much the best value in a lot of price points. Hopefully they don't get big headed and refuse to make value oriented cards again once the shortages are fixed now that they have another competitive high-end product again. Edit: NVIDIA -> Nvidia.
@nextlifeonearth3 жыл бұрын
@@valmirius That's not even comparable to social justice. It's wanting healthy competition and investing in it. Social justice has nothing to offer, competition does.
@nextlifeonearth3 жыл бұрын
@@valmirius About Phenom to Bulldozer: it's not quite fair to see that as in intentional stagnation or something. They had misinformed goals and misconceptions and invested in those. By the time it was on the market it was already too late, a new architecture is at least a 4 year endeavour. Was it shit tho? Unarguably yes. Did they want it to be shit? They initially thought it was going to wipe the floor with Phenom. It didn't. Shouldn't buy it unless all you needed was strong multi-threaded integer performance for an incredibly low price, which it did great. Any other case? Nah. AMD right now is actually doing better in some workloads than Nvidia. Plenty of games in 1440p run faster on their top card than Nvidia's and with lower power usage. Might actually be new to you, because Nvidia's mind share is so big with RT and DLSS, which are actually quite minor features for this generation in the big scheme of things, that nobody even considers that they have the fastest card in quite a few scenarios. And AMD has given the development community a lot through GPUOpen. Problem is it often works on Nvidia too, so it's no selling point. I would rather fund that than Nvidia's approach, even though I am a customer of both. Nvidia is like Apple in that regard, they make sure their users are balls deep in their tooling, software and hardware, so that even if AMD makes the better product, they still won't switch. My natural response is to pull a company away if they do that.
@kidpudel3 жыл бұрын
This cover is amazing!
@007LvB3 жыл бұрын
What is the jazz music you play at the end?
@badpotato3 жыл бұрын
i love your videos bro.. keep them coming..
@YuryScript3 жыл бұрын
Vulkan is now fixed! Poooog
@fghdfghdfghdfg3 жыл бұрын
Nice work cherno!
@rutvikpanchal4663 жыл бұрын
Holy shiz, that thumbnail scared me
@UCantMe3 жыл бұрын
with that thumbnail ... awesomeness ++;
@Selexo3 жыл бұрын
This is in regards to Sound Pipeline: what backend are you going to take in? Hopefully something like steam-audio or something similar as a modern replacement of EAX; where before we had graphics, sound carried the game. It even supports raycasting hardware support but for sound. Sound is sooooo underdeveloped or an afterthought but such a big part of game/engines even when not so great graphics are used; but games with over the top attention to detail sounds/score/story, that carry or sucks you in....
@pvtnewb3 жыл бұрын
I personally had quite a lot of driver TDR on proprietary AMD Vulkan driver, and strangely enough, the same shaders work on RADV (open source AMD Vulkan driver). Idk things are strange lol.
@raihzz98403 жыл бұрын
Everytime i try to launch r6 vulkan i get an error message saying "no compatible hardware/driver found", does anyone know how to fix this issue. My computer has all the needed specs.
@nexovec3 жыл бұрын
"I fixed a bug" *overdrive bass noises*
@kartofelina263 жыл бұрын
wow, I had this EXACT same problem but with opengl. I wrote a little program that would bake my IBL data into a file and it works fine on my main machine. But when I try to run it on an older PC it completely crashes the driver (unless I reduce sample count in the irradiance shader). I haven't found the fix, but it's good to know that I'm not the only one :)
@segfault-berlin3 жыл бұрын
So what do I use if I don't have an nvidia GPU?
@diligencehumility69712 жыл бұрын
But how did you fix it? -Just by using smaller textures?
@haraldr3 жыл бұрын
I literally encountered the exact same problem with cubemap filtering taking too long when I did it a while ago
@dexterman63613 жыл бұрын
When will this be released to the public?
@yk08973 жыл бұрын
EXPECTING VULKAN TUTORIAL SIMILAR TO OPENGL
@gatisozols3 жыл бұрын
I`m just talking out of my ass here, but if you have a pointer to some memory that will be processed by some thread later doesn`t that mean that you have reference to that specific memory? I mean there could be a bug in reference counting which now you just worked around by executing things in the correct order.
@fritzschnitzmueller37683 жыл бұрын
Laughed too hard at that clickbait title and thumbnail
@Bryan-rx1cv3 жыл бұрын
14:25 hazelnut 😊😊
@jacasch31643 жыл бұрын
I know that if you install substance painter, it badically asks you to change a lune in the registry. might have a similar reason
@Tomichouuuuu3 жыл бұрын
Yeah just go to the registry and augmenting the time to crash interval seems to be the work around, I know next to nothing compared to you in code so it's almost weird that I know this and not you, but it's basically everyone who's used Substance Painter knows because it's required to not have a crash 24/7
@harriehausenman86233 жыл бұрын
It's like, actually, like, literally, like, whatever. like cool.
@OrionFH3 жыл бұрын
That's quite interesting. I tried developing a raytracer in a compute shader some time ago and I ran into the timeout issue all the time. Basically everytime I accidentally created an infinite loop in my shader (which happened often with the algorithm I used), I triggered that time limit. With NSight you can actually turn that timeout off I think. Maybe you could test it again with that NSight setting on lower end hardware and see whether it changes things
@OrionFH3 жыл бұрын
So yeah, you open up NSight Monitor and go into the options. There you have WDDM TDR Delay in the general tab. That's where you can set the delay
@JohannesSchmitz3 жыл бұрын
Lol, subtitles say "a lot of Falcon issues" 😝
@su1cedek3 жыл бұрын
you should add your Twitch link to the video description tho