Guest User

Untitled

a guest
Dec 13th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.16 KB | None | 0 0
  1. shutting down current dask cluster if it exists...
  2. ... cluster shut down
  3.  
  4.  
  5. initializing dask scheduler...
  6. ... scheduler started
  7.  
  8.  
  9. starting 2 worker(s)...
  10. ... starting gpu worker 1
  11. ... starting gpu worker 2
  12.  
  13.  
  14. ... 2 worker(s) successfully started
  15.  
  16.  
  17. printing status ...
  18.  
  19.  
  20. There are screens on:
  21. 194.gpu_worker_2 (12/13/2018 09:01:50 PM) (Detached)
  22. 189.gpu_worker_1 (12/13/2018 09:01:50 PM) (Detached)
  23. 175.dask_scheduler (12/13/2018 09:01:44 PM) (Detached)
  24. 3 Sockets in /var/run/screen/S-jovyan.
  25.  
  26.  
  27.  
  28. ---------------------------------------------------------------------------
  29. OSError Traceback (most recent call last)
  30. ~/work/E2E.py in <module>
  31. 121
  32. 122
  33. --> 123 client.run(initialize_rmm_pool)
  34. 124
  35. 125
  36.  
  37. /conda/envs/rapids/lib/python3.5/site-packages/distributed/client.py in run(self, function, *args, **kwargs)
  38. 2040 '192.168.0.101:9000': 'running}
  39. 2041 """
  40. -> 2042 return self.sync(self._run, function, *args, **kwargs)
  41. 2043
  42. 2044 @gen.coroutine
  43.  
  44. /conda/envs/rapids/lib/python3.5/site-packages/distributed/client.py in sync(self, func, *args, **kwargs)
  45. 645 return future
  46. 646 else:
  47. --> 647 return sync(self.loop, func, *args, **kwargs)
  48. 648
  49. 649 def __repr__(self):
  50.  
  51. /conda/envs/rapids/lib/python3.5/site-packages/distributed/utils.py in sync(loop, func, *args, **kwargs)
  52. 275 e.wait(10)
  53. 276 if error[0]:
  54. --> 277 six.reraise(*error[0])
  55. 278 else:
  56. 279 return result[0]
  57.  
  58. /conda/envs/rapids/lib/python3.5/site-packages/six.py in reraise(tp, value, tb)
  59. 691 if value.__traceback__ is not tb:
  60. 692 raise value.with_traceback(tb)
  61. --> 693 raise value
  62. 694 finally:
  63. 695 value = None
  64.  
  65. /conda/envs/rapids/lib/python3.5/site-packages/distributed/utils.py in f()
  66. 260 if timeout is not None:
  67. 261 future = gen.with_timeout(timedelta(seconds=timeout), future)
  68. --> 262 result[0] = yield future
  69. 263 except Exception as exc:
  70. 264 error[0] = sys.exc_info()
  71.  
  72. /conda/envs/rapids/lib/python3.5/site-packages/tornado/gen.py in run(self)
  73. 1131
  74. 1132 try:
  75. -> 1133 value = future.result()
  76. 1134 except Exception:
  77. 1135 self.had_exception = True
  78.  
  79. /conda/envs/rapids/lib/python3.5/asyncio/futures.py in result(self)
  80. 292 self._tb_logger = None
  81. 293 if self._exception is not None:
  82. --> 294 raise self._exception
  83. 295 return self._result
  84. 296
  85.  
  86. /conda/envs/rapids/lib/python3.5/site-packages/tornado/gen.py in run(self)
  87. 1145 exc_info = None
  88. 1146 else:
  89. -> 1147 yielded = self.gen.send(value)
  90. 1148
  91. 1149 if stack_context._state.contexts is not orig_stack_contexts:
  92.  
  93. /conda/envs/rapids/lib/python3.5/site-packages/distributed/client.py in _run(self, function, *args, **kwargs)
  94. 1994 results[key] = resp['result']
  95. 1995 elif resp['status'] == 'error':
  96. -> 1996 six.reraise(*clean_exception(**resp))
  97. 1997 raise gen.Return(results)
  98. 1998
  99.  
  100. /conda/envs/rapids/lib/python3.5/site-packages/six.py in reraise(tp, value, tb)
  101. 690 value = tp()
  102. 691 if value.__traceback__ is not tb:
  103. --> 692 raise value.with_traceback(tb)
  104. 693 raise value
  105. 694 finally:
  106.  
  107. /conda/envs/rapids/bin/dask-worker in initialize_rmm_pool()
  108. 103
  109. 104 def initialize_rmm_pool():
  110. --> 105 from librmm_cffi import librmm_config as rmm_cfg
  111. 106
  112. 107 rmm_cfg.use_pool_allocator = True
  113.  
  114. /conda/envs/rapids/lib/python3.5/site-packages/librmm_cffi/__init__.py in <module>
  115. 43 return path
  116. 44
  117. ---> 45 librmm_api = ffi.dlopen(_get_lib_name())
  118. 46 librmm = _RMMWrapper(ffi, librmm_api)
  119. 47
  120.  
  121. OSError: cannot load library 'librmm.so': libcuda.so.1: cannot open shared object file: No such file or directory
Add Comment
Please, Sign In to add comment