forked from Farama-Foundation/ViZDoom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fps.py
executable file
·99 lines (77 loc) · 2.73 KB
/
fps.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#!/usr/bin/env python3
#####################################################################
# This script tests performance in frames per second.
# Change iters, resolution, window visibility, use get_ state or not.
# It should give you some idea of how fast the framework can work on
# your hardware. The test involves copying the state to make it more
# similar to any reasonable usage. Comment the line with get_state
# to exclude copying process.
#####################################################################
import os
from argparse import ArgumentParser
from random import choice
from time import time
import tqdm
import vizdoom as vzd
# Options:
resolution = vzd.ScreenResolution.RES_320X240
screen_format = vzd.ScreenFormat.CRCGCB
depth_buffer = False
labels_buffer = False
automap_buffer = False
#####################################################################
DEFAULT_CONFIG = os.path.join(vzd.scenarios_path, "basic.cfg")
DEFAULT_ITERATIONS = 10000
if __name__ == "__main__":
parser = ArgumentParser("ViZDoom example showing possible framerates.")
parser.add_argument(
dest="config",
default=DEFAULT_CONFIG,
nargs="?",
help="Path to the configuration file of the scenario."
" Please see "
"../../scenarios/*cfg for more scenarios.",
)
parser.add_argument(
"-i",
"--iterations",
default=DEFAULT_ITERATIONS,
type=int,
help="Number of iterations(actions) to run",
)
args = parser.parse_args()
game = vzd.DoomGame()
# Use other config file if you wish.
game.load_config(args.config)
game.set_screen_resolution(resolution)
game.set_screen_format(screen_format)
game.set_depth_buffer_enabled(depth_buffer)
game.set_labels_buffer_enabled(labels_buffer)
game.set_automap_buffer_enabled(automap_buffer)
game.set_objects_info_enabled(True)
game.set_sectors_info_enabled(True)
game.set_window_visible(False)
game.init()
actions = [[True, False, False], [False, True, False], [False, False, True]]
left = actions[0]
right = actions[1]
shoot = actions[2]
idle = [False, False, False]
start = time()
print(
"Checking FPS rating with all features enabled. It may take some time. Be patient."
)
for i in tqdm.trange(args.iterations, leave=False):
if game.is_episode_finished():
game.new_episode()
# Copying happens here
s = game.get_state()
game.make_action(choice(actions))
end = time()
t = end - start
print("Results:")
print("Iterations:", args.iterations)
print("Resolution:", resolution)
print("time:", round(t, 3), "s")
print("fps: ", round(args.iterations / t, 2))
game.close()