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.

Ask HN: Looking for an open-source project to parallelise

7 pointsby pufuwozualmost 15 years ago
I've just started a Parallel Programming unit at University and our major project (worth 50%) is to take an application and manually parallelise it to scale across multiple cores.<p>I'd like to do the assignment where the target:<p>* Is interesting<p>* Requires a fair amount of effort and skill<p>* Has some sort of barrier to making it parallel<p>* Is welcoming to me taking up the project<p>Does anyone know a project that fulfils most of these? The project's language or libraries aren't an issue.

4 comments

Jtsummersalmost 15 years ago
You could look into accelerating some of the common filters/operations in programs like Audacity, GIMP or some other open source media editor.
jsarchalmost 15 years ago
Are you looking for a project no one has done yet? Or a project to simply learn from? As an HPC programmer I can tell you that there are lots of scientific applications that you could try. However, I'd suggest that you start with something manageable and known to be parallelizable so that you can feel great when you finish it.<p>I think @jtsummers and @karanbhangui have the right idea, so I'd suggest making the Apache2 mod_deflate module parallel.
karanbhanguialmost 15 years ago
how about one of the common compression libraries like zip or gzip?
VanLalmost 15 years ago
Try Python. There is lots of interest in getting CPython to scale across multiple cores, but the use of refcounting to manage object lifetime and the Global Interpreter Lock makes it hard.<p>If you want, you could even try to prototype using PyPy (python in python).
评论 #1560377 未加载