-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmp_benchmark_ray_spawn.py
More file actions
265 lines (221 loc) · 8.94 KB
/
mp_benchmark_ray_spawn.py
File metadata and controls
265 lines (221 loc) · 8.94 KB
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
import ray
path = "gs://mlperf-dataset/data/2021_Brats_np/11_3d"
import gcsfs
import glob
import os
import tensorflow.io as io
from ray.data.block import BlockMetadata
from ray.data.datasource import FileMetadataProvider,FastFileMetadataProvider
import time
import numpy as np
import pprint
def _rand_crop(image, label):
low_x=low_y=low_z=0
high_x=high_y=high_z=128
image = image[:, low_x:high_x, low_y:high_y, low_z:high_z]
label = label[:, low_x:high_x, low_y:high_y, low_z:high_z]
return image, label, [low_x, high_x, low_y, high_y, low_z, high_z]
def load_data(path, files_pattern):
data = sorted(io.gfile.glob(os.path.join(path, files_pattern)))
assert len(data) > 0, f"Found no data at {path}"
return data
from torch.utils.data import Dataset,DataLoader
import torch
import torch_xla.core.xla_model as xm
import torch_xla.distributed.parallel_loader as pl
import torch_xla.experimental.pjrt as pt
from torch.utils.data.distributed import DistributedSampler
class PytTrain(Dataset):
def __init__(self, images, labels, dataset, **kwargs):
self.dataset = dataset
self.images, self.labels = images, labels
def __len__(self):
return len(self.images)
def __getitem__(self, idx):
with io.gfile.GFile(os.path.join(self.dataset, self.images[idx]), 'rb') as f, io.gfile.GFile(os.path.join(self.dataset, self.labels[idx]), 'rb') as g:
data = {"image": np.load(f), "label": np.load(g)}
#data = self.rand_crop(data)
#data = self.train_transforms(data)
return data["image"], data["label"]
paths_x = load_data(path, "*_x.npy")
paths_y = load_data(path, "*_y.npy")
def ray_loader(paths_x):
device = xm.xla_device()
provider=FastFileMetadataProvider()
ds = ray.data.read_numpy(paths_x,filesystem=gcsfs.GCSFileSystem(), meta_provider=provider, parallelism = 4)
ds.to_torch()
start = time.time()
for j in range(10):
for i, batch in enumerate(ds.iter_batches(batch_size=1)):
batch = torch.as_tensor(batch[0])
batch = xm.send_cpu_data_to_device(batch, device)
batch.to(device)
pass
training_time = (time.time() - start)/10
print(f"Training time for ray : {training_time:.2f} seconds")
def ray_loader_(local_rank, ds):
device = xm.xla_device()
ds.to_torch()
start = time.time()
for j in range(10):
for i, batch in enumerate(ds.iter_batches(batch_size=1)):
batch = torch.as_tensor(batch[0])
batch = xm.send_cpu_data_to_device(batch, device)
batch.to(device)
pass
training_time = (time.time() - start)/10
print(f"Training time for ray : {training_time:.2f} seconds")
def torch_dataloader(paths_x, paths_y, world_size):
device = xm.xla_device()
paths_x = [name.split('/')[-1] for name in paths_x]
paths_y = [name.split('/')[-1] for name in paths_y]
local_rank = xm.get_ordinal()
train_dataset = PytTrain(paths_x, paths_y, path)
from pprint import pprint
pprint(local_rank)
pprint(world_size)
train_sampler = DistributedSampler(
train_dataset,
num_replicas=world_size,
rank=local_rank,
drop_last=True,
)
train_loader = DataLoader(
train_dataset,
batch_size=1,
shuffle=False,
sampler=train_sampler,
num_workers=4,
pin_memory=False,
drop_last=True,
persistent_workers=True
)
train_loader = pl.MpDeviceLoader(train_loader, device)
start = time.time()
for j in range(10):
for i, batch in enumerate(train_loader):
batch[0].to(device)
pass
training_time = (time.time() - start)/10
print(f"Training time for pytorch: {training_time:.2f} seconds")
@ray.remote
class LoaderWorker:
def __init__(self, rank: int):
pt._initialize_multiprocess(rank, 4)
pass
def load(self, paths_x, paths_y, world_size: int) -> int:
print("worldsize")
pprint.pprint(world_size)
torch_dataloader(paths_x, paths_y, world_size)
return 0
def ray_main(flags):
path = "gs://mlperf-dataset/data/2021_Brats_np/11_3d"
paths_x = load_data(path, "*_x.npy")
paths_y = load_data(path, "*_y.npy")
# @ray.remote
# def data_loading(paths_x, paths_y, idx, flags):
# if flags.loader == "torch":
# torch_dataloader(paths_x, paths_y)
# else:
# ray_loader(paths_x)
# num of worker per host
num_process = 4
workers = [LoaderWorker.remote(i) for i in range(num_process)]
features_ref = ray.put(paths_x)
label_ref = ray.put(paths_y)
world_size = flags.world #xm.xrt_world_size()
ray.get([w.load.remote(features_ref, label_ref, world_size) for w in workers])
import torch_xla.distributed.xla_multiprocessing as xmp
def xla_main(local_rank, flags):
path = "gs://mlperf-dataset/data/2021_Brats_np/11_3d"
paths_x = load_data(path, "*_x.npy")
paths_y = load_data(path, "*_y.npy")
world_size = xm.xrt_world_size()
print("worldsize")
pprint.pprint(world_size)
if flags.loader == "torch":
torch_dataloader(paths_x, paths_y, world_size)
else:
ray_loader(paths_x)
xm.rendezvous("exit")
@ray.remote
def consume(data) -> int:
start = time.time()
for j in range(10):
num_batches = 0
for batch in data.iter_batches(batch_size=1):
num_batches += 1
training_time = (time.time() - start)/10
print(f"Training time for ray : {training_time:.2f} seconds")
return num_batches
@ray.remote
class Worker:
def __init__(self, rank: int):
pt._initialize_multiprocess(rank, 4)
pass
def train(self, shard) -> int:
local_rank = xm.get_ordinal()
from pprint import pprint
pprint(local_rank)
device = xm.xla_device()
num_batches = 0
start = time.time()
for j in range(10):
for batch in shard.iter_batches(batch_size=1):
batch = torch.as_tensor(batch[0])
batch = xm.send_cpu_data_to_device(batch, device)
batch.to(device)
num_batches += 1
pass
training_time = (time.time() - start)/10
print(f"Training time {num_batches} of images for ray : {training_time:.2f} seconds")
return shard.count()
import argparse
import os
PARSER = argparse.ArgumentParser(description="benchmark dataloader")
PARSER.add_argument('-mp', '--mp', dest='mp', choices=["xla", "ray"], default="xla")
PARSER.add_argument('-loader', '--loader', dest='loader', choices=["torch", "ray"], default="torch")
PARSER.add_argument('-world_size', '--world_size', dest='world', type=int, default=4)
#PARSER.add_argument('-data_dir', '--data_dir', dest='data_dir', type=str, default="gs://mlperf-dataset/data/2021_Brats_np/11_3d")
#PARSER.add_argument('-data_dir', '--data_dir', dest='data_dir', type=str, default="gs://pytorch-datasets/imagenet")
import numpy
if __name__ == '__main__':
flags = PARSER.parse_args()
if flags.mp == 'ray' and flags.loader == 'ray':
path = "gs://mlperf-dataset/data/2021_Brats_np/11_3d"
paths_x = load_data(path, "*_x.npy")
host = flags.world // 4
num_per_host = len(paths_x) // host
print(num_per_host)
paths_x = numpy.random.choice(paths_x, size = num_per_host).tolist()
print(len(paths_x))
provider=FastFileMetadataProvider()
ds = ray.data.read_numpy(paths_x,filesystem=gcsfs.GCSFileSystem(), meta_provider=provider)
workers = [Worker.remote(i) for i in range(4)]
shards = ds.split(n=4, locality_hints=workers)
ray.get([w.train.remote(s) for w, s in zip(workers, shards)])
#print(ray.get(consume.remote(ds)))
elif flags.mp == 'ray':
ray.init(ignore_reinit_error=True)
ray_main(flags)
elif flags.mp == 'xla':
print("using mode 3 \n")
xmp.spawn(xla_main, args=(flags,))
elif flags.mp == 'xla' and flags.loader == 'ray':
print("using mode 4 \n")
path = "gs://mlperf-dataset/data/2021_Brats_np/11_3d"
paths_x = load_data(path, "*_x.npy")
provider=FastFileMetadataProvider()
ds = ray.data.read_numpy(paths_x,filesystem=gcsfs.GCSFileSystem(), meta_provider=provider)
xmp.spawn(ray_loader_, args=(ds, ))
elif flags.mp == 'ray' and flags.loader == 'ray':
print("using mode 5 \n")
path = "gs://mlperf-dataset/data/2021_Brats_np/11_3d"
paths_x = load_data(path, "*_x.npy")
provider=FastFileMetadataProvider()
ds = ray.data.read_numpy(paths_x,filesystem=gcsfs.GCSFileSystem(), meta_provider=provider)
workers = [Worker.remote(i) for i in range(4)]
shards = ds.split(n=4, locality_hints=workers)
ray.get([w.train.remote(s) for w, s in zip(workers, shards)])
else:
pass