OP25 Many processes of rx.py

Status
Not open for further replies.

krutzy

Member
Feed Provider
Joined
Sep 17, 2004
Messages
141
Location
Culpeper, VA
Curious here. Why so many instances of rx.py? Just curious?


766 pi 20 0 60092 33932 8988 S 7.7 3.6 0:12.72 /usr/bin/python3 /usr/bin/flask run --host=0.0.0.0
1106 pi 20 0 533M 170M 52640 S 5.8 18.4 0:06.34 python ./rx.py --nocrypt --args rtl -N LNA:47 -S 57600 -o 25000 -d 300 -q 1 -2 -T kutrunk.tsv -w
1097 pi 20 0 533M 170M 52640 S 5.8 18.4 0:06.16 python ./rx.py --nocrypt --args rtl -N LNA:47 -S 57600 -o 25000 -d 300 -q 1 -2 -T kutrunk.tsv -w
1098 pi 20 0 533M 170M 52640 S 5.2 18.4 0:05.00 python ./rx.py --nocrypt --args rtl -N LNA:47 -S 57600 -o 25000 -d 300 -q 1 -2 -T kutrunk.tsv -w
1095 pi 20 0 533M 170M 52640 S 4.5 18.4 0:04.48 python ./rx.py --nocrypt --args rtl -N LNA:47 -S 57600 -o 25000 -d 300 -q 1 -2 -T kutrunk.tsv -w
1321 pi 20 0 8484 3216 2444 R 4.5 0.3 0:03.33 htop
1096 pi 20 0 533M 170M 52640 S 3.9 18.4 0:03.15 python ./rx.py --nocrypt --args rtl -N LNA:47 -S 57600 -o 25000 -d 300 -q 1 -2 -T kutrunk.tsv -w
1091 pi 20 0 533M 170M 52640 S 3.2 18.4 0:04.28 python ./rx.py --nocrypt --args rtl -N LNA:47 -S 57600 -o 25000 -d 300 -q 1 -2 -T kutrunk.tsv -w
1099 pi 20 0 533M 170M 52640 S 3.2 18.4 0:03.44 python ./rx.py --nocrypt --args rtl -N LNA:47 -S 57600 -o 25000 -d 300 -q 1 -2 -T kutrunk.tsv -w
1092 pi 20 0 533M 170M 52640 S 2.6 18.4 0:02.92 python ./rx.py --nocrypt --args rtl -N LNA:47 -S 57600 -o 25000 -d 300 -q 1 -2 -T kutrunk.tsv -w
1093 pi 20 0 533M 170M 52640 S 2.6 18.4 0:03.42 python ./rx.py --nocrypt --args rtl -N LNA:47 -S 57600 -o 25000 -d 300 -q 1 -2 -T kutrunk.tsv -w
1090 pi 20 0 533M 170M 52640 S 2.6 18.4 0:02.34 python ./rx.py --nocrypt --args rtl -N LNA:47 -S 57600 -o 25000 -d 300 -q 1 -2 -T kutrunk.tsv -w
1101 pi 20 0 533M 170M 52640 S 1.9 18.4 0:01.81 python ./rx.py --nocrypt --args rtl -N LNA:47 -S 57600 -o 25000 -d 300 -q 1 -2 -T kutrunk.tsv -w
1104 pi 20 0 533M 170M 52640 S 1.9 18.4 0:01.35 python ./rx.py --nocrypt --args rtl -N LNA:47 -S 57600 -o 25000 -d 300 -q 1 -2 -T kutrunk.tsv -w
1103 pi 20 0 533M 170M 52640 S 1.9 18.4 0:01.49 python ./rx.py --nocrypt --args rtl -N LNA:47 -S 57600 -o 25000 -d 300 -q 1 -2 -T kutrunk.tsv -w
1107 pi 20 0 533M 170M 52640 S 1.3 18.4 0:01.73 python ./rx.py --nocrypt --args rtl -N LNA:47 -S 57600 -o 25000 -d 300 -q 1 -2 -T kutrunk.tsv -w
1105 pi 20 0 533M 170M 52640 S 1.3 18.4 0:01.40 python ./rx.py --nocrypt --args rtl -N LNA:47 -S 57600 -o 25000 -d 300 -q 1 -2 -T kutrunk.tsv -w
 

KA1RBI

Member
Joined
Aug 15, 2008
Messages
799
Location
Portage Escarpment
Most all GNU Radio apps (when using its default thread-per-block scheduler) automatically run each block in the flowgraph in a separate thread. Thus a multi-core CPU is leveraged to the maximum extent possible.

On most OS systems if you run the command
Code:
top -H -p 12345         # (chg 12345 to the principal process PID of OP25 as shown by 'ps ax')
that command should break out the actual block names (albeit a bit truncated)......

Max
 
Status
Not open for further replies.
Top