TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

CS 179: GPU Programming

331 pointsby kerckeralmost 9 years ago

10 comments

ChristianGeekalmost 9 years ago
I&#x27;m taking a free course in CUDA programming on Udacity at the moment that&#x27;s co-taught by a guy from NVIDIA Research and a professor from UC Davis. If you&#x27;re looking for something that starts from the basics and is really easy to follow, I highly recommend it.<p><a href="https:&#x2F;&#x2F;www.udacity.com&#x2F;course&#x2F;intro-to-parallel-programming--cs344" rel="nofollow">https:&#x2F;&#x2F;www.udacity.com&#x2F;course&#x2F;intro-to-parallel-programming...</a>
评论 #11903378 未加载
anocendialmost 9 years ago
It is very cool to see that the class is being taught by a group of juniors&#x2F;seniors (checked the top two, first one was a senior and second one was a junior), and an appointed faculty is listed only as a supervisor ....<p>I am really interested in the class outcome, and would love to hear what the students in class feel about this arrangement ....<p>I can see the good things about this. It gives the instructor&#x2F;TA students an opportunity to grow while giving the peer-learning atmosphere to students in class. Plus, the students in class will learn from their peers who has the latest working knowledge of CUDA fresh in their heads, and this arrangement also frees up a faculty (or two) from having to prepare the course so that they can do their faculty&#x2F;research work (prepping and teaching a class, especially an interesting and engaging one, is a really draining experience on the part of the faculty as well.)<p>Only downside I can see could be managing the class well enough so that class time is efficiently utilized. But I believe this should be covered by the faculty who is in supervisor position ....
评论 #11903104 未加载
评论 #11902840 未加载
jhjalmost 9 years ago
For someone that knows a thing about CUDA and parallel programming already, the best reference is Paulius Micikevicius’ presentations. If the words in it mean something to you, these 100+ slides explain more about the hardware and programming model than any other documentation you’ll find elsewhere.<p><a href="http:&#x2F;&#x2F;on-demand.gputechconf.com&#x2F;gtc&#x2F;2013&#x2F;presentations&#x2F;S3466-Programming-Guidelines-GPU-Architecture.pdf" rel="nofollow">http:&#x2F;&#x2F;on-demand.gputechconf.com&#x2F;gtc&#x2F;2013&#x2F;presentations&#x2F;S346...</a><p>If you want to really master CUDA, Nvidia GPUs and the various programming model tradeoffs, the best thing is to write a GEMM kernel and a sort kernel from scratch. To take it even further, write two of each: one that optimizes large GEMMs&#x2F;sorts, and one that optimizes for batches of small GEMMs (or large GEMMs with tiny (&lt;16 or &lt;32) `k` or another dim) &#x2F; batches of small sorts. Specialization for different problem configurations is often the name of the game.<p>For GEMM, you can work through the simple GEMM example in the CUDA documentation, then take a look at the Volkov GEMM from 2008, then the MAGMA GEMM, then the Junjie Lai &#x2F; INRIA GEMM, then eventually the Scott Gray &#x2F; Nervana SASS implementation, in increasing order of complexity and state-of-the-art-ness.
rmonroealmost 9 years ago
I took this class last year. Although it was nice to see undergraduates instructing the class, the lack of teaching experience really showed: the students were pretty rough around the edges in terms of their examples and explanations. About 2&#x2F;3rds of classes ended early (at least this is better than heavily wasted time). This somewhat fits in with the unofficial caltech policy of &quot;figuring out the finer details on your own&quot;.<p>That said, I thought the practical nature of the class was a refreshing switch from the heavily theoretical foundation of my other CS coursework experiences.
gtanialmost 9 years ago
The lecture slides are very good.<p>For anybody following along, there&#x27;s 2 other books, Wrox Professional Cuda programming, and Cuda for Engineers, which would ease entry for those who aren&#x27;t versed in HPC (PDE solvers, BLAS&#x2F;LAPACK, Fourier transforms etc). The Storti&#x2F;Yurtoglu book is the best intro i&#x27;ve seen to the topic, the Wrox book covers a lot of the material in Wilt&#x27;s Handbook, not as exhaustively, but more up to date (Kepler vs Fermi).<p>________________________<p>There&#x27;s other course material online, UIUC, oxford (especially good, IMO)<p><a href="http:&#x2F;&#x2F;people.maths.ox.ac.uk&#x2F;gilesm&#x2F;cuda&#x2F;" rel="nofollow">http:&#x2F;&#x2F;people.maths.ox.ac.uk&#x2F;gilesm&#x2F;cuda&#x2F;</a><p><a href="http:&#x2F;&#x2F;cseweb.ucsd.edu&#x2F;classes&#x2F;fa15&#x2F;cse260-a&#x2F;lectures.html" rel="nofollow">http:&#x2F;&#x2F;cseweb.ucsd.edu&#x2F;classes&#x2F;fa15&#x2F;cse260-a&#x2F;lectures.html</a><p><a href="https:&#x2F;&#x2F;www.coursera.org&#x2F;course&#x2F;hetero" rel="nofollow">https:&#x2F;&#x2F;www.coursera.org&#x2F;course&#x2F;hetero</a>
Negative1almost 9 years ago
Are there any course videos available anywhere?
jooseboxalmost 9 years ago
Anyone know how this compares to the course(s) NVIDIA offers on Udacity?
bathoryalmost 9 years ago
Is there any resource as good, that targets a recent version of OpenCL?
hubatrixalmost 9 years ago
Wish there were videos available for the same course ! Can someone suggest a good lecture series with videos, other than udacity.
gaiusalmost 9 years ago
Why CUDA not OpenCL I wonder?
评论 #11902856 未加载
评论 #11903924 未加载
评论 #11902748 未加载
评论 #11903866 未加载
评论 #11905696 未加载
评论 #11902827 未加载
评论 #11902624 未加载