forked from Oneflow-Inc/OneFlow-Benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.py
executable file
·161 lines (130 loc) · 5.48 KB
/
util.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
"""
Copyright 2020 The OneFlow Authors. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
import os
import time
import numpy as np
from collections import OrderedDict
import pandas as pd
from datetime import datetime
import oneflow as flow
def InitNodes(args):
if args.num_nodes > 1:
assert args.num_nodes <= len(args.node_ips)
flow.env.ctrl_port(args.ctrl_port)
nodes = []
for ip in args.node_ips[:args.num_nodes]:
addr_dict = {}
addr_dict["addr"] = ip
nodes.append(addr_dict)
flow.env.machine(nodes)
class Snapshot(object):
def __init__(self, model_save_dir, model_load_dir):
self._model_save_dir = model_save_dir
if model_load_dir:
assert os.path.isdir(model_load_dir)
print("Restoring model from {}.".format(model_load_dir))
flow.load_variables(flow.checkpoint.get(model_load_dir))
else:
flow.checkpoint.save('initial_model')
print("Init model on demand.")
def save(self, name):
snapshot_save_path = os.path.join(self._model_save_dir, "snapshot_{}".format(name))
if not os.path.exists(snapshot_save_path):
os.makedirs(snapshot_save_path)
print("Saving model to {}.".format(snapshot_save_path))
flow.checkpoint.save(snapshot_save_path)
class StopWatch(object):
def __init__(self):
pass
def start(self):
self.start_time = time.time()
self.last_split = self.start_time
def split(self):
now = time.time()
duration = now - self.last_split
self.last_split = now
return duration
def stop(self):
self.stop_time = time.time()
def duration(self):
return self.stop_time - self.start_time
class Metric(object):
def __init__(self, desc='train', print_steps=-1, batch_size=256, keys=[]):
r"""accumulate and calculate metric
Args:
desc: `str` general description of the metric to show
print_steps: `Int` print metrics every nth steps
batch_size: `Int` batch size per step
keys: keys in callback outputs
Returns:
"""
self.desc = desc
self.print_steps = print_steps
assert batch_size > 0
self.batch_size = batch_size
assert isinstance(keys, (list, tuple))
self.keys = keys
self.metric_dict = OrderedDict()
self.metric_dict['step'] = 0
self.timer = StopWatch()
self.timer.start()
self._clear()
def _clear(self):
for key in self.keys:
self.metric_dict[key] = 0.0
self.metric_dict['n_' + key] = 0.0
self.metric_dict['throughput'] = 0.0
self.num_samples = 0.0
def update_and_save(self, key, value, step, **kwargs):
self.metric_dict[key] = value
self.metric_dict.pop('n_' + key, None)
def metric_cb(self, step=0, **kwargs):
def callback(outputs):
if step == 0: self._clear()
for key in self.keys:
self.metric_dict[key] += outputs[key].sum()
self.metric_dict['n_' + key] += outputs[key].size
self.num_samples += self.batch_size
if (step + 1) % self.print_steps == 0:
self.metric_dict['step'] = step
for k, v in kwargs.items():
self.metric_dict[k] = v
throughput = self.num_samples / self.timer.split()
self.update_and_save('throughput', throughput, step)
for key in self.keys:
value = self.metric_dict[key] / self.metric_dict['n_' + key]
self.update_and_save(key, value, step, **kwargs)
print(', '.join(('{}: {}' if type(v) is int else '{}: {:.3f}').format(k, v) \
for k, v in self.metric_dict.items()), time.time())
self._clear()
return callback
def CreateOptimizer(args):
warmup_batches = int(args.iter_num * args.warmup_proportion)
lr_warmup = flow.optimizer.warmup.linear(warmup_batches, 0)
lr_scheduler = flow.optimizer.PolynomialScheduler(args.learning_rate, args.iter_num, 0.0,
warmup=lr_warmup)
loss_scale_policy = None
if args.use_fp16:
loss_scale_policy = flow.optimizer.loss_scale.dynamic_loss_scale(increment_period=2000);
return flow.optimizer.AdamW(lr_scheduler, epsilon=1e-6, weight_decay=args.weight_decay_rate,
weight_decay_excludes=["bias", "LayerNorm", "layer_norm"],
grad_clipping=flow.optimizer.grad_clipping.by_global_norm(1.0),
loss_scale_policy=loss_scale_policy)
def GetFunctionConfig(args):
config = flow.function_config()
config.enable_auto_mixed_precision(args.use_fp16)
if args.use_xla:
config.use_xla_jit(True)
config.enable_fuse_add_to_output(True)
config.enable_fuse_model_update_ops(True)
return config