AL
23 avr. 2018
The course is fairly advanced and you would need to review the materials many times to understand the concept. The assignments are definitely fun and not as straightforward as other courses.
RC
24 août 2017
Superb study material. Learnt a lot during this course. I am not much into mathematical stuff, but got a hang of how to break problems and improve efficiency through parallelism.
par Yevgeny E
•22 avr. 2022
Great course.
par Jose M N
•25 avr. 2018
Great course!
par Mykola S
•22 juil. 2017
Great course!
par Kovalenko S
•20 juil. 2017
Классный курс
par Hulevskyi D
•20 juin 2016
Great course!
par Laerti P
•25 avr. 2017
Great course
par Gao Y
•14 févr. 2017
Nice course!
par Владислав С
•23 nov. 2020
Cool course
par G. U M
•24 août 2019
best course
par DAVID J A
•12 févr. 2018
Brilliant!!
par Animesh K
•9 août 2017
Cool course
par Leonardo L e C
•21 juin 2019
Very good!
par Sanjeev R
•26 août 2019
Excellent
par Bjornn B O F F
•27 juin 2017
Awesome!
par Yuriy B
•3 août 2017
Thanks!
par Deleted A
•28 mai 2016
Super!
par Kevin L
•8 déc. 2020
It is a good introduction to parallel programming with Scala as the language and some relevant scenarios in which the paradigm is useful. It would be nice to have some of the lecture materials updated to Scala 2.13 as there have been changes to Scala's parallel collection/package in the past couple years. I still benefited from having to troubleshoot and fix problems as I followed along with code samples from the lectures. The assignments are challenging but manageable. I actually find myself wanting less code pre-populated once I got comfortable with the syntax and material. I appreciate there are optional challenges for those who want to learn more, e.g. code optimizations, proofs of associativity and commutativity,
par Oleksandr I
•21 mai 2017
Excellent course. Gives deep enough understanding of parallel programming. Used knowledge immediately to optimize my huge in-mem data structure to reach 50 ms (instead of 300 ms) response time. I'd suggest the following to improve: 1. I'd make "pass" score no less then 90 or even 95%. With 80 only it is possible to PASS having key mistake (e.g. on week4 I haven't created a new combiner, using old one, in combine() operation, and I still got 80 - PASSED) 2. tests in grader are hard to reproduce on local machine: it is not that obvious what's wrong, where to focus.
par Sriram K
•31 oct. 2016
Most of the concepts and explanations were good but the assignments could be better organized. I wasn't sure what I was doing for a while, and the test cases don't cover the code in a way that progresses naturally. Some parts of it can't be tested until most of the code is written, and then major portions of the code isn't even tested until it's submitted. It would be great if the tests progressed along with the code and people didn't have to guess at the correct solution but just knew it was right when they got it.
par Hristo I
•1 nov. 2016
The course is pretty hard, even for someone like me, who has been working in parallel computing for years. The reason is the structure of the course and the presentation of the material. The topics are somewhat chaotic and in many cases it is hard to tell whether a certain operator comes from the Scala standard library or is just an abstraction.
All in all, finishing the course is a rewarding experience. But beware, there is a significant gap between the foundation courses taught by Martin Odersky and this one.
par Daniel B
•9 oct. 2019
Good course with a lot of interesting ideas and explanations. The reason I gave it a 4 and not a 5 is that I think it would have been better without involving instructors' own library on top of Scala instead of teaching Scala-level constructs directly. While I appreciate the notion of teaching general parallel programming ideas, introducing one's own constructs to promote it seems unnecessary - at the very least, these constructs' implementation should have been thoroughly explained in the course.
par P G
•1 nov. 2017
This is a good course that has some really interesting assignments. The lectures are understandable and the topics are explained a bit nicer than a lot of theory in the other Scala courses from Martin Odersky, who conveys knowledge in a more "textbook" form. I am, however, taking one star out for the last assignment which was rather muddy in terms of explanation, long and not easy to debug due to it's size and parallel aspects. I felt way more positive about all other assignments on this course.
par Gabriele A
•30 oct. 2019
Really cool course. I'm enjoying scala as a language as it has many simple methods to achieve complex goals, including parallelization, however this course also presents parallelism in a rawer fashion explaining in depth some of the techniques to parallelize seemingly sequential-only tasks.
Last week's exercise is quite long, and albeit being a truly beautiful project, most of the implementation is not strictly related to parallel programming.
In any case a totally good course!
par Luciano P
•12 sept. 2016
The course was well covered and very informative. As someone with zero experience in parallelism, I felt I could've absorbed a lot more if the topics were not completely new to me.
As mentioned in other reviews, the last assignment, Barnes Hut Simulation, was very time consuming and I found myself spending more time trying to understand the problem rather than implementing it. That was very challenging for someone with low academic background.
par Evaldas M
•29 oct. 2016
The course was ok, but at times too much theoretical when it comes to proofs of some methods are working as expected. I think its good to know the principles of parallelizing application and changing the potential algorithms, but this has applicability only in specific fields like comlex computations that need to be highly parallelized and less likely you would use these principles in standard backend development