Say I want to run a parallelize a program to process a bunch of files, and this program accepts a -t option to increase the number of threads used. The machine I am using has the following specs from the output of lscpu:
CPU(s): 16
Thread(s) per core: 1
Core(s) per socket: 8
Socket(s): 2
...
I'm unclear on the difference between running the program with multiple threads specified vs. piping the list of input files to parallel. As there is just one thread per core, would it be completely redundant to do both?