D. Scott MacKenzie
Am using AMD 5950X with 16 cores @4.5 Ghz, 64Gb RAM and multiple 2Tb SSD (One M.2 MVMe and one regular SSD), Quadro P2200 (8Gb) graphics card (weak part of system). While overkill for WSJT, it has no problem keeping up, even in a target rich environment.
From: main@WSJTX.groups.io <main@WSJTX.groups.io> On Behalf Of Tom Loughney via groups.io
Sent: Wednesday, June 9, 2021 1:56 PM To: main@WSJTX.groups.io Subject: Re: [WSJTX] Call for information about PC systems being used for WSJT-X #general
Bill, |
|
Bill,
Not sure what AVX is, but here’s what I’m using here:
Dell Inspiron 3721, Intel Core i3-3227 CPU @1.95 Ghz, 12 GB RAM, Windows 10
64 bit.
Art., N2KA
From: Tom Loughney via groups.io
Sent: Wednesday, June 9, 2021 1:55 PM
To: main@WSJTX.groups.io
Subject: Re: [WSJTX] Call for information about PC systems being
used for WSJT-X #general Bill, System that runs WSJT-X is an I-7 HP Laptop. May replace it with an I-9 soon since that is needed for performance with some Adobe and A/V software I use I-9 is on desktop and could maybe be used with WSJT-X also. I know a lot of people with older systems (mostly Celerons) and low power systems (mostly Raspberry Pi) trying to do things. For doing it on the cheap support for these is important for a while at least. While that can be fun, like QRP with 1W or less, it is too frustrating for me to use a slow CPU. (I mostly run 100W or less and a lot of QRP but can add an amp when needed. I have never needed an amp with FT-8/4). I have done programming before where I had different chips and OS to contend with - 8/16/32 bit and 32/64 bit and so many versions of Visual C++ it was hard to keep them straight. and that was just with Windows. Adding Linux and Mac OS really complicates it and hats off to your team for dealing with that I know you want to make it as clean and fast as you can, and adding decision trees in for various hardware issues complicates the code base and has to slow things down some. I used to do things where we measured performance with a stop watch! Now it is expected that you touch a ley (or the screen) and get an immediate response. I think that there are enough Celeron class users to justify both a slow program path and a more modern one. Or have different installs for old/slow systems and more modern robust ones. I don't know how many will respond to this thread, but do not think it will be representative of the user base. People on here are more likely to be those technically more active. The other issue is to not break what works like links with JT-AlertX, DXMaps, PSK Reporter, Time Clocks, and logging programs. I run these at the same time as WSJT-X and also link logging programs vis internal network. (Everything gets logged in at least 3 places). Thanks for the great work you all do. 73, Tom AJ4XM
|
|
Reino Talarmo
Hi Bill, The first generation on i3 did not support AVX. Release date 2020. Cores i3-530 to i3-560 don’t support. Any higher numbered seems to support.
73, Reino OH3mA
Lähettäjä: main@WSJTX.groups.io [mailto:main@WSJTX.groups.io] Puolesta bill.neuro
I use Intel Core i3 so I assume I support AVX.
Bill K1NS
Sent from my T-Mobile 5G Device
|
|
Locked
Re: #help
#TechnicalHelpQuestion
neil_zampella <neilz@...>
That is not the same as just 'going to time.is' as someone
previously said. On 6/9/2021 9:27 AM, Skip wrote:
|
|
William Smith <w_smith@...>
In fact:
toggle quoted message
Show quoted text
#!/usr/bin/env python3 # # Calculate distance (by year?) from wsjtx.log # # rev 1.0 06/09/2021 WPNS read and parse file # rev 1.1 06/09/2021 WPNS parse yar, accumulate by year. import time from datetime import datetime from pyhamtools.locator import calculate_distance QSOfile = open("wsjtx.log","r") LineCount = 0 DistanceAcc = 0 StartYear = 2020 DistanceAcc = [0]*10 # allow for 10 years for line in QSOfile: LineCount += 1 Values = line.split(",") Year = int(Values[0][0:4]) Grid = Values[5] if (Grid != ''): Distance = calculate_distance("FN42kn96", Grid) DistanceAcc[Year-StartYear] += Distance QSOfile.close() print("Found {} Lines in file".format(LineCount)) for year in range(len(DistanceAcc)): if DistanceAcc[year] > 0: print ("{} {}".format(year+StartYear,int(DistanceAcc[year]))) I get: Found 576 Lines in file 2020 858040 2021 184032 Enjoy! 73, Willie N1JBJ On Jun 9, 2021, at 10:28 AM, William Smith via groups.io <w_smith@...> wrote: |
|
Locked
Re: [EXTERNAL] Re: [WSJTX] Cannot use /P in callsign when using JT65 and JT9 modes
#JT65
#JT9
#IssueReport
Hi thanks for the answer, maybe FT8 is more attractive than JT65 so this problem doesn't maintained for a long time. 73
|
|
Tom Loughney
Bill,
System that runs WSJT-X is an I-7 HP Laptop. May replace it with an I-9 soon since that is needed for performance with some Adobe and A/V software I use I-9 is on desktop and could maybe be used with WSJT-X also. I know a lot of people with older systems (mostly Celerons) and low power systems (mostly Raspberry Pi) trying to do things. For doing it on the cheap support for these is important for a while at least. While that can be fun, like QRP with 1W or less, it is too frustrating for me to use a slow CPU. (I mostly run 100W or less and a lot of QRP but can add an amp when needed. I have never needed an amp with FT-8/4). I have done programming before where I had different chips and OS to contend with - 8/16/32 bit and 32/64 bit and so many versions of Visual C++ it was hard to keep them straight. and that was just with Windows. Adding Linux and Mac OS really complicates it and hats off to your team for dealing with that. I know you want to make it as clean and fast as you can, and adding decision trees in for various hardware issues complicates the code base and has to slow things down some. I used to do things where we measured performance with a stop watch! Now it is expected that you touch a ley (or the screen) and get an immediate response. I think that there are enough Celeron class users to justify both a slow program path and a more modern one. Or have different installs for old/slow systems and more modern robust ones. I don't know how many will respond to this thread, but do not think it will be representative of the user base. People on here are more likely to be those technically more active. The other issue is to not break what works like links with JT-AlertX, DXMaps, PSK Reporter, Time Clocks, and logging programs. I run these at the same time as WSJT-X and also link logging programs vis internal network. (Everything gets logged in at least 3 places). Thanks for the great work you all do. 73, Tom AJ4XM |
|
Hello Karza
Thank Thank you pour votre réponse. No... No... the first colour is the background colour, what I want to add second is the text colour? 73's Jeran Claude F1DSZ |
|
Dave (NK7Z)
Device name NK7Z
Processor Intel(R) Core(TM) i3-8100 CPU @ 3.60GHz 3.60 GHz Installed RAM 8.00 GB (7.87 GB usable) System type 64-bit operating system, x64-based processor Pen and touch No pen or touch input is available for this display 73, and thanks, Dave (NK7Z) https://www.nk7z.net ARRL Volunteer Examiner ARRL Technical Specialist, RFI ARRL Asst. Director, NW Division, Technical Resources |
|
On 09/06/2021 13:40, bill.neuro wrote:
I use Intel Core i3 so I assume I support AVX.Bill, not necessarily, there were Intel Core i3/i5/i7 CPUs made before the AVX technology was released, you need to check your specific CPU model. 73 Bill G4WJS. |
|
On 09/06/2021 15:05, Jerry/N5ADJ wrote:
Bill, Jerry, that information is insufficient to answer my question about AVX support. On macOS you can use this command from a terminal:
If AVX is mentioned you have AVX support. 73 |
|
Brian Stucker
Hello Ken, Without turning this into a longer contesting discussion, you might also want to look into starting the CQ Marathon. It runs from Jan 1st through December 31st. Your score is a combination of worked DXCC entities (plus 6 more not in the DXCC list) and zones. Given how many DX QSOs are completed with FT-8 it's pretty close to what you're suggesting. It takes quite a considerable amount of work to get your score into the 200s or higher. It can be very addictive trying to scour around for another DX entity to contact, and you can use that activity towards other awards like DXCC, etc. On the VHF/UHF side, you can always go for VUCC, FFMA, or even a 2M or 6M DXCC award if you want to be even more ambitious. 73, Brian - KB2S On Wed, Jun 9, 2021 at 7:28 AM William Smith <w_smith@...> wrote: Sounds like fun, Python code to parse wsjtx.log is trivial, and there's https://pypi.org/project/maidenhead/ to convert to lat/lon, and then https://pypi.org/project/geopy/ to get distance, or https://github.com/dh1tw/pyhamtools (looks like the code is there but the documentation is [ahem] incomplete) where it looks like: |
|
Locked
Re: #HELP IC7300
#TechnicalHelpQuestion
Bob Turner
I have read the 7300 is easily overloaded by other nearby amateur transceivers. I can personally attest that my 7300 was overloaded by 1210AM broadcast band transmitter 1.9 miles away from me. I heard multiples of the fundamental frequency all the way up into 10M. A BCB filter took care of 1210AM. I recently upgraded to the IC-7610. I removed the BCB filter as a test. No overload problem.
I operated the 7300 on SSB, and towards the end of its usage it was on FT8.
7 3 Bob N2SCJ
From: main@WSJTX.groups.io [mailto:main@WSJTX.groups.io]
On Behalf Of Joe K2UF
Sent: Tuesday, June 8, 2021 7:17 PM To: main@wsjtx.groups.io Subject: [WSJTX] #HELP IC7300
Hi folks,
#HELP OLD ham new to list. I am looking at an IC-7300 to use mainly for 6 meter work. Need 6 meter DX countries to finish my 10 band DXCC. Looking at the 7300 price mainly
Any comments on the IC-7300 for 6 meters CW/SSB/FT8 .
Thanks es 73
Joe K2UF |
|
Nc8q-mesh@gelm.net <nc8q-mesh@...>
Raspberry Pi Model 4B - 2GB RAM
|
|
Locked
Re: #help
#TechnicalHelpQuestion
Skip <WMMILTON@...>
simply follow these directions and use Time.is: WG9O On Wed, Jun 9, 2021 at 1:26 AM Mike Koralewski K8VA <k8va@...> wrote: M |
|
Locked
Re: Low RX db running on Raspberry Pi
#AudioIssues
I'm using a Kenwood TS 570d connected to a signalink through the ACC cable and then the Signalink is connected to a raspberry pi. In installed the jumper on the Signalink to increase the Rx and i'm using pavucontrol to boost the level even more.
After adjusting the ts570d menu item 34 to 9, I now get 20db. Curious of what else I could try. |
|
Bill,
Late 2013 Macbook Pro/Catalina 2.6 GHz Quad-Core Intel Core i7 Jerry N5ADJ |
|
Karza <kari.sillanmaki@...>
Hi Jean-Claude,
On 8.6.2021 21.46, Jean-Claude F1DSZ
wrote:
Hello developers I am not a developer, so excuse me for stepping in here, but...
Not quite sure what you mean by "the occurance of the white", but I'm guessing you want to display just a solid green line wiht no texts. It this is what you want then why not call "appendText" with both fore- and background colours set to same value? Like this:
Here's the result, a solid green line between decodes.
If this is not what you wanted then please disregard this message. 73's de Kari, oh2gqc
|
|
Locked
Re: Low RX db running on Raspberry Pi
#AudioIssues
I found this menu item I bumped up menu item 34 to 9 and it's better, 20db. But at Max everything I'd expect more than that. |
|
Hi Bill,
My shack computer is an i3-7100 @ 3.9 GHz. 2 Cores, 4 Logical Processors running W10 HAL 10.0.19041.964 -- 73 Phil GM3ZZA |
|