Top products from r/HPC

We found 4 product mentions on r/HPC. We ranked the 4 resulting products by number of redditors who mentioned them. Here are the top 20.

Next page

Top comments that mention products on r/HPC:

u/peer_gynt · 3 pointsr/HPC

I am not sure I understand your problem correctly, so my answer may be off target...

A Makefile is a control file for the program make: when calling make in the directory where your source code lives, it will look for a file named Makefile or makefile, and will execute the rules which are encoded in there.

Those rules can be as simple as:

all:
mpicc main.c -o main


but can also be wastly more complicated, depend on other explicit or implicit rules, have an ordering defined, use all types of variables and inputs, etc. Mastering makefiles is not easy - but if that is expected of you in that course / job, I would recommend grabbing something like this and to wade through it. Start with simple Makefiles, and build up what you need step by step.

u/tkphd · 1 pointr/HPC

What are you trying to do with it? Programming Massively Parallel Processors was useful to me, but without more info, it's hard to make recommendations.