Hi,
Let me try to help you but I'm no expert on that field.
The below is based on the documentation and my testing.
From the SAS® 9.4 System Options: Reference, Fifth Edition documentation, we have a list of SAS products and solutions which use threaded technology.
As you can see, it includes SAS Enterprise Miner, not SAS Enterprise Guide.
But the Workspace Server can use the THREADS option, which is great news if this is the architecture used on your side.
So next step consists in checking if the NEURAL procedure is listed from the page Scalable SAS Procedures.
Unfortunately, it's not the case.
It might explain why you see such behaviour.
On a side note, you may want to check if the option THREADS is enabled and used in your environment, when you use SAS Enterprise Guide.
You can simply run the below program:
proc options option=cpucount; run;
proc options option=threads; run;
option MSGLEVEL=I;
PROC SORT DATA=sashelp.class out=class THREADS;
BY name;
RUN;
The log will return those details.
- The 2 proc options will give you the number of CPU and the value of the THREADS option (threads/nothreads)
- Thanks to the MSGLEVEL option, we'll have this message in the log "NOTE: SAS threaded sort was used." (if tHREADS is enabled)
Hope that helps you.
Cheers, Damo
... View more