Infin 763 #1 Posted November 3, 2014 I was wondering if anyone has ever used CUDA before? Quote Share this post Link to post Share on other sites
+Dr. Obvious 14,606 #2 Posted November 3, 2014 Only as a user in certain apps, sorry. Quote Share this post Link to post Share on other sites
Se7en 10,762 #3 Posted November 3, 2014 Only on weekends. 2 Quote Share this post Link to post Share on other sites
fever 9,884 #4 Posted November 3, 2014 Nah, not here Quote Share this post Link to post Share on other sites
Infin 763 #5 Posted November 3, 2014 My degree honours project is to show CUDA working on an algorithm and compare it with the same algorithm being processed without CUDA. Essentially showing the benefits. I need to learn CUDA from scratch so I was wondering if anyone had tips on a good source of learning. I'll also need an idea for what kind of algorithm my demo will be on, but that comes later. 1 Quote Share this post Link to post Share on other sites
fever 9,884 #6 Posted November 3, 2014 My degree honours project is to show CUDA working on an algorithm and compare it with the same algorithm being processed without CUDA. Essentially showing the benefits. I need to learn CUDA from scratch so I was wondering if anyone had tips on a good source of learning. I'll also need an idea for what kind of algorithm my demo will be on, but that comes later. Â It sounds a damn sight more interesting than the areas I cover which are financials and advanced manufacturing 1 Quote Share this post Link to post Share on other sites
teddu 136 #7 Posted November 4, 2014 Sound's more interesting than my honours project; which consisted of programming a mobile device using the Android API to connect to a RC car with an integrated xIMU board, and using the mobile device's accelerometer to steer the car and the xIMU's accelerometer to determine the tactile elements.. 2 Quote Share this post Link to post Share on other sites
Domino 3,168 #8 Posted November 4, 2014 Sounds more interesting than my honours project. I didn't do one. 2 Quote Share this post Link to post Share on other sites
Infin 763 #9 Posted November 23, 2014 Unrelated to my CUDA project: does anyone know any Erlang? Quote Share this post Link to post Share on other sites
fever 9,884 #10 Posted November 24, 2014 No sorry...webbie dev here mainly. Quote Share this post Link to post Share on other sites
Infin 763 #11 Posted November 24, 2014 Destined to program in the obscure languages and libraries. 1 Quote Share this post Link to post Share on other sites
+Dr. Obvious 14,606 #12 Posted November 24, 2014 Sounds interesting, though. Kinda. Quote Share this post Link to post Share on other sites
Infin 763 #13 Posted December 10, 2014 Here's a wild shot in the dark. Someone 'ave a look at this and tell me if my logic is faulty. Also plz tell me where. -module(ass2). -export([main/0]). -export([printList/1]). -export([compare/2, compare/1]). main() -> List = [2,5,3,6,3,2,7,8,5,6], SortedList = lists:usort(List), printList(List), printList(SortedList), printList([]), compare(SortedList, List). printList(L) -> io:format("~w~n", [L]). compare([], []) -> 0; compare(A, -> [H1|T1] = A, R = [X || X <- B, H1 == X], printList(R), printList(T1), compare(T1, . compare([]) -> 0. The problem is mostly in the compare(A, part. Quote Share this post Link to post Share on other sites
+Dr. Obvious 14,606 #14 Posted December 10, 2014 What... language is that? Looks oddly familiar, but some of the calls don't make sense to me... Quote Share this post Link to post Share on other sites
Infin 763 #15 Posted December 11, 2014 That was Erlang. I sorted my problem though, but there's still more to do. Quote Share this post Link to post Share on other sites