forked from rwth-i6/returnn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Device.py
1569 lines (1471 loc) · 68.6 KB
/
Device.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
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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
from __future__ import print_function
from TaskSystem import AsyncTask, ProcConnectionDied
from Updater import Updater
from Util import cmd, progress_bar, dict_diff_str, hms, start_daemon_thread, interrupt_main, CalledProcessError, NumbersDict, custom_exec, dict_joined, attr_chain
from Log import log
from Network import LayerNetwork
from collections import OrderedDict
import numpy
import sys
import os
import signal
import time
import pickle
try:
from thread import start_new_thread
except ImportError:
# noinspection PyUnresolvedReferences
from _thread import start_new_thread
import Debug
import re
def have_gpu():
cpus, gpus = get_num_devices()
return gpus > 0
def _consider_check_for_gpu():
"""
There are cases where nvidia-smi could hang.
(Any read of /proc/modules might hang in that case, maybe caused
by trying to `modprobe nvidia` to check if there is a Nvidia card.)
This sometimes happens in our SGE cluster on nodes without Nvidia cards.
Maybe it's also a Linux Kernel bug.
Anyway, just avoid any such check if we don't asked for a GPU.
"""
theano_flags = {key: value for (key, value)
in [s.split("=", 1) for s in os.environ.get("THEANO_FLAGS", "").split(",") if s]}
if "device" in theano_flags:
dev = theano_flags["device"]
if dev.startswith("gpu") or dev.startswith("cuda"):
return True
# THEANO_FLAGS will overwrite this config option. See rnn.initDevices().
return False
try:
from Config import get_global_config
config = get_global_config()
except Exception:
config = None
if config:
for dev in config.list('device', []):
if dev.startswith("gpu") or dev.startswith("cuda"):
return True
if dev == "all":
return True
return False
def get_num_devices():
if os.name == 'nt':
return 1, 1 #TODO
elif sys.platform == 'darwin':
#TODO parse via xml output
return int(cmd("sysctl -a | grep machdep.cpu.core_count | awk '{print $2}'")[0]),\
len(cmd("system_profiler SPDisplaysDataType | grep 'Chipset Model: NVIDIA' | cat"))
else:
num_cpus = len(cmd('cat /proc/cpuinfo | grep processor')) or 1
num_gpus = 0
if _consider_check_for_gpu():
try:
num_gpus = len(cmd('nvidia-smi -L'))
except CalledProcessError:
pass
return num_cpus, num_gpus
def get_gpu_names():
if not _consider_check_for_gpu():
return []
if os.name == 'nt':
return "GeForce GTX 770" #TODO
elif sys.platform == 'darwin':
#TODO parse via xml output
return cmd("system_profiler SPDisplaysDataType | "
"grep 'Chipset Model: NVIDIA' | "
"sed 's/.*Chipset Model: NVIDIA *//;s/ *$//'")
else:
try:
return cmd('nvidia-smi -L | cut -d \'(\' -f 1 | cut -d \' \' -f 3- | sed -e \'s/\\ $//\'')
except CalledProcessError:
return []
def get_device_attributes():
# (shaders / CUDA cores, clock in MHz, memory in bytes)
attributes = {
"default" : (1000, 1020, 2 * 1024 * 1024 * 1024),
"GeForce GTX 580" : (512, 1714, 2 * 1024 * 1024 * 1024),
"GeForce GT 630M" : (96, 672, 2 * 1024 * 1024 * 1024),
"GeForce GT 650M" : (384, 900, 2 * 1024 * 1024 * 1024),
"GeForce GT 750M" : (384, 967, 2 * 1024 * 1024 * 1024),
"GeForce GTX 680" : (1536, 1020, 2 * 1024 * 1024 * 1024),
"GeForce GTX 750 Ti" : (640, 1110, 2 * 1024 * 1024 * 1024),
"GeForce GTX 760" : (2304, 980, 3 * 1024 * 1024 * 1024),
"GeForce GTX 770" : (1536, 1150, 2 * 1024 * 1024 * 1024),
"GeForce GTX 780" : (2304, 980, 3 * 1024 * 1024 * 1024),
"GeForce GTX 790" : (2304, 980, 3 * 1024 * 1024 * 1024),
"GeForce GTX 970" : (1664, 1178, 4 * 1024 * 1024 * 1024),
"GeForce GTX 980" : (2048, 1126, 4 * 1024 * 1024 * 1024),
"GeForce GTX 980 Ti" : (2048, 1126, 4 * 1024 * 1024 * 1024),
"GeForce GTX TITAN" : (2688, 837, 6 * 1024 * 1024 * 1024),
"Geforce GTX TITAN X" : (3072, 1000, 12 * 1024 * 1024 * 1024),
"GeForce GT 540M" : (2688, 837, 2 * 1024 * 1024 * 1024),
"Tesla K20c" : (2496, 706, 5 * 1024 * 1024 * 1024),
}
#return int(cmd("grep NVIDIA /var/log/Xorg.0.log | grep Memory | head -n "+str(device + 1)+" | tail -n 1 | cut -d ' ' -f 7")[0]) * 1024
cpu = 0
#for clock in cmd('cat /proc/cpuinfo | grep "model name" | cut -d \'@\' -f 2 | tr -d \' \' | sed -e s/GHz//'):
# Why is memory in bytes hard coded to 2GB for all cpus?
if os.name != 'nt':
if sys.platform == 'darwin':
mhz = int(float(cmd("system_profiler SPHardwareDataType | "
"grep 'Processor Speed' | awk '{print $3}'")[0].replace(',','.')) * 1024)
for i in range(get_num_devices()[0]):
attributes["cpu" + str(cpu)] = (1, mhz, 2 * 1024 * 1024 * 1024)
cpu += 1
else:
for clock in cmd('cat /proc/cpuinfo | grep "cpu MHz" | cut -d \':\' -f 2 | sed \'s/^\\ //\''):
attributes["cpu" + str(cpu)] = (1, int(float(clock)), 2 * 1024 * 1024 * 1024)
cpu += 1
attributes["cpu127"] = (1, 1, 32 * 1024 * 1024 * 1024) # what does this line do? Why add a cpu with 32GB?
if not cpu:
attributes["cpu0"] = (1, 1000, 2 * 1024 * 1024 * 1024)
return attributes
TheanoFlags = {key: value for (key, value) in [s.split("=", 1) for s in os.environ.get("THEANO_FLAGS", "").split(",") if s]}
def getDevicesInitArgs(config):
"""
:type config: Config.Config
:rtype: list[dict[str]]
"""
multiproc = config.bool('multiprocessing', True)
if config.value('task', 'train') == "theano_graph":
# Should have been reset earlier. See init() which handles this case.
assert not multiproc, "set multiprocessing = False to use theano_graph"
device_info = config.list('device', ['cpu0'])
if len(device_info) == 1 and device_info[0] == 'json':
try:
import json
specs = json.loads(open(config.value('initialize_from_json', '')).read().replace('(','\"').replace(')','\"'))['worker']
except Exception:
raise Exception('Unable to parse worker information from json content')
devices = [ { 'device' : specs[key]['device'], 'config' : config, 'blocking' : False, 'num_batches' : specs[key].pop('num_batches', 1), "update_specs" : specs[key].pop('update_specs', {}) } for key in specs ]
else:
device_tags = {}
ngpux = 0
ncpus, ngpus = get_num_devices()
if "all" in device_info:
device_tags = { tag: [1,True] for tag in [ "cpu" + str(i) for i in range(ncpus)] + [ "gpu" + str(i) for i in range(ngpus)] }
else:
for info in device_info:
device_update = True
num_batches = 1
if info[0] == '_':
device_update = False
info = info[1:]
if ':' in info:
num_batches = int(info.split(':')[1])
info = info.split(':')[0]
if len(info) == 3: info += "X"
assert len(info) > 3, "invalid device: " + str(info) #str(info[:-1])
utype = info[0:3]
uid = info[3:]
if uid == '*': uid = "[0-9]*"
if uid == 'X':
ngpux += 1
device_tags[info] = [num_batches, True]
else:
if utype == 'cpu':
np = ncpus
elif utype == 'gpu':
np = ngpus
else:
np = 0
match = False
for p in range(np):
if re.match(uid, str(p)):
device_tags[utype + str(p)] = [num_batches, device_update]
match = True
assert match, "invalid device specified: " + info
tags = sorted(device_tags.keys())
if multiproc:
assert len(tags) > 0
if len(tags) == 1 and tags[0][-1] == 'X':
newtag = tags[0][:-1] + 'Z'
device_tags[newtag] = device_tags[tags[0]]
tags[0] = newtag
devices = [ {"device": tag, "config": config, "num_batches": device_tags[tag][0], "update_specs" : {'update_rule' : 'global' if device_tags[tag][1] else 'none'}} for tag in tags ]
if len(devices) == 1 and ngpux > 1:
devices = devices * ngpux
import TaskSystem
if TaskSystem.isMainProcess: # On a child process, we can have the gpu device.
assert not TheanoFlags.get("device", "").startswith("gpu"), \
"The main proc is not supposed to use the GPU in multiprocessing mode. Do not set device=gpu in THEANO_FLAGS."
else:
devices = [ {"device": tags[0], "config": config, "blocking": True} ]
#if config.value("on_size_limit", "ignore") == "cpu" and devices[-1]["device"] != "cpu127":
# devices.append({"device": "cpu127", "config": config})
return devices
def is_using_gpu():
import theano.sandbox.cuda as theano_cuda
if not theano_cuda.cuda_available: return False
return theano_cuda.cuda_enabled
# When we are the child process, we have one single Device instance.
asyncChildGlobalDevice = None
# Any Device instance.
deviceInstance = None; ":type: Device"
def str2int(txt):
try:
return int(txt)
except Exception:
return txt
def sort_strint(txt):
# http://nedbatchelder.com/blog/200712/human_sorting.html
return [ str2int(i) for i in re.split('(\d+)', txt) ]
class Device(object):
def __init__(self, device, config, blocking=False, num_batches=1, update_specs=None):
"""
:param str device: name, "gpu*" or "cpu*"
:param Config.Config config: config
:param bool blocking: False -> multiprocessing, otherwise its blocking
:param int num_batches: num batches to train on this device
:param dict update_specs
"""
global deviceInstance
deviceInstance = self
try:
import pynvml
except ImportError:
print("pynvml not available, memory information missing")
else:
try:
pynvml.nvmlInit()
except Exception as exc:
print("nvmlInit failed: %s" % exc, file=log.v3)
self.num_batches = num_batches
self.blocking = blocking
self.config = config
self.output = None; " :type: list[numpy.ndarray] "
self.outputs_format = None; " :type: list[str] " # via self.result()
self.train_outputs_format = None; " :type: list[str] " # set via self.initialize()
self.run_called_count = 0
self.result_called_count = 0
self.wait_for_result_call = False
self.compute_total_time = 0
self.update_total_time = 0
self.num_frames = NumbersDict(0)
self.num_updates = 0
self.epoch = None
if not update_specs: update_specs = {}
update_specs.setdefault('update_rule', 'global')
update_specs.setdefault('update_params', {})
update_specs.setdefault('layers', [])
update_specs.setdefault('block_size', 0)
self.update_specs = update_specs
self.main_pid = os.getpid()
if blocking:
if device[0:3] == 'gpu':
import theano.sandbox.cuda as theano_cuda
assert theano_cuda.cuda_available, "Theano CUDA support not available. Check that nvcc is in $PATH."
if not theano_cuda.cuda_enabled: # already enabled when $THEANO_FLAGS=device=gpu
if device == 'gpuX': device = 'gpu'
theano_cuda.use(device=device, force=True)
try:
import cuda_ndarray.cuda_ndarray as cuda
except ImportError as exc:
raise Exception("Theano CUDA support seems broken: %s" % exc)
self.id = cuda.active_device_number(); """ :type: int """
self.device_name = cuda.active_device_name(); """ :type: str """
#For some reason, the Titan X is just displayed as "Graphics Device", so we just replace it here
if self.device_name == "Graphics Device":
self.device_name = "Geforce GTX TITAN X"
else:
self.id = 0
self.device_name = 'cpu' + str(self.id)
if self.device_name in get_device_attributes().keys():
self.attributes = get_device_attributes()[self.device_name]
else:
self.attributes = get_device_attributes()['default']
self.name = device[0:3] + str(self.id)
self.initialize(config)
self.num_train_params = len(self.trainnet.train_params_vars)
self._checkGpuFuncs(self.device_name, self.id)
self.initialized = True
else:
self.name = device
self.initialized = False
start_new_thread(self.startProc, (device,))
def __str__(self):
if self.blocking:
async_str = "blocking"
else:
async_str = "async (pid %i, ppid %i)" % (os.getpid(), os.getppid())
return "<Device %s %s>" % (self.name, async_str)
def startProc(self, *args, **kwargs):
import better_exchook
better_exchook.install()
try:
self._startProc(*args, **kwargs)
except BaseException:
try:
sys.excepthook(*sys.exc_info())
finally:
# Exceptions are fatal. Stop now.
interrupt_main()
def _startProc(self, device_tag):
assert not self.blocking
# Note that we want a really new separate process, i.e. fork+exec, not just a fork.
# This is to avoid many potential bugs, e.g. in Numpy or Theano.
# See also the comment in TaskSystem.ExecingProcess.
theano_flags = {key: value for (key, value)
in [s.split("=", 1) for s in os.environ.get("THEANO_FLAGS", "").split(",") if s]}
# First set some sane default for compile dir.
theano_flags.setdefault("compiledir_format",
"compiledir_%(platform)s-%(processor)s-%(python_version)s-%(python_bitwidth)s")
#theano_flags.setdefault("contexts",
# ";".join(["gpu%d->cuda%d" % (i,i) for i in range(4)]))
# print theano_flags
# Extend compile dir for this device.
theano_flags["compiledir_format"] += "--dev-%s" % self.name
if self.name[-1] == 'X':
import string
import random
theano_flags["compiledir_format"] += "-%s" % ''.join(random.choice(string.ascii_lowercase + string.digits) for _ in range(5))
elif self.name[-1] == 'Z':
self.name = self.name[:-1] + 'X'
# Set device via flags.
if self.name[0:3] == "cpu":
theano_flags["device"] = "cpu"
elif self.name == "gpuX":
theano_flags["device"] = "gpu"
else:
theano_flags["device"] = self.name
theano_flags["force_device"] = True
env_update = {"THEANO_FLAGS": ",".join(["%s=%s" % (key, value) for (key, value) in sorted(theano_flags.items())])}
self.proc = AsyncTask(
func=self.process,
name="Device %s proc" % self.name,
mustExec=True,
env_update=env_update)
# The connection (duplex pipe) is managed by AsyncTask.
self.input_queue = self.output_queue = self.proc.conn
try:
self.id = self.output_queue.recv(); """ :type: int """
self.device_name = self.output_queue.recv(); """ :type: str """
self.num_train_params = self.output_queue.recv(); """ :type: int """ # = len(trainnet.gparams)
self.sync_used_targets()
except ProcConnectionDied as e:
print("Device proc %s (%s) died: %r" % (self.name, device_tag, e), file=log.v3)
print("Theano flags:", env_update["THEANO_FLAGS"], file=log.v5)
interrupt_main()
if self.device_name in get_device_attributes().keys():
self.attributes = get_device_attributes()[self.device_name]
else:
self.attributes = get_device_attributes()['default']
self.name = device_tag[0:3] + str(self.id)
self.initialized = True
def detect_nan(self, i, node, fn):
for output in fn.outputs:
if numpy.isnan(output[0]).any():
#theano.printing.debugprint(node)
print(('Inputs : %s' % [input[0] for input in fn.inputs]))
print(('Outputs: %s' % [output[0] for output in fn.outputs]))
assert False, '*** NaN detected ***'
def initialize(self, config, update_specs=None, json_content=None, train_param_args=None):
"""
:type config: Config.Config
:type json_content: dict[str] | str | None
:type train_param_args: dict | None
"""
if not update_specs: update_specs = {}
update_specs.setdefault('update_rule', 'global')
update_specs.setdefault('update_params', {})
update_specs.setdefault('block_size', 0) #self.num_batches)
update_specs.setdefault('layers', [])
self.update_specs = update_specs
self.block_size = update_specs['block_size']
target = config.value('target', 'classes')
if self.blocking:
assert os.getpid() == self.main_pid
else:
assert os.getpid() != self.main_pid # this won't work on Windows
import theano
import theano.tensor as T
import h5py
self.T = T
self.seq_train_parallel_control = None # type: SeqTrainParallelControlDevHost. will be set via SprintErrorSignals
self.network_task = config.value('task', 'train')
eval_flag = self.network_task in ['eval', 'forward', 'daemon']
testnet_kwargs = dict(mask="unity", train_flag=False, eval_flag=eval_flag)
self.testnet_share_params = config.bool("testnet_share_params", False)
if self.testnet_share_params:
testnet_kwargs["shared_params_network"] = lambda: self.trainnet
if json_content is not None:
self.trainnet = LayerNetwork.from_json_and_config(json_content, config, train_flag=True, eval_flag=False)
self.testnet = LayerNetwork.from_json_and_config(json_content, config, **testnet_kwargs)
elif config.bool('initialize_from_model', False) and config.has('load'):
model = h5py.File(config.value('load', ''), "r")
self.trainnet = LayerNetwork.from_hdf_model_topology(model, train_flag=True, eval_flag=False,
**LayerNetwork.init_args_from_config(config))
self.testnet = LayerNetwork.from_hdf_model_topology(model, **dict_joined(testnet_kwargs,
LayerNetwork.init_args_from_config(config)))
model.close()
else:
self.trainnet = LayerNetwork.from_config_topology(config, train_flag=True, eval_flag=False)
self.testnet = LayerNetwork.from_config_topology(config, **testnet_kwargs)
if train_param_args is not None:
self.trainnet.declare_train_params(**train_param_args)
if self.testnet_share_params:
testnet_all_params = self.testnet.get_all_params_vars()
assert len(testnet_all_params) == 0
if config.has('load'):
model = h5py.File(config.value('load', ''), "r")
if 'update_step'in model.attrs:
self.trainnet.update_step = model.attrs['update_step']
model.close()
# initialize batch
self.used_data_keys = self.trainnet.get_used_data_keys()
print("Device train-network: Used data keys:", self.used_data_keys, file=log.v4)
assert "data" in self.used_data_keys
self.y = {k: theano.shared(numpy.zeros((1,) * self.trainnet.y[k].ndim, dtype=self.trainnet.y[k].dtype),
borrow=True, name='y_%s' % k)
for k in self.used_data_keys}
self.j = {k: theano.shared(numpy.zeros((1, 1), dtype='int8'), borrow=True, name='j_%s' % k)
for k in self.used_data_keys}
if self.trainnet.loss in ('ctc','ce_ctc', 'hmm'):
self.cp = theano.shared(numpy.zeros((1, 1), dtype = theano.config.floatX), borrow=True, name='cp')
self.c = T.cast(self.cp, 'int32')
if self.network_task in ['train', 'theano_graph']:
gparams = []
exclude = []
self.gradients = {}; ":type: dict[theano.SharedVariable,theano.Variable]"
if config.bool('debug_gradient_norm', False):
# The gradient norm is useful as a check whether we are going to destroy our model (if this is inf/nan).
# See self.fast_check_model_is_broken_from_result().
self.gradient_norm = 0
else:
self.gradient_norm = None
for pi, param in enumerate(self.trainnet.train_params_vars):
if log.verbose[4]: progress_bar(float(pi) / len(self.trainnet.train_params_vars), "calculating gradients ...")
if hasattr(param,'custom_update'):
gparam = param.custom_update
elif update_specs['layers'] and param.layer.name not in update_specs['layers']: #param.name == "encoder_data" or param.name == "W_cls_output_output" or param.name == "W_rec_output":
gparam = 0
else:
try:
if param.layer.attrs.get('cost',''):
keys = param.layer.attrs['cost']
if isinstance(keys, list):
gparam = T.grad(T.sum([self.trainnet.costs[k] * param.layer.cost_scale() for k in keys]), param, known_grads=OrderedDict(self.trainnet.known_grads))
else:
gparam = T.grad((self.trainnet.costs[param.layer.attrs['cost']] + param.layer.make_constraints()) * param.layer.cost_scale(), param, known_grads=OrderedDict(self.trainnet.known_grads))
else:
gparam = T.grad(self.trainnet.get_objective(), param, known_grads=OrderedDict(self.trainnet.known_grads))
except theano.gradient.DisconnectedInputError:
gparam = 0
if gparam == 0:
exclude.append(param)
print("exclude:", self.name, param.name, file=log.v4)
gparams.append(T.constant(0))
continue
#update_specs['layers'].append(param.layer.name)
self.gradients[param] = gparam
gparams.append(theano.Out(gparam, borrow = True))
if self.gradient_norm is not None:
self.gradient_norm += T.sum(gparam ** 2)
else:
self.gradients = None
if log.verbose[4]: progress_bar()
# initialize functions
self.updater = None
#update_specs['layers'] = list(set(update_specs['layers']))
self.update_specs = update_specs
self.block_start = T.lscalar()
self.block_end = T.lscalar()
self.epoch_var = theano.shared(numpy.zeros((), dtype="int32"), name="epoch_var")
self.tags_var = theano.shared(numpy.zeros((0, 0), dtype="int8"), name="tags_var")
self.streams = []
output_streams = {'train' : [],'eval' : []}
if config.has('stream'):
from NetworkStream import NetworkStream
for stream in config.value('stream', '').split(): # usage: layer_name.member_var:port
stream, port = stream.split(':')
layer, member = stream.split('.')
self.streams.append(NetworkStream(stream, int(port)))
for key in ['train', 'eval']:
net = self.trainnet if key == 'train' else self.testnet
ctx = net.hidden[layer] if layer in net.hidden else net.output[layer]
if hasattr(ctx,member):
output_streams[key].append(getattr(ctx,member))
elif member in ctx.attrs:
output_streams[key].append(ctx.attrs['member'])
self.forwarder = None
if self.network_task in ['train', 'theano_graph']:
if self.trainnet.loss in ('ctc', 'hmm'):
train_givens = self.make_givens(self.trainnet)
test_givens = self.make_givens(self.testnet)
elif self.trainnet.loss == 'ce_ctc':
train_givens = self.make_givens(self.trainnet)
test_givens = self.make_ce_ctc_givens(self.testnet)
elif self.trainnet.loss == 'sprint':
train_givens = self.make_sprint_givens(self.trainnet)
test_givens = self.make_givens(self.testnet)
else:
train_givens = self.make_givens(self.trainnet)
test_givens = self.make_givens(self.testnet)
if self.update_specs['update_rule'] == 'global':
self.updater = Updater.initFromConfig(self.config)
elif self.update_specs['update_rule'] != 'none':
self.updater = Updater.initRule(self.update_specs['update_rule'], **self.update_specs['update_params'])
self.train_outputs_format = ["cost:" + out for out in sorted(self.trainnet.costs.keys())]
# The function output lists must be consistent with TrainTaskThread.evaluate()
outputs = output_streams['train'] + [self.trainnet.costs[out] for out in sorted(self.trainnet.costs.keys())]
if self.trainnet.ctc_priors is not None:
self.train_outputs_format += ["ctc_priors"]
outputs += [self.trainnet.ctc_priors]
if self.gradient_norm is not None:
self.train_outputs_format += ["gradient_norm"]
outputs += [self.gradient_norm]
if config.bool("debug_output_constraints", False):
self.train_outputs_format += ["constraints:" + out for out in sorted(self.trainnet.constraints.keys())]
outputs += [self.trainnet.constraints[out] for out in sorted(self.trainnet.constraints.keys())]
if self.updater:
#mode_with_gpu = theano.compile.mode.get_default_mode().including('gpuarray').excluding('gpu')
self.updater.initVars(self.trainnet, self.gradients)
#print self.updater.getUpdateList()
self.trainer = theano.function(inputs=[self.block_start, self.block_end],
outputs=outputs,
givens=train_givens,
updates=self.updater.getUpdateList(),
on_unused_input=config.value('theano_on_unused_input', 'ignore'),
no_default_updates=exclude,
name="train_and_updater")
else:
gparams_outputs_format = []
for param in self.trainnet.train_params_vars:
gparams_outputs_format += ["gparam:%s" % param.name]
assert len(gparams_outputs_format) == len(gparams)
self.train_outputs_format += gparams_outputs_format
outputs += gparams
self.trainer = theano.function(inputs=[self.block_start, self.block_end],
outputs=outputs,
givens=train_givens,
no_default_updates=False,
on_unused_input=config.value('theano_on_unused_input', 'ignore'),
name="train_distributed")
self.test_outputs_format = ["cost:" + out for out in sorted(self.testnet.costs.keys())]
self.test_outputs_format += ["error:" + out for out in sorted(self.testnet.errors.keys())]
test_outputs = output_streams['eval'] + [self.testnet.costs[out] for out in sorted(self.testnet.costs.keys())]
test_outputs += [self.testnet.errors[out] for out in sorted(self.testnet.errors.keys())]
self.tester = theano.function(inputs=[self.block_start, self.block_end],
outputs=test_outputs,
givens=test_givens,
on_unused_input=config.value('theano_on_unused_input', 'ignore'),
no_default_updates=True,
name="tester")
elif self.network_task == "eval":
test_givens = self.make_givens(self.testnet)
self.test_outputs_format = ["cost:" + out for out in sorted(self.testnet.costs.keys())]
self.test_outputs_format += ["error:" + out for out in sorted(self.testnet.errors.keys())]
test_outputs = output_streams['eval'] + [self.testnet.costs[out] for out in sorted(self.testnet.costs.keys())]
test_outputs += [self.testnet.errors[out] for out in sorted(self.testnet.errors.keys())]
self.tester = theano.function(inputs=[self.block_start, self.block_end],
outputs=test_outputs,
givens=test_givens,
on_unused_input=config.value('theano_on_unused_input', 'ignore'),
no_default_updates=True,
name="tester")
elif self.network_task in ['forward', 'daemon', 'compute_priors']:
output_layer_name = config.value("extract_output_layer_name", "output")
extractions = config.list('extract', ['log-posteriors'])
source = output_streams['eval']
givens = self.make_input_givens(self.testnet)
for extract in extractions:
param = None
if ':' in extract:
param = extract.split(':')[1]
extract = extract.split(':')[0]
if extract == "classification":
source.append(T.argmax(self.testnet.get_layer(output_layer_name).p_y_given_x, axis=-1).dimshuffle(0, 1, 'x'))
elif extract == "log-posteriors":
if not param:
param = output_layer_name
layer = self.testnet.get_layer(param)
p_y_given_x = getattr(layer, "p_y_given_x", layer.output)
index = self.testnet.get_layer(param).output_index()
if "conv_1d" in [self.testnet.hidden[s].layer_class for s in self.testnet.hidden.keys()]:
index = self.testnet.get_layer(param).sources[0].index
if p_y_given_x.ndim == 2:
p_y_given_x = p_y_given_x.reshape((index.shape[0], index.shape[1], p_y_given_x.shape[1]))
assert p_y_given_x.ndim == 3
source.append(T.switch(T.cast(index, "float32").dimshuffle(0, 1, 'x'), T.log(p_y_given_x), numpy.float32(0)))
elif extract == "log-posteriors-sum":
if not param:
param = output_layer_name
p_y_given_x = self.testnet.get_layer(param).p_y_given_x
index = self.testnet.get_layer(param).output_index()
if p_y_given_x.ndim == 2:
p_y_given_x = p_y_given_x.reshape((index.shape[0], index.shape[1], p_y_given_x.shape[1]))
assert p_y_given_x.ndim == 3
source.append(
T.sum(T.switch(T.cast(index, "float32").dimshuffle(0, 1, 'x'), T.log(p_y_given_x), numpy.float32(0)), axis=(0, 1)))
elif extract == "emissions":
if not param:
param = output_layer_name
layer = self.testnet.get_layer(param)
p_y_given_x = layer.p_y_given_x
priors = layer.priors if 'compute_priors' in layer.attrs else 1.
prior_scale = config.float('prior_scale', layer.attrs.get('prior_scale', 1.0))
posterior_scale = config.float('posterior_scale', layer.attrs.get('am_scale', 1.0))
index = self.testnet.get_layer(param).output_index()
if p_y_given_x.ndim == 2:
p_y_given_x = p_y_given_x.reshape((index.shape[0], index.shape[1], p_y_given_x.shape[1]))
assert p_y_given_x.ndim == 3
source.append(T.switch(T.cast(index, "float32").dimshuffle(0, 1, 'x'),
posterior_scale * T.log(p_y_given_x) - prior_scale * T.log(priors), numpy.float32(0)))
elif extract == "log-posteriors-hacked":
#just ignore the index, is only safe with max_seqs 1
#but makes the index handling with mdlstm work for now
source.append(T.log(self.testnet.output[output_layer_name].p_y_given_x))
elif extract == "ctc":
pl = self.testnet.output[output_layer_name].p_y_given_x[:, :, 0::2]
pb = T.sum(self.testnet.output[param].p_y_given_x[:, :, 1::2], axis=2).dimshuffle(0, 1, 'x')
pcx = T.concatenate([pl, pb], axis=2)
#just ignore the index, is only safe with max_seqs 1
#but makes the index handling with mdlstm work for now
source.append(T.log(pcx))
elif extract == "posteriors":
layer = self.testnet.get_layer(output_layer_name)
p_y_given_x = getattr(layer, "p_y_given_x", layer.output)
index = layer.output_index()
if p_y_given_x.ndim == 2:
p_y_given_x = p_y_given_x.reshape((index.shape[0], index.shape[1], p_y_given_x.shape[1]))
assert p_y_given_x.ndim == 3
source.append(
T.switch(T.cast(index, "float32").dimshuffle(0, 1, 'x'), p_y_given_x, numpy.float32(0)))
elif extract == "win_post":
layer = self.testnet.get_layer(output_layer_name)
p_y_given_x = getattr(layer, "p_y_given_x", layer.output)
from NetworkHiddenLayer import SegmentFinalStateLayer
if isinstance(layer.sources[0],SegmentFinalStateLayer):
w = layer.sources[0].base[0].attrs['win']
t = layer.sources[0].base[0].timesteps
b = layer.sources[0].base[0].batches
fullind = layer.sources[0].fullind.T
p_y_given_x = p_y_given_x.reshape((p_y_given_x.shape[0]*p_y_given_x.shape[1],p_y_given_x.shape[2]))
else:
w = layer.copy_output.attrs['win']
t = layer.copy_output.timesteps
b = layer.copy_output.batches
from TheanoUtil import window_batch_timewise
fullind = window_batch_timewise(t,b,w,layer.copy_output.fullind)
fullind = fullind.T
p_y_given_x = p_y_given_x.reshape((p_y_given_x.shape[0]*p_y_given_x.shape[1],p_y_given_x.shape[2]))[fullind.flatten()]
zer = T.zeros((p_y_given_x.shape[1],1))
fullind1 = fullind.repeat(p_y_given_x.shape[1]).reshape((fullind.flatten().shape[0],p_y_given_x.shape[1]))
p_y_given_x1 = T.switch(fullind1>=0, p_y_given_x, 0)
p_y_given_x1 = p_y_given_x1.reshape((t*b,w*p_y_given_x1.shape[1]))
p_y_given_x1 = p_y_given_x1.reshape((b,t,p_y_given_x1.shape[1])).dimshuffle(1,0,2)
assert p_y_given_x1.ndim == 3
source.append(T.log(p_y_given_x1))
elif extract == "win_post_full":
layer = self.testnet.get_layer(output_layer_name)
p_y_given_x = layer.z
w = layer.sources[0].base[0].attrs['win']
t = layer.sources[0].base[0].timesteps
b = layer.sources[0].base[0].batches
fullind = layer.sources[0].fullind.T#.flatten()
p_y_given_x = p_y_given_x.reshape((p_y_given_x.shape[0]*p_y_given_x.shape[1],p_y_given_x.shape[2]))
zer = T.zeros((p_y_given_x.shape[1],1))
fullind1 = fullind.repeat(p_y_given_x.shape[1]).reshape((fullind.flatten().shape[0],p_y_given_x.shape[1]))
min_p = T.min(p_y_given_x,axis=-1).repeat(p_y_given_x.shape[1]).reshape((p_y_given_x.shape[0],p_y_given_x.shape[1]))
p_y_given_x1 = T.switch(fullind1>=0, p_y_given_x, min_p)
p_y_given_x1 = p_y_given_x1.reshape((t*b,w*p_y_given_x1.shape[1]))
py_win = T.nnet.softmax(p_y_given_x1)
py_win = py_win.reshape((b,t,py_win.shape[1])).dimshuffle(1,0,2)
assert py_win.ndim == 3
source.append(py_win)
elif extract == "posteriors-sum":
layer = self.testnet.get_layer(output_layer_name)
p_y_given_x = layer.p_y_given_x
index = layer.output_index()
if p_y_given_x.ndim == 2:
p_y_given_x = p_y_given_x.reshape((index.shape[0], index.shape[1], p_y_given_x.shape[1]))
assert p_y_given_x.ndim == 3
source.append(
T.sum(T.switch(T.cast(index, "float32").dimshuffle(0, 1, 'x'), p_y_given_x, numpy.float32(0)), axis=(0, 1)))
elif extract == "filters":
# for more than one layer
for hidden in sorted(self.testnet.hidden.keys(), key=sort_strint):
if self.testnet.hidden[hidden].layer_class == "conv":
source.append(self.testnet.hidden[hidden].output)
else:
print((str(self.testnet.hidden[hidden])))
# for single layer only
#if self.testnet.hidden["c1"].layer_class == "conv":
# source.append(self.testnet.hidden["c1"].output)
elif extract == "ctc-sil":
feat = self.testnet.get_layer('output').p_y_given_x
feat = feat[:,:-1] #remove blank
feat = feat / feat.sum(axis=1)[:,numpy.newaxis] #renormalize
feat = T.log(feat)
source.append(feat)
elif extract == "ce-errsig":
feat = T.grad(self.testnet.costs, self.testnet.get_layer(output_layer_name).z) #TODO
source.append(feat)
givens = self.make_givens(self.testnet)
elif "log-norm-hidden_" in extract:
idx = int(extract.split('_')[1])
source.append(T.log(T.nnet.softmax(T.reshape(self.testnet.hidden[idx].output[target], (self.testnet.hidden[idx].output[target].shape[0] * self.testnet.hidden[idx].output[target].shape[1], self.testnet.hidden[idx].output[target].shape[2])))))
elif "gates_" in extract:
idx = int(extract.split('_')[1])
if idx > 0:
hidden = self.testnet.hidden[idx - 1]
else:
hidden = self.testnet.reverse_hidden[-idx - 1]
source.append(T.reshape(hidden.input_gate, (hidden.input_gate.shape[0] * hidden.input_gate.shape[1], hidden.input_gate.shape[2])))
source.append(T.reshape(hidden.forget_gate, (hidden.forget_gate.shape[0] * hidden.forget_gate.shape[1], hidden.forget_gate.shape[2])))
source.append(T.reshape(hidden.output_gate, (hidden.output_gate.shape[0] * hidden.output_gate.shape[1], hidden.output_gate.shape[2])))
elif "hidden_" in extract:
idx = int(extract.split('_')[1])
if idx > 0:
hidden = self.testnet.hidden[idx - 1]
else:
hidden = self.testnet.reverse_hidden[-idx - 1]
source.append(T.reshape(hidden.output[target], (hidden.output[target].shape[0] * hidden.output[target].shape[1], hidden.output[target].shape[2])))
elif extract in self.testnet.hidden.keys():
if param is None:
param = 'output'
hidden = self.testnet.hidden[extract]
if hidden.layer_class == 'mdlstm':
source.append(T.sum(hidden.output,axis=0))
else:
signal = getattr(hidden, param)
if signal.ndim == 2:
signal = signal.dimshuffle('x',0,1)
sidx = hidden.index.dimshuffle('x',0)
source.append(signal * sidx.dimshuffle(0,1,'x').repeat(signal.shape[2],axis=2))
elif extract in self.testnet.output:
if param is None:
param = 'output'
hidden = self.testnet.output[extract]
signal = getattr(hidden, param)
if param == 'attention' and extract == 'aln':
n = signal.shape[0]
b = signal.shape[1]
t = signal.shape[2]
signal = signal.dimshuffle(1,0,2).reshape((signal.shape[0],signal.shape[1]*signal.shape[2])).argmax(axis=-1).reshape((n,b))
signal = signal.dimshuffle(0,1,'x')
assert signal.ndim == 3, "extraction variable has to be of shape (time,batch,dimension)"
source.append(signal)
elif extract == 'input':
source.append(self.testnet.x.reshape((self.testnet.i.shape[0], self.testnet.i.shape[1], self.testnet.x.shape[2])) * T.cast(self.testnet.i.dimshuffle(0,1,'x').repeat(self.testnet.x.shape[2],axis=2),'float32'))
else:
assert False, "invalid extraction: " + extract
self.extractor = theano.function(inputs = [],
outputs = source if len(source) == 1 else [T.concatenate(source, axis=-1)],
givens = givens,
on_unused_input=config.value('theano_on_unused_input', 'ignore'),
name = "extractor")
elif self.network_task == 'classify':
self.classifier = theano.function(inputs = [],
outputs = [T.argmax(self.testnet.get_layer('output').p_y_given_x, axis = 1)],
givens = self.make_input_givens(self.testnet),
name = "classifier")
elif self.network_task == 'analyze':
self.analyzer = theano.function(inputs = [],
outputs = [self.testnet.get_layer('output').p_y_given_x],
#+ [self.testnet.jacobian],
#+ [hidden.output for hidden in self.network.hidden]
#+ [hidden.output for hidden in self.network.reverse_hidden],
givens = self.make_input_givens(self.testnet),
name = "analyzer")
def compute_run(self, task):
compute_start_time = time.time()
self.compute_start_time = compute_start_time
batch_dim = self.y["data"].get_value(borrow=True, return_internal_type=True).shape[1]
block_size = self.block_size if self.block_size else batch_dim
if self.config.bool("debug_shell_first_compute", False):
print("debug_shell_first_compute", file=log.v1)
Debug.debug_shell(user_ns=locals(), user_global_ns=globals())
if task == "train" or task == "theano_graph" or task == "eval":
func = self.tester if task == "eval" else self.trainer
output = []
batch_end = 0
while batch_end < batch_dim:
batch_start = batch_end
batch_end = min(batch_start + block_size, batch_dim)
block_output = func(batch_start, batch_end)
if not output:
output = block_output
else:
for j in range(len(block_output)):
output[j] += block_output[j]
elif task == "extract" or task == "forward":
output = self.extractor()
elif task == 'classify':
output = self.classifier()
elif task == "analyze":
output = self.analyzer()
else:
assert False, "invalid command: " + task
compute_end_time = time.time()
if self.config.bool("debug_batch_compute_time", False):
print("batch compute time:", compute_end_time - compute_start_time, file=log.v1)
self.compute_total_time += compute_end_time - compute_start_time
# output is a list the outputs which we specified when creating the Theano function in self.initialize().
assert len(output) > 0 # In all cases, we have some output.
outputs_format = None
if task.startswith("train"):
outputs_format = self.train_outputs_format
elif task == "eval":
outputs_format = self.test_outputs_format
# stream handling
if(self.streams):
stream_outputs = output[:len(self.streams)]
output = output[len(self.streams):]
for stream, out in zip(self.streams, stream_outputs):
stream.update(task, out, self.tags)
# In train, first output is the score.
# If this is inf/nan, our model is probably broken.
model_broken_short_info = self.fast_check_model_is_broken_from_result(output, outputs_format)
if model_broken_short_info:
print("Model looks broken:", model_broken_short_info, file=log.v3)
if self.config.bool("dump_model_broken_info", False):
self.dump_model_broken_info(model_broken_short_info)
if self.config.bool("debug_shell_model_broken", False):
print("debug_shell_model_broken", file=log.v1)
Debug.debug_shell(user_ns=locals(), user_global_ns=globals())
# Pass on, let the Engine decide what to do (or also just fail).
return output, outputs_format
def get_compute_func(self, task):
if task == "train":
return self.trainer
raise NotImplementedError("for task: %r" % task)
def fast_check_model_is_broken_from_result(self, output, outputs_format):
if not outputs_format: # In train, we should always have this.
return
output_dict = self.make_result_dict(output, outputs_format)
# Check only params which are small, i.e. not the whole gparams.
RelevantAttribs = ["cost", "gradient_norm"]
def is_relevant_attrib(k):
for rk in RelevantAttribs:
if k == rk or k.startswith(rk + ":"):
return True
return False
values = {k: numpy.asarray(v)
for k, v in output_dict.items() if is_relevant_attrib(k)}
for attrib, value in values.items():
if not numpy.isfinite(value).all():
return ", ".join(["%s = %s" % (k, v) for (k, v) in values.items()])
return
def dump_model_broken_info(self, info):
try:
dump_file_name = "model_broken_dump.pickle.log"
if os.path.exists(dump_file_name):
i = 1
while os.path.exists("%s.%i" % (dump_file_name, i)):
i += 1
dump_file_name = "%s.%i" % (dump_file_name, i)
f = open(dump_file_name, "w")
print("Dumping model broken info to file %r." % dump_file_name, file=log.v1)
except Exception as e:
print("Exception while opening model broken dump file. %s" % e, file=log.v3)
return
collected_info = {"info_str": str(info)}
try:
collected_info["dev_data"] = numpy.asarray(self.y["data"].get_value())
collected_info["dev_targets"] = numpy.asarray(self.y["classes"].get_value()) #TODO fix for multiple targets with other labels
collected_info["dev_index"] = numpy.asarray(self.j["data"].get_value())
except Exception as e:
print("Exception when getting device data. %s" % e, file=log.v3)
try:
train_params = [numpy.asarray(v.get_value()) for v in self.trainnet.train_params_vars]
collected_info["train_params"] = train_params
except Exception as e:
print("Exception when getting train params. %s" % e, file=log.v3)
try:
pickle.dump(collected_info, f)
f.close()
except Exception as e:
print("Exception when writing model broken info dump. %s" % e, file=log.v3)
def _checkGpuFuncs(self, device, device_id):
if device[0:3] != 'gpu': return
# Check if we use the GPU.
# http://deeplearning.net/software/theano/tutorial/modes.html
theano_func = self.get_compute_func(self.network_task)
if not any([x.op.__class__.__name__ in ['GpuGemm', 'GpuGemv', 'GpuDot22', 'GpuElemwise']
for x in theano_func.maker.fgraph.toposort()]):
print(device + ":", "It seems as if we don't use the GPU although we requested it.", file=log.v1)
import theano.printing
theano.printing.debugprint(theano_func.maker.fgraph.outputs[0])
else:
print(device + ":", "Our Theano trainer functions looks like it will run on the GPU.", file=log.v5)
try:
import theano.sandbox.cuda
theano_cuda = theano.sandbox.cuda.cuda_ndarray.cuda_ndarray
devProps = theano_cuda.device_properties(device_id)
print(device + ":", "CUDA version %i" % devProps["driverVersion"], file=log.v5)
except Exception as exc:
print(device + ":", "Exception while getting CUDA information. %s" % exc, file=log.v3)
def process(self, asyncTask):
"""
:type asyncTask: AsyncTask
"""
device = self.name
config = self.config
global asyncChildGlobalDevice, deviceInstance
asyncChildGlobalDevice = self
deviceInstance = self
try:
# We do some minimal initialization, modelled after rnn.init().
# This is needed because we are a new independent process. See startProc().
import rnn
rnn.initBetterExchook()
rnn.config = config
rnn.initLog()
print("Device %s proc starting up, pid %i" % (device, os.getpid()), file=log.v3)
print("Device %s proc: THEANO_FLAGS = %r" % (device, os.environ.get("THEANO_FLAGS", None)), file=log.v4)
rnn.initFaulthandler()
rnn.initConfigJsonNetwork()
self.process_inner(device, config, self.update_specs, asyncTask)
except ProcConnectionDied as e:
print("Device %s proc, pid %i: Parent seem to have died: %s" % (device, os.getpid(), e), file=log.v2)
sys.exit(1)
except KeyboardInterrupt:
# Killed by parent.
print("Device %s proc got KeyboardInterrupt" % device, file=log.v4)
sys.exit(1)
except Exception as e:
print("Device %s proc exception: %s" % (device, e), file=log.v2)
sys.excepthook(*sys.exc_info())
sys.exit(1)
def process_inner(self, device, config, update_specs, asyncTask):
"""
:type device: str
:type config: Config.Config
:type asyncTask: AsyncTask
"""
# The connection (duplex pipe) is managed by AsyncTask.
output_queue = input_queue = asyncTask.conn
if device[0:3] == 'gpu':
import theano.sandbox.cuda
if device == 'gpuX': device = 'gpu'