-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathprofile.bat
More file actions
22 lines (12 loc) · 998 Bytes
/
profile.bat
File metadata and controls
22 lines (12 loc) · 998 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
set NumRuns=2
set DelayBetweenRuns=10
set AdditionalCmdLineOptions=,"stagingbuffersize":536870912,"profileseconds":500.0,"presentationMode":0, "cameraspeed":0.5
FOR /f "tokens=* delims=" %%A in ('bin\timestamp') do @set "ds_ts=%%A"
msinfo32.exe /REPORT "bin\msinfo_%ds_ts%.txt"
dxdiag /whql:off /t "bin\dxdiag_%ds_ts%.txt"
call BuildMediaUncompressed.bat&&Timeout /T %DelayBetweenRuns% /NOBREAK
for /l %%N in (1 1 %NumRuns%) do call RunNoDirectStorage.bat %AdditionalCmdLineOptions%&&Timeout /T %DelayBetweenRuns% /NOBREAK
for /l %%N in (1 1 %NumRuns%) do call RunDirectStorage.bat %AdditionalCmdLineOptions%&&Timeout /T %DelayBetweenRuns% /NOBREAK
call BuildMediaCompressed.bat &&Timeout /T %DelayBetweenRuns% /NOBREAK
for /l %%N in (1 1 %NumRuns%) do call RunDirectStorage.bat %AdditionalCmdLineOptions%&&Timeout /T %DelayBetweenRuns% /NOBREAK
for /l %%N in (1 1 %NumRuns%) do call RunDirectStorageCPUDecompression.bat %AdditionalCmdLineOptions%&&Timeout /T %DelayBetweenRuns% /NOBREAK