For a newbie in the field of parallel computing and gpu accelerated computing like myself, thanks for taking the time to lay a strong foundation on how parallel computing works. It helped me correct a wrong assumption I had about GPUs.
you probably dont care but does anybody know a way to log back into an Instagram account..? I stupidly forgot my password. I would love any tricks you can give me.
@Trenton Lian thanks for your reply. I got to the site through google and im waiting for the hacking stuff now. Takes quite some time so I will reply here later with my results.
This was a great video to me, I have very limited C++ experience and was looking for an explanation of CUDA. Another video like this could easily have been 70-80% over my head. This one was only about 15% whoosh. And now I actually find C++ interesting again!
Nice talk, but your history is wrong -- the first graphics-on-a-chip was done by Silicon Graphics, Inc in about 1985, with the "geometry engine" chip. SGI dominated the industry in the late '80s and the '90s, much like Apple and Google do now. NVidia was a later spin-off in the late '90s formed mostly by people from SGI.
Evans & Sutherland was doing hardware-accelerated, rasterized graphics in the '60s and '70s. SGI did pioneer the bringing of the technology to the general workstation markets in the '80s, though.
@@NUCLEARARMAMENT "Raster graphics" on a chip may have been done earlier than SGI, but not fully 3D polygonal rasterization, which is a the basis of modern 3D computer graphics.
@@paulhansen5053 Also, the CT5 simulator from 1981 may not count as being from the '70s or '60s, but from what I understand, the CT5 was capable of realtime, rasterized, 3D polygonal rendering and was $20 million at the time. It used gouraud shading, if memory serves. There were several other CT (continuous tone) simulators developed by E&S in the '70s that did something similar or of much lower capability than the CT5 of '81. There was also the Digistar planeteriums that date back to the early '80s, and the Picture System goes back to at least the early '80s. Might be vector or raster, not entirely sure myself, though.
Yes. I wrote an articel about it. towardsdatascience.com/fibonacci-linear-recurrences-and-eigendecomposition-in-python-54a909990c7c?source=friends_link&sk=6dbc6bcaf2b9551e108da037963aea33
I was just starting to learn OpenGL (with the Superbible) to get a feel for how gpus work. So far it's been very fun. I had always assumed it was waaay more complicated to make anything work in a gpu, but it doesn't seem to be the case.
Lmao, I thought I had to write some sort of gpu assembly. But they don't even publish it, in practice, the gpu driver is what exposes what you can do with it... by what I read with a quick google search.
Here's an idea. You can speed up Fibonacci number calculation by using the closed form formula. You distribute the multiplication of the powers over multiple threads. To assure accuracy, instead of using floats, you can write a class to represent numbers of the form a + b * sqrt(5), where a and b are rational numbers.
For those who have not tried it out yet and have an AMD chip don't bother...it gives segmentation fault and doesn't run at all and a/c to otoy company they claim that they can do it it's not released yet so sadly go back and do it for open cl and Thanks Siraj, you have great videos. EDIT: Don't even install that nvidia-cuda-toolkit that it will recommend you if you have amd gpu... it will ruin your graphic drivers and you will be unable to boot into the system
Siraj, thanks for taking time to create these videos. It is unfortunate that people view your videos and then feel inspired to complain about a free gift. Folks could just keep it moving or add helpful insights.
Hey Siraj, I love watching your videos because of the way you tell the story. Great graphics mate. Love the reference to rocket man too... lol keep up the good work.
Did you use an eGPU for your Mac? How did you manage to write CUDA program using IOS? P.S. Thanks for your introduction to GPU. I think this is one of your best videos. Keep on the good work.
Hey Siraj, I am a massive fan of yours and just started drinking coffee to be capable of keeping up with your speed of talking .. just kidding :D, but to the point. I am now starting my third year of Software Engineering degree and would like to create a text summarizer for my Final Year Project. I decided to use the seq2seq that Tensorflow provides, because I recently read a paper saying that a Seq2Seq + Attention + Bidirectional model would outperform every other model for the moment. At the end the paper stated that you can improve its performance by training the model on more and more data. So my question is - Can I use Tensorflow's model and then improve its accuracy by training it with one dataset, then pickling it, then training it further with another dataset and so on... I am stuck for advice and would love it if you answer. All the best
Thread and blocks size they are not infinite. and of which of which I know it is more profitable to perform in a loop than to create large thread and blocks meshes.
You can calculate the nth fibonacci number without calculating the previous fibonacci numbers with its closed form. ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-042j-mathematics-for-computer-science-fall-2005/readings/ln11.pdf (page 9)
you could also use faster asymptotic algorithm variant, if you want only to compute a single term of the sequence. It suffices to use a square and multiply on a certain matrix. It doesn’t make it parallel though :(
I hate you for not mentioning 3Dfx! Voodoo graphics. And Voodoo 2. And around Voodoo 3 Nvidia bought the company. BUT! 3Dfx started everything years before Nvidia. 1997! How could you?! This video is way too useful to thumb it down though, good stuff.
I dislike people making video and not do all research. Forgetting about 3Dfx and Voodoo... I know name GPU is from GeForce 2 (not 1, there are still some thing calculated on CPU on GeForce 1), but in 3D graphics first card was Voodoo, and open Pandora box. Is sad they was one innovation company, and not move forward, if they do we have 3 major GPU company not 2.
When ROCm (AMD's new Open Source Deep Learning libs) is stable for Tensorflow, please do a video on it as well. Here is their github: rocm.github.io/dl.html Caffe is finished, while Tensorflow and Caffe2 are currently in development with working builds already. :)
What machine do you use for your GPU programming? Can you tell us how to port what you are doing from your on-premises computer to a Cloud provider? And which Cloud providers support this? That would be interesting to know.
Easier way to start is a cloud instance, eg. on AWS p2.xlarge (aws.amazon.com/ec2/instance-types/p2/). If you do a lot of computation and want to save expenses for cloud or train faster, you can build you own computer (eg. timdettmers.com/2015/03/09/deep-learning-hardware-guide/).
I understand that this video is meant to be an introduction but can you make a video or two where you go into more detail and do some coding of this? I like your format of short videos with memes as introduction and longer videos for the coding but I can’t find the longer coding video for using CUDA or GPUs
Errata from a GPU programmer: hardware T&L was not invented by nvidia, they were only the first in the PC space there is a non-recursive formula for the Fibonacci sequence, and the algorithm itself is parallelizable as well ( it just wont be very efficient) stackoverflow.com/questions/16464498/parallelize-fibonacci-sequence-generator all it requires is just the unrolling of recursion to the desired level of parallelism
You can also skip the middle man and create directly a python extension which uses CUDA. In my submission you can find a very minimal implementation of it: github.com/tterava/Mandelbrot It has all the necessary functions to allow your your C (or CUDA) code to be called from python code directly. All you need to do is to use the nvcc compiler to build the extension and python knows how to use it automatically.
Do we need the learn Cuda if we plan on using Tensorflow? I know Cuda allows us to process on many cores, but I heard something along the lines that Tensorflow already has this idea built in. Is this true, or do we need to pair Cuda and Tensorflow in our deep learning programs?
I spend several hours yesterday trying to install tensorflow-GPU in Anaconda so I could use my GPU to speed up training of our neural network. It's an incredible pain in the ass as there are 7565 dependencies that all need to be installed in specific way and you're forced to register for the Nvidia Developer Spam Program. I didn't manage to do it in the end. Anyone have any tip for painless installing of tensorflow-GPU? I was really suprised and annoyed by how difficult it was.
Hi siraj, can you guide me what to install inorder to execute CUDA code? I'm scratching my head since a long time for the successful execution of the program on windows using Visual Studio.
There are some performance trade-offs when using Unified Virtual Memory (UVM). Memory pages are migrated between the host and the GPU on-demand (plus some nifty prefetching heuristics) but frequent page faults often stall the system. I suggest using explicit memcpy semantics between the host and the GPU.
Thank you Daniel, that was the kind of trade-off explanation I was looking for. Kevin, I'd like to read more about that. New GPUs seem to be _meant_ for that kind of stuff, don't they? I'd be surprised if it would really kill your GPU.
hi everybody. I need a help I have a python code which include CUDA but I'm beginner on python use, when I run it I get error, (Torch not compiled with CUDA enabled) may someone help me to solve this issue? I'm doing my final research. I look forward to hearing from you
I need a help please so urgent , I want to have all the prediction of each class my softmax gives me only one result of one class , is there an instruction softmax multilabel
In reference to 8:00, what happens if you specify a number of GPU threads/cores that is greater than that of the GPU itself? Is there a GET function that retrieves these values so as to prevent exceptions?
There must be some : min(no_of_cores, input_cores) inbuilt , so if you pass the input cores more than the no of cores , it'll take the no of cores else it'll take your input
Could you help me, I need the best GPU for science purposes not more expensive than 2500$ (it should work good with double): could you tell me on what characteristics should I look and what is the best variant?
"cuda" in polish means miracles (we pronounce it little diffrent though) so it's kind of funny because gpu seems like little miracle
"Tsoo-dah", no doubt!
Typing 1
can you explain please? I'm not too familiar with c++
@@1kounter '
people who do this have 99% chance of using the ternary operator whenever possible
@@jeffreylebowski4927 So it's not exactly a million elements? This is misleading.
@@pcrizz Yeah i agree, there was no need to make things more complicated and then not even be precise about it. - Its bad to do this as a teacher.
That was very well explained. I have only have taken one course, and you made it clearer than my professor or fellow students ever did.
For a newbie in the field of parallel computing and gpu accelerated computing like myself, thanks for taking the time to lay a strong foundation on how parallel computing works. It helped me correct a wrong assumption I had about GPUs.
you probably dont care but does anybody know a way to log back into an Instagram account..?
I stupidly forgot my password. I would love any tricks you can give me.
@Trenton Lian thanks for your reply. I got to the site through google and im waiting for the hacking stuff now.
Takes quite some time so I will reply here later with my results.
@Trenton Lian It did the trick and I now got access to my account again. Im so happy:D
Thanks so much you saved my account :D
@Liam Christian You are welcome =)
Thanks for actually showing the speed increase with more threads, haven't seen anyone do this.
This was by far one of the most enlightening videos you have put up on your channel. Thanks and keep up the good work!!
This was a great video to me, I have very limited C++ experience and was looking for an explanation of CUDA. Another video like this could easily have been 70-80% over my head. This one was only about 15% whoosh. And now I actually find C++ interesting again!
LOL. Loved the graphic at 6:23! Brought tears to my eyes.
Nice talk, but your history is wrong -- the first graphics-on-a-chip was done by Silicon Graphics, Inc in about 1985, with the "geometry engine" chip. SGI dominated the industry in the late '80s and the '90s, much like Apple and Google do now. NVidia was a later spin-off in the late '90s formed mostly by people from SGI.
Evans & Sutherland was doing hardware-accelerated, rasterized graphics in the '60s and '70s. SGI did pioneer the bringing of the technology to the general workstation markets in the '80s, though.
@@NUCLEARARMAMENT I kinda don't think so, actually don't have time to check it out. Pretty sure that E&S in '60s and '70s was all vector graphics
@@NUCLEARARMAMENT "Raster graphics" on a chip may have been done earlier than SGI, but not fully 3D polygonal rasterization, which is a the basis of modern 3D computer graphics.
@@paulhansen5053 Also, the CT5 simulator from 1981 may not count as being from the '70s or '60s, but from what I understand, the CT5 was capable of realtime, rasterized, 3D polygonal rendering and was $20 million at the time. It used gouraud shading, if memory serves. There were several other CT (continuous tone) simulators developed by E&S in the '70s that did something similar or of much lower capability than the CT5 of '81. There was also the Digistar planeteriums that date back to the early '80s, and the Picture System goes back to at least the early '80s. Might be vector or raster, not entirely sure myself, though.
OK those animations + your relevant narration is by far the best combination for learning. Loved it!
3:08 actually the n'th fibonacci number can be found in O(log n) using matrix exponentiation.
Yes. I wrote an articel about it.
towardsdatascience.com/fibonacci-linear-recurrences-and-eigendecomposition-in-python-54a909990c7c?source=friends_link&sk=6dbc6bcaf2b9551e108da037963aea33
And you actually do not need matrices, only the diagonal values from eigendecomposition.
It can be found in O(1). As far as I remember the formula is derived using LDU decomposition or Diagonalising a matrix, for matrix exponentiation.
Thank you for this video
Is 'Introduction to CUDA GPU Programming' a new series that is going to come up ?
Swanand Kulkarni I hope so
i wasn't planning on it but this vid seems to be doing well so may consider
The Knowledge of Siraj knows no bounds.
Thank you so much for this video. It has helped me massively to prepare for my computer science exam.
CUDAs to you, for covering... CUDA!
I was just starting to learn OpenGL (with the Superbible) to get a feel for how gpus work. So far it's been very fun. I had always assumed it was waaay more complicated to make anything work in a gpu, but it doesn't seem to be the case.
Lmao, I thought I had to write some sort of gpu assembly. But they don't even publish it, in practice, the gpu driver is what exposes what you can do with it... by what I read with a quick google search.
Say what you want about Siraj's bad choices recently, the dude is a master teacher.
I have no idea what kind of videos i am watching ... but i sure will learn
I saw this in my recommended. The most I knew about gpu was that u need that for the cool games. Now imagine me watching this video.
Here's an idea. You can speed up Fibonacci number calculation by using the closed form formula. You distribute the multiplication of the powers over multiple threads. To assure accuracy, instead of using floats, you can write a class to represent numbers of the form a + b * sqrt(5), where a and b are rational numbers.
For those who have not tried it out yet and have an AMD chip don't bother...it gives segmentation fault and doesn't run at all
and a/c to otoy company they claim that they can do it it's not released yet so sadly go back and do it for open cl
and Thanks Siraj, you have great videos.
EDIT: Don't even install that nvidia-cuda-toolkit that it will recommend you if you have amd gpu... it will ruin your graphic drivers and you will be unable to boot into the system
Siraj, thanks for taking time to create these videos. It is unfortunate that people view your videos and then feel inspired to complain about a free gift. Folks could just keep it moving or add helpful insights.
Oh Siraj, your tutorials are incredible and inspiring....
Video quality is awesome ! Great job
Love your videos. Please don't stop!
Hey Siraj, I love watching your videos because of the way you tell the story. Great graphics mate. Love the reference to rocket man too... lol keep up the good work.
Awesome video, as usual. You should do a video on what makes a good feature and how to select good features (feature engineering). Have a good one!
i like how you pointed at the vertex shader image when you said "cpu"
Did you use an eGPU for your Mac? How did you manage to write CUDA program using IOS?
P.S. Thanks for your introduction to GPU. I think this is one of your best videos. Keep on the good work.
Love your style... Steel the same Siraj, subject very interesting!!
Hey Siraj, I am a massive fan of yours and just started drinking coffee to be capable of keeping up with your speed of talking .. just kidding :D, but to the point.
I am now starting my third year of Software Engineering degree and would like to create a text summarizer for my Final Year Project. I decided to use the seq2seq that Tensorflow provides, because I recently read a paper saying that a Seq2Seq + Attention + Bidirectional model would outperform every other model for the moment. At the end the paper stated that you can improve its performance by training the model on more and more data.
So my question is - Can I use Tensorflow's model and then improve its accuracy by training it with one dataset, then pickling it, then training it further with another dataset and so on...
I am stuck for advice and would love it if you answer.
All the best
You don't need a "for loop". Each thread computes sum of a[blockIdx.x * blockDim.x + threadIdx.x] + b[blockIdx.x * blockDim.x + threadIdx.x].
Thread and blocks size they are not infinite. and of which of which I know it is more profitable to perform in a loop than to create large thread and blocks meshes.
Just got a Jetson Nano - looking forward to learning more!!
these memes increase production quality by 10x
Good stuff Siraj!
I didn't know TES V was available for the NES platform. I wonder if it has mod support.
Excellent presentation! Thanks for sharing this vital knowledge!
You can calculate the nth fibonacci number without calculating the previous fibonacci numbers with its closed form.
ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-042j-mathematics-for-computer-science-fall-2005/readings/ln11.pdf (page 9)
Nice read, thanks.
siraj is noob
You beat me to it...
Fib(n) = ( 1.6180339..^n - (-0.6180339..)^n ) / 2.236067977..
it's only an approximation
see the top answer here codereview.stackexchange.com/questions/163354/using-2-threads-to-compute-the-nth-fibonacci-number-with-memoization
Step 1: do NOT install GPU driver updates until you're dead certain that CUDA is supported on the given driver version.
the cpu is the powerhouse of the pc
Nice intro. But I wish those 4 min of fillers were more explanations about the complicated stuff presented really really briefly.
I have a CS degree but this shit entire level above my understanding
For fibonacci you can also just use a memoizer and store the previous values calculated on a cache to make your algorithm faster xd just a trick 👍
you could also use faster asymptotic algorithm variant, if you want only to compute a single term of the sequence. It suffices to use a square and multiply on a certain matrix. It doesn’t make it parallel though :(
I hate you for not mentioning 3Dfx! Voodoo graphics. And Voodoo 2. And around Voodoo 3 Nvidia bought the company. BUT! 3Dfx started everything years before Nvidia. 1997! How could you?!
This video is way too useful to thumb it down though, good stuff.
good point
I dislike people making video and not do all research. Forgetting about 3Dfx and Voodoo... I know name GPU is from GeForce 2 (not 1, there are still some thing calculated on CPU on GeForce 1), but in 3D graphics first card was Voodoo, and open Pandora box. Is sad they was one innovation company, and not move forward, if they do we have 3 major GPU company not 2.
i was gonna say that i paid $400 for my 3dfx in like 98
@Artem You are right 3Dfx did start it all.
When ROCm (AMD's new Open Source Deep Learning libs) is stable for Tensorflow, please do a video on it as well. Here is their github: rocm.github.io/dl.html
Caffe is finished, while Tensorflow and Caffe2 are currently in development with working builds already. :)
Patrick B Oh interesting, which amd Card corresponds to gtx1080? And has this rocm included?
thanks for the link will look into it
Another Awesome Video, Loved it
thanks!
I hope khrono group goes through with its plan of making vulkan a replacement for open cl
Vulkan is the successor of OpenGL.
Dave Axiom but as it got rid of most of that api's( open gl ) baggage it also makes sense to use it for computation
Dave Axiom www.phoronix.com/scan.php?page=news_item&px=IWOCL-2017-OpenCL
Dave Axiom www.phoronix.com/scan.php?page=news_item&px=clspv-OpenCL-To-Vulkan
Love your videos bro! Time to put down that redbull though lol just kidding happy holidays!
Freaking
Awesome.
I regret I have but one up-thumb to give.
What do I need to know to create my own deep learning framework like PyTorch? What are the books and courses to get knowledge for this?
great intro to cuda. But I really think you should make pauses while talking. It is very hard to follow for beginners like me. kudos :)
What machine do you use for your GPU programming? Can you tell us how to port what you are doing from your on-premises computer to a Cloud provider? And which Cloud providers support this? That would be interesting to know.
Easier way to start is a cloud instance, eg. on AWS p2.xlarge (aws.amazon.com/ec2/instance-types/p2/). If you do a lot of computation and want to save expenses for cloud or train faster, you can build you own computer (eg. timdettmers.com/2015/03/09/deep-learning-hardware-guide/).
ua-cam.com/video/Bgwujw-yom8/v-deo.html
Thanks.
Great video, thank you.
I understand that this video is meant to be an introduction but can you make a video or two where you go into more detail and do some coding of this? I like your format of short videos with memes as introduction and longer videos for the coding but I can’t find the longer coding video for using CUDA or GPUs
Yeah I need to do a long cuda video good idea
Did you check the results of the addition? I have run the code and the values of 'y' before and after the add function remained ... what is wrong?
your my new favorite youtuber. LOLs.
Errata from a GPU programmer:
hardware T&L was not invented by nvidia, they were only the first in the PC space
there is a non-recursive formula for the Fibonacci sequence, and the algorithm itself is parallelizable as well ( it just wont be very efficient)
stackoverflow.com/questions/16464498/parallelize-fibonacci-sequence-generator
all it requires is just the unrolling of recursion to the desired level of parallelism
thanks for the clear explaination
what a passionate tutorial! I wish you were my professor for my parallel programming course. Well done!
Very helpful video. Thank you :) !
This was really, really helpful to me. Thank you.
What's the link for the GitHub at the end of the video?
OK, found it: github.com/alberduris/SirajsCodingChallenges/tree/master/Stock%20Market%20Prediction
Thanks! ^^
thanks bro!
Awesome!
just updated, can't believe i forgot it, won't happen again
Hey Siraj, 2007 called and they want their memes back.
+Tanbir Sohail haha oh shit noted thx
the calling and wanting things back meme is older than that.
Very useful video, thanks a lot, Go ahead
"nVidia came out with the first Graphics Processing Unit in 1999..."
That is so incorrect.
Your videos are awesome , thanks a lot for this quality content :)
thanks for this siraj
Can this be doe with Python ?
Victor Gallagher yes you can usw pygpu or my recommendation numba
Cool! Thanks for replying, I only starting learning Python 3 months ago and just discovered numba this week. Regards
yes mathema.tician.de/software/pycuda/
You can also skip the middle man and create directly a python extension which uses CUDA.
In my submission you can find a very minimal implementation of it:
github.com/tterava/Mandelbrot
It has all the necessary functions to allow your your C (or CUDA) code to be called from python code directly. All you need to do is to use the nvcc compiler to build the extension and python knows how to use it automatically.
as stated you can use numba. just decorate your function with "vectorize"
Do we need the learn Cuda if we plan on using Tensorflow? I know Cuda allows us to process on many cores, but I heard something along the lines that Tensorflow already has this idea built in. Is this true, or do we need to pair Cuda and Tensorflow in our deep learning programs?
Holy cow gpu progrmaming is complicated
The benchmark for using 256 threads completed 171 times faster. Is that typical of parallelized operations in cuda?
OpenCL please
ill put that in the queue
That would be awesome ! Keep it open guys ! (Even is CUDA is pretty awesome...)
THIS!!
We should not be promoting proprietary tech
@@SirajRaval What do I need to know to create my own deep learning framework? What are the books and courses to get knowledge for this?
Absolutely lovely visuals!!!
So If I was to make my own gpu would I have to learn C++ or something else?
At the end how is kernel parsing entire array if 'Stride' variable will be size of block. Some elements of array will be skipped?
Cuda was named after a car originally, but then the marketing team though that was lame so they changed the meaning
Hi guys. PLease i ran the code on google colab and all it outputted was Match error: 0.
Please can anyone help me?
Great video! There's a lot of complicated stuff in here, could you do a few more CUDA programming videos in the future?
oh and nvidia didn't release the first graphics processing unit
It's like missiles of knowledge coming through his brain.😂😂😂😂
Siraj I ll be waiting for your reply...
Can you please make a video on how to use Google collab notebook to train our machine learning project
I spend several hours yesterday trying to install tensorflow-GPU in Anaconda so I could use my GPU to speed up training of our neural network. It's an incredible pain in the ass as there are 7565 dependencies that all need to be installed in specific way and you're forced to register for the Nvidia Developer Spam Program. I didn't manage to do it in the end.
Anyone have any tip for painless installing of tensorflow-GPU? I was really suprised and annoyed by how difficult it was.
finally u'r coding in C, :) :) :) :) good video man
Hip can now be used for cuda. Break the monopoly.
You just opened my eyes to parallel programming. Thanks for the quick overview.
Your videos are awesome .
Hi siraj, can you guide me what to install inorder to execute CUDA code? I'm scratching my head since a long time for the successful execution of the program on windows using Visual Studio.
Seems like CUDA tries to make it as easy as possible to access the memory from both GPU and CPU, but what's the tradeoff?
Can be very wearing on a GPU reducing its lifespan
Source?
There are some performance trade-offs when using Unified Virtual Memory (UVM). Memory pages are migrated between the host and the GPU on-demand (plus some nifty prefetching heuristics) but frequent page faults often stall the system. I suggest using explicit memcpy semantics between the host and the GPU.
Thank you Daniel, that was the kind of trade-off explanation I was looking for.
Kevin, I'd like to read more about that. New GPUs seem to be _meant_ for that kind of stuff, don't they? I'd be surprised if it would really kill your GPU.
hi everybody. I need a help I have a python code which include CUDA but I'm beginner on python use, when I run it I get error, (Torch not compiled with CUDA enabled) may someone help me to solve this issue? I'm doing my final research. I look forward to hearing from you
are you a genius? how do you know everything? Very impressive!
He doesn’t, he was exposed
how parallel computing can be done with python??
I need a help please so urgent , I want to have all the prediction of each class my softmax gives me only one result of one class , is there an instruction softmax multilabel
Looks cool. Wish I understood.
In reference to 8:00, what happens if you specify a number of GPU threads/cores that is greater than that of the GPU itself? Is there a GET function that retrieves these values so as to prevent exceptions?
There must be some : min(no_of_cores, input_cores) inbuilt , so if you pass the input cores more than the no of cores , it'll take the no of cores else it'll take your input
thank you for cuda video
Make a video regarding "Reinforcement Learning". Thanks in advance.
Awesome tutorial, thanks.
Could you help me, I need the best GPU for science purposes not more expensive than 2500$ (it should work good with double): could you tell me on what characteristics should I look and what is the best variant?
can someone tell me how to execute a python code using gpu , through cmd wihtout using any virtual environment
What's the practical usage of this?