Skip to content

Instantly share code, notes, and snippets.

View pmu2022's full-sized avatar
🎯
Focusing

Franco Moitzi pmu2022

🎯
Focusing
View GitHub Profile
@pmu2022
pmu2022 / Makefile
Created September 21, 2021 12:46 — forked from maxtruxa/Makefile
Generic makefile for C/C++ with automatic dependency generation, support for deep source file hierarchies and custom intermediate directories.
# output binary
BIN := test
# source files
SRCS := \
test.cpp
# files included in the tarball generated by 'make dist' (e.g. add LICENSE file)
DISTFILES := $(BIN)
"""
Calculate the Jacobian of the following matrix
f(x,y) = [ x^2 , x + y^3 ]
"""
import multiprocessing as mp
import subprocess
def some_python_calc(*args)
# Do some calculation in python
return 0