Blog Posts

Recent posts

Simple Makefile example for MPI

less than 1 minute read

1 2 3 4 5 6 7 8 9 10 11 12 13 CC=mpicxx CFLAGS=-c -Wall LDFLAGS= SOURCES=test.cpp OBJECTS=$(SOURCES:.cpp=.o) EXECUTABLE=test all: $(SOURCES) $(EXECUTABLE) $(...

People want to predict every events

less than 1 minute read

People like predictable events but reality is every moment and events are unpredictable. I think that main purpose of software engineering is to make unpredi...