<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Speed difference between EG 8.3 and SAS 9.4 when running proc bglimm in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Speed-difference-between-EG-8-3-and-SAS-9-4-when-running-proc/m-p/906639#M44039</link>
    <description>&lt;P&gt;SASKiwi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The only difference I notice is in the CPU usage. Running the test case directly with SAS 9.4, the "SAS 9.4 for Windows (32 bit)" uses about 6% - 10% CPU. But running the test case with EG 8.3, the "SAS 9.4 for Windows (32 bit)" process uses only about&amp;nbsp;1% - 4% CPU.&amp;nbsp;The EG 8.3 process itself used hardly any CPU.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is another test I ran using proc glimmix.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;data ADSU;
call streaminit(1);	
do USUBJID = 1 to 5000;
	do AVISIT = 1 to 3;
		AVAL = rand('bernoulli', 0.8);
	output;
	end;
end;
run;

ods graphics off; ods exclude all; ods noresults;
proc glimmix data = ADSU;
class USUBJID AVISIT;
model AVAL = AVISIT / 
	dist = binary link = logit;
random intercept / sub = USUBJID type = un;
options validvarname=v7;
run;
ods graphics on; ods exclude none; ods results;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Again, SAS 9.4 is about 4x's faster than EG 8.3.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SAS 9.4 time output below&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;NOTE: The covariance matrix is the zero matrix.
NOTE: PROCEDURE GLIMMIX used (Total process time):
      real time           6.40 seconds
      cpu time            4.20 seconds&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;EG time output below&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;NOTE: PROCEDURE GLIMMIX used (Total process time):
      real time           31.12 seconds
      cpu time            13.70 seconds&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe there is a constraint in EG 8.3 that is not occurring in SAS 9.4?&lt;/P&gt;</description>
    <pubDate>Thu, 07 Dec 2023 00:17:23 GMT</pubDate>
    <dc:creator>Hopeful</dc:creator>
    <dc:date>2023-12-07T00:17:23Z</dc:date>
    <item>
      <title>Speed difference between EG 8.3 and SAS 9.4 when running proc bglimm</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Speed-difference-between-EG-8-3-and-SAS-9-4-when-running-proc/m-p/906625#M44036</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've been using SAS 9.4 for a while, and I am trying out SAS Enterprise Guide. However, my EG is running proc bglimm a lot slower than SAS 9.4. I have EG 8.3 (64-bit) and SAS 9.4 (32-bit) on the same local Windows 11 laptop machine.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is a test case:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;data ADSU;
call streaminit(1);	
do USUBJID = 1 to 20;
	do AVISIT = 1 to 3;
		AVAL = rand('bernoulli', 0.8);
	output;
	end;
end;
run;

ods graphics off; ods exclude all; ods noresults;
proc bglimm data = ADSU nbi = 500 nmc = 200000 thin = 7 nthreads = 3 
seed = 1 outpost = post plots = none;
class USUBJID AVISIT;
model AVAL = AVISIT / 
	dist = binary link = logit cprior = normal(var = 1);
random intercept / sub = USUBJID type = un nooutpost;
options validvarname=v7;
run;
ods graphics on; ods exclude none; ods results;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It take about 4x's longer to run this proc bglimm test case in EG than in SAS 9.4.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SAS 9.4 log below&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;NOTE: Copyright (c) 2016 by SAS Institute Inc., Cary, NC, USA.
NOTE: SAS (r) Proprietary Software 9.4 (TS1M7)
NOTE: This session is executing on the W32_10PRO  platform.



NOTE: Analytical products:

      SAS/STAT 15.2
      SAS/ETS 15.2
      SAS/OR 15.2
      SAS/IML 15.2
      SAS/QC 15.2

NOTE: Additional host information:

 W32_10PRO WIN 10.0.22621  Workstation

NOTE: SAS initialization used:
      real time           0.99 seconds
      cpu time            0.18 seconds

NOTE: Unable to open SASUSER.PROFILE. WORK.PROFILE will be opened instead.
NOTE: All profile changes will be lost at the end of the session.
NOTE: Unable to open SASUSER.PROFILE. WORK.PROFILE will be opened instead.
NOTE: All profile changes will be lost at the end of the session.

1    data ADSU;
2    call streaminit(1);
3    do USUBJID = 1 to 20;
4        do AVISIT = 1 to 3;
5            AVAL = rand('bernoulli', 0.8);
6        output;
7        end;
8    end;
9    run;

NOTE: The data set WORK.ADSU has 60 observations and 3 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds


10
11   ods graphics off; ods exclude all; ods noresults;
12   proc bglimm data = ADSU nbi = 500 nmc = 200000 thin = 7 nthreads = 3 seed = 1
NOTE: Writing HTML Body file: sashtml.htm
13   outpost = post plots = none;
14   class USUBJID AVISIT;
15   model AVAL = AVISIT /
16       dist = binary link = logit cprior = normal(var = 1);
17   random intercept / sub = USUBJID type = un nooutpost;
18   options validvarname=v7;
19   run;

NOTE: Generating the burn-in samples.
NOTE: Beginning sample generation.
NOTE: Beginning calculation of summary and diagnostics statistics.
NOTE: The data set WORK.POST has 28572 observations and 5 variables.
NOTE: PROCEDURE BGLIMM used (Total process time):
      real time           18.23 seconds
      cpu time            2.71 seconds


20   ods graphics on; ods exclude none; ods results&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EG 8.3 log below&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;1                                                          The SAS System                          17:07 Wednesday, December 6, 2023

1          ;*';*";*/;quit;run;
2          OPTIONS PAGENO=MIN;
3          %LET _CLIENTTASKLABEL='Program';
4          %LET _CLIENTPROCESSFLOWNAME='Standalone Not In Project';
5          %LET _CLIENTPROJECTPATH='';
6          %LET _CLIENTPROJECTPATHHOST='';
7          %LET _CLIENTPROJECTNAME='';
8          %LET _SASPROGRAMFILE='';
9          %LET _SASPROGRAMFILEHOST='';
10         
11         ODS _ALL_ CLOSE;
12         OPTIONS DEV=PNG;
13         GOPTIONS XPIXELS=0 YPIXELS=0;
14         %macro HTML5AccessibleGraphSupported;
15             %if %_SAS_VERCOMP_FV(9,4,4, 0,0,0) &amp;gt;= 0 %then ACCESSIBLE_GRAPH;
16         %mend;
17         
18         data ADSU;
19         call streaminit(1);	
20         do USUBJID = 1 to 20;
21         	do AVISIT = 1 to 3;
22         		AVAL = rand('bernoulli', 0.8);
23         	output;
24         	end;
25         end;
26         run;

NOTE: The data set WORK.ADSU has 60 observations and 3 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

27         
28         ods graphics off; ods exclude all; ods noresults;
29         proc bglimm data = ADSU nbi = 500 nmc = 200000 thin = 7 nthreads = 3 seed = 1
30         outpost = post plots = none;
31         class USUBJID AVISIT;
32         model AVAL = AVISIT /
33         	dist = binary link = logit cprior = normal(var = 1);
34         random intercept / sub = USUBJID type = un nooutpost;
35         options validvarname=v7;
36         run;

WARNING: No output destinations active.
NOTE: Generating the burn-in samples.
NOTE: Beginning sample generation.
NOTE: Beginning calculation of summary and diagnostics statistics.
NOTE: The data set WORK.POST has 28572 observations and 5 variables.
NOTE: PROCEDURE BGLIMM used (Total process time):
      real time           1:09.18
      cpu time            8.78 seconds
      

37         ods graphics on; ods exclude none; ods results;
38         
39         
40         
2                                                          The SAS System                          17:07 Wednesday, December 6, 2023

41         
42         %LET _CLIENTTASKLABEL=;
43         %LET _CLIENTPROCESSFLOWNAME=;
44         %LET _CLIENTPROJECTPATH=;
45         %LET _CLIENTPROJECTPATHHOST=;
46         %LET _CLIENTPROJECTNAME=;
47         %LET _SASPROGRAMFILE=;
48         %LET _SASPROGRAMFILEHOST=;
49         
50         ;*';*";*/;quit;run;
51         ODS _ALL_ CLOSE;
52         
53         
54         QUIT; RUN;
55   &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have read some other threads in the community that suggest the results format might be part of the issue. I believe I already turned off all results format (see screenshot below).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Hopeful_0-1701902364908.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/90923iCD2D14052980F2A8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Hopeful_0-1701902364908.png" alt="Hopeful_0-1701902364908.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone have any ideas about what might be going on and, if possible, how to speed up EG 8.3?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Bryan&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2023 22:45:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Speed-difference-between-EG-8-3-and-SAS-9-4-when-running-proc/m-p/906625#M44036</guid>
      <dc:creator>Hopeful</dc:creator>
      <dc:date>2023-12-06T22:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: Speed difference between EG 8.3 and SAS 9.4 when running proc bglimm</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Speed-difference-between-EG-8-3-and-SAS-9-4-when-running-proc/m-p/906626#M44037</link>
      <description>&lt;P&gt;Open Windows Task Manager and track CPU usage, memory and IO when running your tests - do there appear to be any constraints? It would be worth trying a few other PROCs or SAS programs to see if this is a more general problem or not.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2023 23:02:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Speed-difference-between-EG-8-3-and-SAS-9-4-when-running-proc/m-p/906626#M44037</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2023-12-06T23:02:59Z</dc:date>
    </item>
    <item>
      <title>Re: Speed difference between EG 8.3 and SAS 9.4 when running proc bglimm</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Speed-difference-between-EG-8-3-and-SAS-9-4-when-running-proc/m-p/906632#M44038</link>
      <description>&lt;P&gt;Does your EG reside on the same computer that is running SAS 9.4? Or are you now connecting to a server hosting EG?&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2023 23:29:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Speed-difference-between-EG-8-3-and-SAS-9-4-when-running-proc/m-p/906632#M44038</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-12-06T23:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: Speed difference between EG 8.3 and SAS 9.4 when running proc bglimm</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Speed-difference-between-EG-8-3-and-SAS-9-4-when-running-proc/m-p/906639#M44039</link>
      <description>&lt;P&gt;SASKiwi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The only difference I notice is in the CPU usage. Running the test case directly with SAS 9.4, the "SAS 9.4 for Windows (32 bit)" uses about 6% - 10% CPU. But running the test case with EG 8.3, the "SAS 9.4 for Windows (32 bit)" process uses only about&amp;nbsp;1% - 4% CPU.&amp;nbsp;The EG 8.3 process itself used hardly any CPU.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is another test I ran using proc glimmix.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;data ADSU;
call streaminit(1);	
do USUBJID = 1 to 5000;
	do AVISIT = 1 to 3;
		AVAL = rand('bernoulli', 0.8);
	output;
	end;
end;
run;

ods graphics off; ods exclude all; ods noresults;
proc glimmix data = ADSU;
class USUBJID AVISIT;
model AVAL = AVISIT / 
	dist = binary link = logit;
random intercept / sub = USUBJID type = un;
options validvarname=v7;
run;
ods graphics on; ods exclude none; ods results;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Again, SAS 9.4 is about 4x's faster than EG 8.3.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SAS 9.4 time output below&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;NOTE: The covariance matrix is the zero matrix.
NOTE: PROCEDURE GLIMMIX used (Total process time):
      real time           6.40 seconds
      cpu time            4.20 seconds&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;EG time output below&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;NOTE: PROCEDURE GLIMMIX used (Total process time):
      real time           31.12 seconds
      cpu time            13.70 seconds&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe there is a constraint in EG 8.3 that is not occurring in SAS 9.4?&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2023 00:17:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Speed-difference-between-EG-8-3-and-SAS-9-4-when-running-proc/m-p/906639#M44039</guid>
      <dc:creator>Hopeful</dc:creator>
      <dc:date>2023-12-07T00:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: Speed difference between EG 8.3 and SAS 9.4 when running proc bglimm</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Speed-difference-between-EG-8-3-and-SAS-9-4-when-running-proc/m-p/906640#M44040</link>
      <description>&lt;P&gt;ballardw,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, both SAS 9.4 and EG 8.3 are installed directly on my local Windows machine.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2023 00:19:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Speed-difference-between-EG-8-3-and-SAS-9-4-when-running-proc/m-p/906640#M44040</guid>
      <dc:creator>Hopeful</dc:creator>
      <dc:date>2023-12-07T00:19:28Z</dc:date>
    </item>
    <item>
      <title>Re: Speed difference between EG 8.3 and SAS 9.4 when running proc bglimm</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Speed-difference-between-EG-8-3-and-SAS-9-4-when-running-proc/m-p/906896#M44042</link>
      <description>&lt;P&gt;Your new tests suggest it is not a procedure-specific issue. Maybe you could run one of your programs in batch mode as well to see what a "no-interface" timing would be. My suspicion is that there is an overhead with EG in both transmitting SAS jobs and receiving the job results but I'm surprised that it is that much slower.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Dec 2023 00:21:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Speed-difference-between-EG-8-3-and-SAS-9-4-when-running-proc/m-p/906896#M44042</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2023-12-08T00:21:09Z</dc:date>
    </item>
    <item>
      <title>Re: Speed difference between EG 8.3 and SAS 9.4 when running proc bglimm</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Speed-difference-between-EG-8-3-and-SAS-9-4-when-running-proc/m-p/906907#M44043</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/437402"&gt;@Hopeful&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;ballardw,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes, both SAS 9.4 and EG 8.3 are installed directly on my local Windows machine.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That doesn't completely answer the question.&amp;nbsp; Enterprise Guide must be installed on PC.&amp;nbsp; But for it to run SAS code it has to connect to a SAS session.&amp;nbsp; If you have SAS installed on the same machine as you are running EG you COULD have connected to that version of SAS.&amp;nbsp; But you could also have connected to another version of SAS that is running somewhere else on a different machine.&amp;nbsp; It just depends on how your EG session is setup.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If they are running on the same machine then perhaps running EG is using up system memory and it is making the job run slower?&amp;nbsp;&amp;nbsp;Did you try running a program that is more I/O bound than proc bglimm?&amp;nbsp; Do you also see the same performance difference?&lt;/P&gt;</description>
      <pubDate>Fri, 08 Dec 2023 03:58:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Speed-difference-between-EG-8-3-and-SAS-9-4-when-running-proc/m-p/906907#M44043</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-12-08T03:58:31Z</dc:date>
    </item>
    <item>
      <title>Re: Speed difference between EG 8.3 and SAS 9.4 when running proc bglimm</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Speed-difference-between-EG-8-3-and-SAS-9-4-when-running-proc/m-p/906977#M44044</link>
      <description>&lt;P&gt;Tom,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When running my proc bglimm test in EG, EG 8.3 only uses 106 MB and SAS 9.4 for Windows uses 22 MB (all to sas.exe). When running my proc bglimm test in SAS 9.4, SAS 9.4 for Windows uses 129 MB (38 MB are specific to sas.exe). My local machine has 128 GB RAM, and my entire system (all apps and background processes) only use 15-20% of Memory while running the tests.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As far as I can tell, my EG 8.3 is connected to my local SAS 9.4 (see screenshots below). Could you suggest a simple test for “a program that is more I/O bound than proc bglimm?”&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Hopeful_0-1702048327608.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/91020i985C768603D99F91/image-size/large?v=v2&amp;amp;px=999" role="button" title="Hopeful_0-1702048327608.png" alt="Hopeful_0-1702048327608.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Hopeful_1-1702048338010.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/91021iA22248CDE2434929/image-size/large?v=v2&amp;amp;px=999" role="button" title="Hopeful_1-1702048338010.png" alt="Hopeful_1-1702048338010.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Dec 2023 15:13:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Speed-difference-between-EG-8-3-and-SAS-9-4-when-running-proc/m-p/906977#M44044</guid>
      <dc:creator>Hopeful</dc:creator>
      <dc:date>2023-12-08T15:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: Speed difference between EG 8.3 and SAS 9.4 when running proc bglimm</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Speed-difference-between-EG-8-3-and-SAS-9-4-when-running-proc/m-p/907954#M44060</link>
      <description>&lt;P&gt;Hi Hopeful,&lt;/P&gt;
&lt;P&gt;With all default EG settings (Tools &amp;gt; Options &amp;gt; click Reset All)&lt;/P&gt;
&lt;P&gt;your glimmix sample runs for me with consistent real and cpu times of 16-17 seconds, both directly from base SAS and also from EG 8.3 running against the same local base SAS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, I am seeing consistent and expected results.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You might consider running the code below from the two environments to compare the logs to see if there are any related differences:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%put&amp;nbsp; _all_;&lt;/P&gt;
&lt;P&gt;proc options;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I use WinMerge to do a line-by-line file comparison to find discrepancies.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If no progress is made and you want to dig a bit deeper into this issue, I will be glad to assist if you want to open a new Case with SAS Technical Support.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Bill&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2023 22:32:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Speed-difference-between-EG-8-3-and-SAS-9-4-when-running-proc/m-p/907954#M44060</guid>
      <dc:creator>BillSawyer</dc:creator>
      <dc:date>2023-12-13T22:32:48Z</dc:date>
    </item>
    <item>
      <title>Re: Speed difference between EG 8.3 and SAS 9.4 when running proc bglimm</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Speed-difference-between-EG-8-3-and-SAS-9-4-when-running-proc/m-p/908734#M44069</link>
      <description>&lt;P&gt;Thanks everyone for the help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;BillSawyer figured it out for me through a SAS support case. The speed difference between EG 8.3 and Base SAS 9.4 was eliminated by changing the sas.exe priority level to "high" using task manager (temporary) or editing Windows registry (more permanent).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the temporary fix (i.e., have to do it every time you open EG):&lt;/P&gt;&lt;P&gt;1.) close BASE SAS.&lt;/P&gt;&lt;P&gt;2.) open EG and expand Local server so that it is active and checked green.&lt;/P&gt;&lt;P&gt;3.) from Windows command line/search enter: task manager&amp;nbsp; then select Run as Admin&lt;/P&gt;&lt;P&gt;4.) in Task Manager click the Details tab&lt;/P&gt;&lt;P&gt;5.) from there right-click on sas.exe and choose Priority and choose High&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is a link on how to do the more permanent fix (i.e., do not have to do it every time you open EG):&lt;/P&gt;&lt;P&gt;&lt;A href="https://answers.microsoft.com/en-us/windows/forum/windows_10-performance/how-to-permanently-set-priority-processes-using/df82bd40-ce52-4b84-af34-4d93da17d079" target="_blank"&gt;https://answers.microsoft.com/en-us/windows/forum/windows_10-performance/how-to-permanently-set-priority-processes-using/df82bd40-ce52-4b84-af34-4d93da17d079&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;</description>
      <pubDate>Mon, 18 Dec 2023 22:40:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Speed-difference-between-EG-8-3-and-SAS-9-4-when-running-proc/m-p/908734#M44069</guid>
      <dc:creator>Hopeful</dc:creator>
      <dc:date>2023-12-18T22:40:58Z</dc:date>
    </item>
  </channel>
</rss>

