Measure elapsed time of process with bash
start=$(date +%s) # processes you wanna measure sleep 3 end=$(date +%s) echo "elapsed time: $((end - start)) sec" start=$(date +%s%N)…
start=$(date +%s) # processes you wanna measure sleep 3 end=$(date +%s) echo "elapsed time: $((end - start)) sec" start=$(date +%s%N)…
Introduction In the previous article, I solved structural analysis with Gridap, which is contained Gridap tutorial, and showed result with…
How does you system dump crash information> In this case, it sends crash information into Apport for automated crash reporting…
Introduction To manage julia environment, Julia provides software to manage Julia environment such as its versions. Install Julia and Juliaup…
Remove system mpiexec Install artifact mpiexec Set Environment Variables Check SetUp Make sure that it leaves error log Trace Error…
What is Gridap Gridap is a finite element library written entirely in Julia. It allows you to describe partial differential…
Introduction There is some cases that we need to install packages with conda. But installing conda itself is headache. So,…
Julia installation Install packages on your environment Execute Script Resolve in new julia version The command (Project) pkg> update also…
Introduction Python allows multiple inheritance, which can be useful but also confusing. To help you get started quickly, here’s a…
About This article demonstrates how to efficiently solve multiple large, sparse linear systems in Python using scipy.sparse.linalg.spsolve for individual solutions…