Skip to content

Tag: parallel-processing

OpenMP Matrix Multiplication Issues

I am trying to multiple the values of a matrix. I have both a parallel and sync version. But the parallel version is longer than the sync version. Current the sync takes around 90 seconds and the parallel over 100. Which makes no sense to me. My logic was to split the matrix into 4 parts from the first 4

Run html2text using parallel

I am using html2text from Github in-which I was able to run-it on all the .html files in my folder using for file in *.html; do html2text “$file” > “$file.txt”; done but it’s some-what slow. How can I use html2text with parallel on all my .html files? Answer The original answe…

Looping C compilation and running through BASH

I’m trying to compile and run a C code while looping the input file through bash. Here is my code for the bash script I am using to automate it. So what I’m basically trying to do is compile filewithcode.c so that the executable is stored as compiler1, which takes outputnumber1 and readsfilename1.…