wandb 0.21.1__py3-none-musllinux_1_2_aarch64.whl → 0.21.3__py3-none-musllinux_1_2_aarch64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- wandb/__init__.py +1 -1
- wandb/__init__.pyi +1 -1
- wandb/apis/public/api.py +1 -2
- wandb/apis/public/artifacts.py +3 -5
- wandb/apis/public/registries/_utils.py +14 -16
- wandb/apis/public/registries/registries_search.py +176 -289
- wandb/apis/public/reports.py +13 -10
- wandb/automations/_generated/delete_automation.py +1 -3
- wandb/automations/_generated/enums.py +13 -11
- wandb/bin/gpu_stats +0 -0
- wandb/bin/wandb-core +0 -0
- wandb/cli/cli.py +47 -2
- wandb/integration/metaflow/data_pandas.py +2 -2
- wandb/integration/metaflow/data_pytorch.py +75 -0
- wandb/integration/metaflow/data_sklearn.py +76 -0
- wandb/integration/metaflow/metaflow.py +16 -87
- wandb/integration/weave/__init__.py +6 -0
- wandb/integration/weave/interface.py +49 -0
- wandb/integration/weave/weave.py +63 -0
- wandb/proto/v3/wandb_internal_pb2.py +3 -2
- wandb/proto/v4/wandb_internal_pb2.py +2 -2
- wandb/proto/v5/wandb_internal_pb2.py +2 -2
- wandb/proto/v6/wandb_internal_pb2.py +2 -2
- wandb/sdk/artifacts/_factories.py +17 -0
- wandb/sdk/artifacts/_generated/__init__.py +221 -13
- wandb/sdk/artifacts/_generated/artifact_by_id.py +17 -0
- wandb/sdk/artifacts/_generated/artifact_by_name.py +22 -0
- wandb/sdk/artifacts/_generated/artifact_collection_membership_file_urls.py +43 -0
- wandb/sdk/artifacts/_generated/artifact_created_by.py +47 -0
- wandb/sdk/artifacts/_generated/artifact_file_urls.py +22 -0
- wandb/sdk/artifacts/_generated/artifact_type.py +31 -0
- wandb/sdk/artifacts/_generated/artifact_used_by.py +43 -0
- wandb/sdk/artifacts/_generated/artifact_via_membership_by_name.py +26 -0
- wandb/sdk/artifacts/_generated/delete_artifact.py +28 -0
- wandb/sdk/artifacts/_generated/enums.py +5 -0
- wandb/sdk/artifacts/_generated/fetch_artifact_manifest.py +38 -0
- wandb/sdk/artifacts/_generated/fetch_registries.py +32 -0
- wandb/sdk/artifacts/_generated/fragments.py +279 -41
- wandb/sdk/artifacts/_generated/link_artifact.py +6 -0
- wandb/sdk/artifacts/_generated/operations.py +654 -51
- wandb/sdk/artifacts/_generated/registry_collections.py +34 -0
- wandb/sdk/artifacts/_generated/registry_versions.py +34 -0
- wandb/sdk/artifacts/_generated/unlink_artifact.py +25 -0
- wandb/sdk/artifacts/_graphql_fragments.py +3 -86
- wandb/sdk/artifacts/_validators.py +6 -4
- wandb/sdk/artifacts/artifact.py +410 -547
- wandb/sdk/artifacts/artifact_file_cache.py +11 -7
- wandb/sdk/artifacts/artifact_manifest.py +10 -9
- wandb/sdk/artifacts/artifact_manifest_entry.py +15 -18
- wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py +5 -3
- wandb/sdk/artifacts/storage_handlers/gcs_handler.py +1 -1
- wandb/sdk/artifacts/storage_handlers/http_handler.py +1 -1
- wandb/sdk/artifacts/storage_handlers/s3_handler.py +1 -1
- wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py +1 -1
- wandb/sdk/data_types/video.py +2 -2
- wandb/sdk/interface/interface_queue.py +1 -4
- wandb/sdk/interface/interface_shared.py +26 -37
- wandb/sdk/interface/interface_sock.py +24 -14
- wandb/sdk/internal/settings_static.py +2 -3
- wandb/sdk/launch/create_job.py +12 -1
- wandb/sdk/launch/inputs/internal.py +25 -24
- wandb/sdk/launch/inputs/schema.py +31 -1
- wandb/sdk/launch/runner/kubernetes_runner.py +24 -29
- wandb/sdk/lib/asyncio_compat.py +16 -16
- wandb/sdk/lib/asyncio_manager.py +252 -0
- wandb/sdk/lib/hashutil.py +13 -4
- wandb/sdk/lib/paths.py +23 -21
- wandb/sdk/lib/printer.py +2 -2
- wandb/sdk/lib/printer_asyncio.py +3 -1
- wandb/sdk/lib/retry.py +185 -78
- wandb/sdk/lib/service/service_client.py +106 -0
- wandb/sdk/lib/service/service_connection.py +20 -26
- wandb/sdk/lib/service/service_token.py +30 -13
- wandb/sdk/mailbox/mailbox.py +13 -5
- wandb/sdk/mailbox/mailbox_handle.py +22 -13
- wandb/sdk/mailbox/response_handle.py +42 -106
- wandb/sdk/mailbox/wait_with_progress.py +7 -42
- wandb/sdk/wandb_init.py +11 -25
- wandb/sdk/wandb_login.py +1 -1
- wandb/sdk/wandb_run.py +92 -56
- wandb/sdk/wandb_settings.py +45 -32
- wandb/sdk/wandb_setup.py +176 -96
- wandb/util.py +1 -1
- {wandb-0.21.1.dist-info → wandb-0.21.3.dist-info}/METADATA +2 -2
- {wandb-0.21.1.dist-info → wandb-0.21.3.dist-info}/RECORD +88 -72
- wandb/sdk/interface/interface_relay.py +0 -38
- wandb/sdk/interface/router.py +0 -89
- wandb/sdk/interface/router_queue.py +0 -43
- wandb/sdk/interface/router_relay.py +0 -50
- wandb/sdk/interface/router_sock.py +0 -32
- wandb/sdk/lib/sock_client.py +0 -232
- {wandb-0.21.1.dist-info → wandb-0.21.3.dist-info}/WHEEL +0 -0
- {wandb-0.21.1.dist-info → wandb-0.21.3.dist-info}/entry_points.txt +0 -0
- {wandb-0.21.1.dist-info → wandb-0.21.3.dist-info}/licenses/LICENSE +0 -0
@@ -6,12 +6,12 @@ wandb/wandb_controller.py,sha256=SksJdgwn14PpnUoIaBjJ9Ki4Nksl9BpQGGn42hT0xZg,249
|
|
6
6
|
wandb/sklearn.py,sha256=hbPkefhS39A1RRymn0nHZZmKM2TrOd4xjlkthTZe9pY,803
|
7
7
|
wandb/trigger.py,sha256=PaitU3sX6ekGkd2R8iD6d_VtI72ypF7LaPBXh3rXY7Q,615
|
8
8
|
wandb/data_types.py,sha256=M-wqAO0FtIqvj28556u3h4nzSwlRcbxhXoX0B9jlJSo,2283
|
9
|
-
wandb/__init__.py,sha256=
|
10
|
-
wandb/__init__.pyi,sha256=
|
9
|
+
wandb/__init__.py,sha256=ETf3KRXvmJSJ0PcRetJjkk98iZNPly_nk0FsH5xKj_0,6771
|
10
|
+
wandb/__init__.pyi,sha256=6Ue5DZ0TuA0ePk4x3mqB92oYAs0qpSN97oZSmGDPEy4,46397
|
11
11
|
wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
12
12
|
wandb/jupyter.py,sha256=NEH-o2QdHfKorPmeOHORLRq25Am64GBDwuAPFz-x7uk,17323
|
13
13
|
wandb/wandb_agent.py,sha256=kdlK_NZRZRNkjXRUha7Q-1fDOARf7v0TyIr_a-aRXKk,20868
|
14
|
-
wandb/util.py,sha256=
|
14
|
+
wandb/util.py,sha256=pLo26E7AbBaGFpWra5Vumm2JENYTaDCpzWMZaQAzihY,65381
|
15
15
|
wandb/wandb_run.py,sha256=RRjZweHEMpfTyQghzOrSZdmViIItT9wLJYzcZ4nlvjk,128
|
16
16
|
wandb/_pydantic/base.py,sha256=qOgf1LEMPO3o1kiYli9kOf2ZQLuP0GEMa8Qx2pDnJGY,4277
|
17
17
|
wandb/_pydantic/__init__.py,sha256=p1Rwdo5z3rgoQgVDz6pgcWzs5eitB2JlgVN6QeFyN0Y,662
|
@@ -399,8 +399,8 @@ wandb/vendor/graphql-core-1.1/wandb_graphql/language/__init__.py,sha256=47DEQpj8
|
|
399
399
|
wandb/vendor/graphql-core-1.1/wandb_graphql/language/visitor.py,sha256=VzScdaIv3q8cCt95GiK3h8bDPXm8p-0wdBot8cthSuY,6247
|
400
400
|
wandb/vendor/graphql-core-1.1/wandb_graphql/language/parser.py,sha256=da64gvknlunEC3TDgrgf74h22NpfsEPPm-OdBmof92A,20905
|
401
401
|
wandb/vendor/graphql-core-1.1/wandb_graphql/language/visitor_meta.py,sha256=Qat5ccqiNGOHE9W7z38YGdtW2c8koBw0OUWEMxpdBhk,2980
|
402
|
-
wandb/bin/wandb-core,sha256=
|
403
|
-
wandb/bin/gpu_stats,sha256=
|
402
|
+
wandb/bin/wandb-core,sha256=awpyxrDOgd_XdqsvChk50l0WLK5FreRxzzMMhQdcAf4,39452856
|
403
|
+
wandb/bin/gpu_stats,sha256=AAExto9UEAs79kSyhLttY_ANoOM81kmAHSGcaX6JKLs,10881776
|
404
404
|
wandb/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
405
405
|
wandb/integration/xgboost/__init__.py,sha256=Pwmii-OI64seJjfwM28cS4BdkEN2_Ms_qMGdwp3QRn8,343
|
406
406
|
wandb/integration/xgboost/xgboost.py,sha256=fAaoNixCOeUhxIqVTtrlu85oQu9jmx2aUCVp49oCDYo,6495
|
@@ -480,18 +480,23 @@ wandb/integration/sagemaker/resources.py,sha256=YBU_dgMt3kqhOCShc2Ge6FFPlwPBjb44
|
|
480
480
|
wandb/integration/sagemaker/config.py,sha256=XLtB9n0cEUe3hA1N9OAA51E9rKco5UZGRteGv_9SCfE,1748
|
481
481
|
wandb/integration/sagemaker/files.py,sha256=WaMBg5Im3GoPHM2AU8GnWEzqmm29EAOtsGsaE3nBaB4,89
|
482
482
|
wandb/integration/sagemaker/__init__.py,sha256=Eyd7rArw0IKGR2ll6zGiTXBi6y7E5nYYuyrVABt_9sI,360
|
483
|
-
wandb/integration/metaflow/data_pandas.py,sha256=
|
484
|
-
wandb/integration/metaflow/
|
483
|
+
wandb/integration/metaflow/data_pandas.py,sha256=od7wFqM_j2Z1ra96wJl13wGN7M1WrZksEB6wQxCZRhc,1713
|
484
|
+
wandb/integration/metaflow/data_pytorch.py,sha256=aFM7vNRM15hi9nu-HPXHdla2DPij6ZBBRHJWTgcu6Ko,1712
|
485
|
+
wandb/integration/metaflow/data_sklearn.py,sha256=I3Ty2lUZUeFD1Qjbsg5tG6RKtt72VaHmyW9XOjpNG5Y,1753
|
486
|
+
wandb/integration/metaflow/metaflow.py,sha256=fW-viHlO0FS7fKTwXMst-FdOnKiDUWD05phrpFMUqgA,9411
|
485
487
|
wandb/integration/metaflow/errors.py,sha256=wRKiojelW9DuPwhEiU7RzbV2aWIgHQPG7RXrcGiLgM0,347
|
486
488
|
wandb/integration/metaflow/__init__.py,sha256=viDBeFSetM0I4BnUx8TEjJScHSDzO9mHHBijkZ1L9zk,263
|
489
|
+
wandb/integration/weave/__init__.py,sha256=SW1X2J6az3XTbAKmxfi0O0R9qBuJRv7o9SITiJmiRUg,158
|
490
|
+
wandb/integration/weave/weave.py,sha256=8V62eSOJ676v4QZCflESlZx1nX2KYjI7MbHjIzXID_E,1938
|
491
|
+
wandb/integration/weave/interface.py,sha256=7PMQEDN9rOGMmhf_EKAsViYQ65wl6YccJcQGSLCJQCQ,1165
|
487
492
|
wandb/integration/lightgbm/__init__.py,sha256=ztwqeaVneF_f6ngCd0UowwksnNopl1bhSQN9hAeyoyU,7981
|
488
493
|
wandb/integration/sb3/__init__.py,sha256=w_VX7C6qAE1vK7xb24JchQtORxzfpXvl6YmZHUIskJM,60
|
489
494
|
wandb/integration/sb3/sb3.py,sha256=25fGTc_A1Zve-4MK_6IelAIaKYPg0pj4hB4ZWr0xekw,4797
|
490
495
|
wandb/integration/sacred/__init__.py,sha256=Zzi-m0yRvtbyEgB0N67xSUAWZc1eYBz8Nni3e3OxcHg,5751
|
491
|
-
wandb/sdk/wandb_init.py,sha256=
|
492
|
-
wandb/sdk/wandb_settings.py,sha256=
|
496
|
+
wandb/sdk/wandb_init.py,sha256=ga7mq1njTU4XlamnUvo_aEx4LqLHE_gbNQvE6VhXCmQ,60890
|
497
|
+
wandb/sdk/wandb_settings.py,sha256=b9di8PJ1QaWTAe6g5pBwVpIgSOXciLEW_hBpQbFXZkE,72928
|
493
498
|
wandb/sdk/wandb_require_helpers.py,sha256=ZmKv5aXXHDTTU6nYHMLKW4_pt9X-PlaMtbRJl77kHX8,1331
|
494
|
-
wandb/sdk/wandb_login.py,sha256=
|
499
|
+
wandb/sdk/wandb_login.py,sha256=JY0GTqi8taj8im7yPE9bjnbMIhCNmBmpP2Z4tYRPdUc,11325
|
495
500
|
wandb/sdk/wandb_summary.py,sha256=yQdOVIPrZaZanhBQ7yuSfPLX0x6dxwkN_KAn4SgjSZU,4536
|
496
501
|
wandb/sdk/wandb_sync.py,sha256=GNC8xYqT56ws4aw6Vd_mV_Ck-InEbqnyioSqHIybDug,2106
|
497
502
|
wandb/sdk/wandb_helper.py,sha256=IbJ7opO8UkfwCDekSjRYIrGBblUxnTPBfp1EdesfF4U,1824
|
@@ -502,10 +507,10 @@ wandb/sdk/wandb_metric.py,sha256=HihH23rZWw6AOH5Vn4KsFREMTFJGkjYqUBhqfOlHg2I,334
|
|
502
507
|
wandb/sdk/wandb_require.py,sha256=MYzhsbMLjXVoGRHxssg802w79BPsoyEbBXuZ6cffjCs,2713
|
503
508
|
wandb/sdk/wandb_watch.py,sha256=kN5qgovHkUPyUeNypoPg7tsPg-P8AKhYD8hDx46nZas,4746
|
504
509
|
wandb/sdk/wandb_sweep.py,sha256=6PfqlKi0_2g6pt_hu-sqgCgO5YyCRppBbLwBxw8r2JY,3982
|
505
|
-
wandb/sdk/wandb_run.py,sha256=
|
506
|
-
wandb/sdk/wandb_setup.py,sha256=
|
510
|
+
wandb/sdk/wandb_run.py,sha256=lE3CC5MME5KXiW5S_3OYHi9WxFQZ9IU-VmMdXzfh044,146743
|
511
|
+
wandb/sdk/wandb_setup.py,sha256=BanGtCYoQSStnXFJkMrDO9GgN16Z-GEi4Q5TR5Qa5ls,19115
|
507
512
|
wandb/sdk/launch/git_reference.py,sha256=6pTVlD7-BICWoraN8PsAzCKu64GV7g_GzqMSD9w3Sos,3758
|
508
|
-
wandb/sdk/launch/create_job.py,sha256=
|
513
|
+
wandb/sdk/launch/create_job.py,sha256=Hfhre_v70whBFvumC5TWiSCdLWg2C5PcElZI2bkmhu8,17754
|
509
514
|
wandb/sdk/launch/errors.py,sha256=G86cx2IZSRBBxLE7thxcVFKzN9d4mGyvciaWRz0uWWM,275
|
510
515
|
wandb/sdk/launch/loader.py,sha256=rSXCgiR7dStpdd_FQTm3qqzY3aa5L2vMpF1M_0OsxEE,8927
|
511
516
|
wandb/sdk/launch/__init__.py,sha256=moXY557JibPbvE1GSSh3nGFiyelTVaJZMdFSv61Dn2k,399
|
@@ -534,7 +539,7 @@ wandb/sdk/launch/builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
534
539
|
wandb/sdk/launch/builder/abstract.py,sha256=OveMZmrZ-L7qkS5ex0_5RChnSaLXPLfaCdL6jb-zmpk,5076
|
535
540
|
wandb/sdk/launch/builder/templates/dockerfile.py,sha256=X8D6n6tyyh69oNHeFiUp-d8ClEtMpHSjwk45N12CR68,2264
|
536
541
|
wandb/sdk/launch/builder/templates/_wandb_bootstrap.py,sha256=AuI7GXUoW3MdPWVTkSjhxZQTmW4Rk_nTNllHbZzfoDQ,7316
|
537
|
-
wandb/sdk/launch/runner/kubernetes_runner.py,sha256=
|
542
|
+
wandb/sdk/launch/runner/kubernetes_runner.py,sha256=wQIcNO7bawJ_NwagHtclwk1pPTcgs2QZ_Hxg9fxlHX0,47724
|
538
543
|
wandb/sdk/launch/runner/sagemaker_runner.py,sha256=in9-GMypI5J1tGgSDpz2rdHZjwafUIMEwrp0AzL_IGI,15268
|
539
544
|
wandb/sdk/launch/runner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
540
545
|
wandb/sdk/launch/runner/vertex_runner.py,sha256=e_tvhRPX03ntftx6ZOwDs_6xXplRlFgfRDrNIKqCiPs,8169
|
@@ -552,9 +557,9 @@ wandb/sdk/launch/sweeps/scheduler_sweep.py,sha256=beM0go0u9xRcXW20ED8MyTqq4ol_O5
|
|
552
557
|
wandb/sdk/launch/sweeps/__init__.py,sha256=Vv3WTuhqs7064cv23YevqzX8jGca9qYZ5JpdhorBk0w,906
|
553
558
|
wandb/sdk/launch/sweeps/utils.py,sha256=T6Zr3QwEN1dl26mRDcRwlHXrZMoVNysAwqyCQ4MIU6k,10229
|
554
559
|
wandb/sdk/launch/inputs/files.py,sha256=BWGDmAfDPLja7zz0bUzYLaF3wH4cTPesD9LqDuJRUoU,4685
|
555
|
-
wandb/sdk/launch/inputs/schema.py,sha256=
|
560
|
+
wandb/sdk/launch/inputs/schema.py,sha256=OvLqb8yBI4KsuT6aFp9_M361ACVjFQARUJqqEuicO8w,2779
|
556
561
|
wandb/sdk/launch/inputs/manage.py,sha256=O0IsTWhjUftihohRfK7DkT186LjHMMcE2NSMeG8IFBY,5003
|
557
|
-
wandb/sdk/launch/inputs/internal.py,sha256=
|
562
|
+
wandb/sdk/launch/inputs/internal.py,sha256=liYeKB9yE1ckc0rv6kbKFIk9TloCM59h_HLGwoUdPCs,9807
|
558
563
|
wandb/sdk/verify/verify.py,sha256=Z7-QyYaro0-I0iIv4r9X7argyq2ks_SyOl_TGE9KYHE,18258
|
559
564
|
wandb/sdk/verify/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
560
565
|
wandb/sdk/internal/thread_local_settings.py,sha256=UqD6kfjsy6mvxIWcjhd-vJWkNRCeU1whuRe_-VGIklQ,527
|
@@ -571,7 +576,7 @@ wandb/sdk/internal/file_stream.py,sha256=dLzl8RnbQQR2taSgcLff1Br5XghCKSPgxSxkBgz
|
|
571
576
|
wandb/sdk/internal/sample.py,sha256=USAWLhEeP83J13BVOSIy1Rb3kDDKTK9kzR88SlhO7dw,2470
|
572
577
|
wandb/sdk/internal/sender.py,sha256=x3OuoCK44M8oY4DQM1GVKrjcFOkfN3oWQ4Z7fUw0wCM,65180
|
573
578
|
wandb/sdk/internal/progress.py,sha256=526DYzhDMnfBNAI3TN0p7R487c-0W8PBT8_Yft334Ro,2289
|
574
|
-
wandb/sdk/internal/settings_static.py,sha256
|
579
|
+
wandb/sdk/internal/settings_static.py,sha256=EhK8KVjfT7eDl6FdfkWeWlso5UkpLLjxUo2NJfw9sio,4247
|
575
580
|
wandb/sdk/internal/sender_config.py,sha256=wZkz25ikhSoO9FCb-H06QdPKGCkZzdyXXa1LZEdpu2g,7133
|
576
581
|
wandb/sdk/internal/incremental_table_util.py,sha256=SwcLG366undgZ5nw4xfyVZ5BZS4mAUw1K9HfmenFbqg,1490
|
577
582
|
wandb/sdk/internal/tb_watcher.py,sha256=wqlBUrQKyTYQth8q_ABPb9MNMNmeatyv59_Bq5pCtaU,18676
|
@@ -580,69 +585,84 @@ wandb/sdk/internal/_generated/server_features_query.py,sha256=WGjefMl-SDR7o7OVtJ
|
|
580
585
|
wandb/sdk/internal/_generated/__init__.py,sha256=DRBzTksuUuVY9oRJQsLtRTMMItykywWYvDxktHbCfk8,381
|
581
586
|
wandb/sdk/internal/_generated/operations.py,sha256=e_jeUmwP9mnaFe2WUssdmKw2AeN-Iuf3j3FkG9fDnUY,245
|
582
587
|
wandb/sdk/internal/_generated/input_types.py,sha256=vPRi0TPBkZS4D4to-WzhesolsPj3a2B1Okr1xmjRy5k,124
|
583
|
-
wandb/sdk/mailbox/wait_with_progress.py,sha256=
|
584
|
-
wandb/sdk/mailbox/mailbox.py,sha256=
|
588
|
+
wandb/sdk/mailbox/wait_with_progress.py,sha256=NTIzP9aTeHIyD4tMo5lIH1-OTZf0j4enB5M5xfIXMK0,3090
|
589
|
+
wandb/sdk/mailbox/mailbox.py,sha256=R9H0MCNt3dhDfCZXu0qZIbYa4mJtxXucOzKvR4smss8,4806
|
585
590
|
wandb/sdk/mailbox/__init__.py,sha256=C4x3ym_hymymKFZiI1Q0HPlGx5x5CzeKPVF229Z2V8w,856
|
586
|
-
wandb/sdk/mailbox/mailbox_handle.py,sha256=
|
587
|
-
wandb/sdk/mailbox/response_handle.py,sha256=
|
591
|
+
wandb/sdk/mailbox/mailbox_handle.py,sha256=HVNF7VKvMIQi5JdhwRPMyElvf5dtQCx_4zOw21Hxn6g,4011
|
592
|
+
wandb/sdk/mailbox/response_handle.py,sha256=nRUe3tTC6-dmQAsRT2AaD3tWaQfXPZRJHgLLrIroOJ4,2816
|
588
593
|
wandb/sdk/artifacts/artifact_instance_cache.py,sha256=atSUDvKjkp6by6QY0w2FLMrFUg9UKc8TIrMVWGauV64,501
|
589
|
-
wandb/sdk/artifacts/artifact.py,sha256=
|
594
|
+
wandb/sdk/artifacts/artifact.py,sha256=HydpYBKmYlwNAkDI_eflXrgPWeuvn9fj3XNlUSlwQUA,103250
|
590
595
|
wandb/sdk/artifacts/artifact_state.py,sha256=JbPVinN8Vaq16IKdPtFmiYbBdBtCKLDMVU_ViMI8QOA,272
|
591
596
|
wandb/sdk/artifacts/artifact_ttl.py,sha256=kD_JfKVcQzZlif6PF-WKnemucWPwcISq8hX6Y8lKtY8,122
|
592
|
-
wandb/sdk/artifacts/_validators.py,sha256=
|
597
|
+
wandb/sdk/artifacts/_validators.py,sha256=ZDAaFH2LJ_OlxQ2B4ejryx4RFZHfKQKwbuX3FL-DsjM,10948
|
593
598
|
wandb/sdk/artifacts/_internal_artifact.py,sha256=Jx79CVB5xfuJCXTmmRIN8yegqknsqKNpKJa-WJmCO3w,1975
|
594
599
|
wandb/sdk/artifacts/storage_layout.py,sha256=JeI2uVqreJynIVNhFVvh7Acm-Wem25ueFQvcxg_svZU,109
|
595
600
|
wandb/sdk/artifacts/artifact_saver.py,sha256=RwJIveLn87UE3_tk5zAJ8ry-TAvxwTS94yNAChwhLAk,9654
|
596
|
-
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=
|
601
|
+
wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=pA-3qBKpjOM3axaSyn131Pu1ikSZIJUxDGYKzm2eF0o,8693
|
597
602
|
wandb/sdk/artifacts/exceptions.py,sha256=w0ScWmElSSHHFeh_HQ-Wae4P1U1RMztDCXN0PhyejbE,2333
|
598
603
|
wandb/sdk/artifacts/storage_handler.py,sha256=ebMCKXvvn7z_eYunXriTOYescstuBbNbxn7MDW9qZAw,1834
|
599
604
|
wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
600
|
-
wandb/sdk/artifacts/artifact_file_cache.py,sha256=
|
605
|
+
wandb/sdk/artifacts/artifact_file_cache.py,sha256=pTl4ah6_Bv_vX24tA_jEa9ZPpkF3UdW7TUtRYD2jluY,9874
|
601
606
|
wandb/sdk/artifacts/staging.py,sha256=QNbPQhlW-w2liQ_5ZgGJaxsp-prPrOAZ1InmCx3N9Zk,890
|
602
607
|
wandb/sdk/artifacts/artifact_download_logger.py,sha256=bS4v544rFcTOTRTXMUSd6tfLUXzezbIogDpQmZUjah0,1537
|
603
|
-
wandb/sdk/artifacts/artifact_manifest.py,sha256=
|
604
|
-
wandb/sdk/artifacts/_graphql_fragments.py,sha256=
|
608
|
+
wandb/sdk/artifacts/artifact_manifest.py,sha256=ZBdtazpTXt0X_8F4y6O-SDmrTY69hCp0HckCXbnZkII,2534
|
609
|
+
wandb/sdk/artifacts/_graphql_fragments.py,sha256=Nsiuy7lsY1jGR6pqqkqhplXnmZf9JmGeh7YznPsNfTc,581
|
605
610
|
wandb/sdk/artifacts/storage_policy.py,sha256=b87WYRCrzKBKy0WBNjZIB_98_YbnqP7eKS3CoKT_Ig0,2216
|
611
|
+
wandb/sdk/artifacts/_factories.py,sha256=gs_fTayk46y5MwLZxhvsx-UekuNKJYX7ZfLaWsk0OTs,543
|
606
612
|
wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py,sha256=sKu9VRCcgd9DYPPdCN49Fl63g6_HfHX124xnnFyZPe8,4764
|
607
613
|
wandb/sdk/artifacts/storage_handlers/tracking_handler.py,sha256=4MFqhnVciygmANKOrMSZwew4TXAFg5Q7zAZFz0FbpWM,2487
|
608
|
-
wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=
|
614
|
+
wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=BBpAXn_UCwK4OK8XA50wKI7nQM98ncYjrxCu21w6l6c,12861
|
609
615
|
wandb/sdk/artifacts/storage_handlers/azure_handler.py,sha256=Y0B79t9xDrXo361O9x6VFPQWJOozIPlzQRaGx6768Sw,8333
|
610
616
|
wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py,sha256=MpYHgEkbjt1VCUV-lfg1f3MscOK10tZHSJwOFjCzGBg,2562
|
611
617
|
wandb/sdk/artifacts/storage_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
612
618
|
wandb/sdk/artifacts/storage_handlers/local_file_handler.py,sha256=SiRfKwfr9brkm0tDhMDpgxhHH6FOlasRaliznL9zyN0,5470
|
613
|
-
wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=
|
614
|
-
wandb/sdk/artifacts/storage_handlers/http_handler.py,sha256=
|
619
|
+
wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=V2ttv1qsOP5Ns8aN-l5qt1J1OF1UKEUBos0EvW_SBD0,8509
|
620
|
+
wandb/sdk/artifacts/storage_handlers/http_handler.py,sha256=sdzBqZyQ_6WKtlcqIfxE6QzDNWy1Kw7rKp4f0OCTYuw,4033
|
615
621
|
wandb/sdk/artifacts/storage_handlers/multi_handler.py,sha256=GZ9wAfVSuZE3IGL5F5ojM_GPrRqYIYTJxWSsqFn9HiI,1842
|
616
622
|
wandb/sdk/artifacts/artifact_manifests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
617
|
-
wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py,sha256=
|
623
|
+
wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py,sha256=nQt76-WzeO1L8NoMc7DAuwWE4LhNrgL6Fn9eaOPChX0,3497
|
624
|
+
wandb/sdk/artifacts/_generated/registry_collections.py,sha256=yBZTeGp4hCOOGByxe7XH3WWFpDNiUuFg047kdoDpflw,835
|
618
625
|
wandb/sdk/artifacts/_generated/update_artifact_portfolio.py,sha256=tcEUGOoAE8pqr27tCwJoA9-Z95s_gNlIQkDCaUiFqkE,978
|
626
|
+
wandb/sdk/artifacts/_generated/artifact_via_membership_by_name.py,sha256=kLL8GbZkAxFMr05vZAAQpnUMg1uYtG0kiquZ-p7vb0U,634
|
619
627
|
wandb/sdk/artifacts/_generated/project_artifacts.py,sha256=noPODtFVotO69VK5oHZeU8NF4aYLKsPPRHOtNMPhn38,1128
|
620
|
-
wandb/sdk/artifacts/_generated/
|
621
|
-
wandb/sdk/artifacts/_generated/
|
628
|
+
wandb/sdk/artifacts/_generated/unlink_artifact.py,sha256=ypYTHlZEPNBMljgEqZ_0W5l8bAtJYwAYnUJueyjSCx4,571
|
629
|
+
wandb/sdk/artifacts/_generated/fragments.py,sha256=iP2lnhVoXpTJNGi8pZCNgTzCPk4hWeDqX3vAsqzJruM,14461
|
630
|
+
wandb/sdk/artifacts/_generated/delete_artifact.py,sha256=ZmRLfOb5CCB-JhNVWBWKDyalaiyGdPEgVk6ISRY6sS0,595
|
631
|
+
wandb/sdk/artifacts/_generated/enums.py,sha256=pMqG6Z705_yedZaa0u1K4NfsjXvIv48-zgiEJXIWJHk,442
|
622
632
|
wandb/sdk/artifacts/_generated/delete_artifact_sequence.py,sha256=UGA_ymMNL8t1Bu5ThfKRl89B-elsUYhCdMa9_dGkUXU,979
|
623
633
|
wandb/sdk/artifacts/_generated/run_output_artifacts.py,sha256=055RjKbfuVwiWM2eKpErMIFiY7S74pLTjFdRSypYf1g,1432
|
634
|
+
wandb/sdk/artifacts/_generated/fetch_registries.py,sha256=jYKGKjdVEJKrO-t1O1bIUSQ5-sug95_Xc3rQ1UeZOyA,722
|
624
635
|
wandb/sdk/artifacts/_generated/create_artifact_collection_tag_assignments.py,sha256=jvM9wBU7gfqbIyno7IvfQAh9Jbvp_bMFFDKph7qjpe8,1034
|
625
636
|
wandb/sdk/artifacts/_generated/delete_artifact_portfolio.py,sha256=lsGr5vO2EiySHEOZ-KdWdaEXdLO9-YEavXlbuIKanYY,991
|
626
637
|
wandb/sdk/artifacts/_generated/delete_aliases.py,sha256=0lDMciBaXsJR2XSjFO0_zgTaNRc0gPrBMwmOJLogD_A,419
|
638
|
+
wandb/sdk/artifacts/_generated/artifact_created_by.py,sha256=hvMced5PSNV7uUwbeyhACAtgXMF7WBSZ6aUonZJimEM,1216
|
639
|
+
wandb/sdk/artifacts/_generated/fetch_artifact_manifest.py,sha256=SadWxTSiAdqPNsFLUjsd9TfV0lAIHQ3cKsQCLoXI-SY,1055
|
627
640
|
wandb/sdk/artifacts/_generated/project_artifact_type.py,sha256=NOYXo2UYV1cslcbjSi0Q9167Iv5iksj9LS1XzcbsbXM,543
|
641
|
+
wandb/sdk/artifacts/_generated/artifact_by_id.py,sha256=elaALkxo-D9zkv7oBH0ig1_uc7iFaNxFeGz8XhpHMcc,320
|
642
|
+
wandb/sdk/artifacts/_generated/registry_versions.py,sha256=0vYKEQSWAp6oXcTorhbI3ZbukFUCa9VAGBxmI66Q-Q4,805
|
643
|
+
wandb/sdk/artifacts/_generated/artifact_file_urls.py,sha256=sDJYJnPVmHuUPbxYSApMmfo_Juk3ojoJH7R9EVrydU8,458
|
628
644
|
wandb/sdk/artifacts/_generated/update_artifact.py,sha256=FYzYORox9ZaQA_QI-bBYJnytHQeq9DrrRgOj4iYvlQc,540
|
629
645
|
wandb/sdk/artifacts/_generated/update_artifact_sequence.py,sha256=dwkvOYLgSbTSuwjZKvW9DtlW1Q78YPgQnayuVIA1P0U,966
|
646
|
+
wandb/sdk/artifacts/_generated/artifact_by_name.py,sha256=upCWxMT1qIfUfyEsfEwff3s77sI6dlCanNwzJD5MrfA,447
|
630
647
|
wandb/sdk/artifacts/_generated/move_artifact_collection.py,sha256=Jb4kOxyoNinSY_UUuqskBG3uuFN0KanevXOgXb4Q8mw,962
|
631
648
|
wandb/sdk/artifacts/_generated/artifact_version_files.py,sha256=-yPP-7wlB-jgv4BKrIm_7NeCucCcDwGvOb2rZSphUsk,925
|
632
649
|
wandb/sdk/artifacts/_generated/run_input_artifacts.py,sha256=B9qtwEBoYXG55UuNq18MmRtOlMk2mvXukKDTW_dmPbQ,1406
|
633
|
-
wandb/sdk/artifacts/_generated/__init__.py,sha256
|
650
|
+
wandb/sdk/artifacts/_generated/__init__.py,sha256=lq0ZBRz823gy5g5VKXfeV6qhFvIfmKlwYI4Ybi4su1Q,20103
|
651
|
+
wandb/sdk/artifacts/_generated/artifact_type.py,sha256=TUxnlVUX50cQtLBsp_oVj4S2vMLvWpZNbe_wuKNo06Q,686
|
634
652
|
wandb/sdk/artifacts/_generated/delete_artifact_collection_tag_assignments.py,sha256=BHJKnPZbWcdHLg4-uQ2V51i4OM2voSUdovfYM5Zv7JA,642
|
653
|
+
wandb/sdk/artifacts/_generated/artifact_used_by.py,sha256=M3IOar70stenLIQT3Xfvl8r0-lQTcxZFm-CS2q_UwkE,1080
|
635
654
|
wandb/sdk/artifacts/_generated/fetch_linked_artifacts.py,sha256=17-3j0Tmiv2D1H--RpdE1AoRC5sHnw6DoGpavaEZ52U,2148
|
636
655
|
wandb/sdk/artifacts/_generated/project_artifact_types.py,sha256=rGbW8kK66zR72kLklWuAcDnzmp7KkCFTXLvsUctlewY,542
|
637
656
|
wandb/sdk/artifacts/_generated/project_artifact_collections.py,sha256=4vgbbsMeblXtbn3ebloXDGz20x5JRxzwZpZhci5x--w,865
|
638
657
|
wandb/sdk/artifacts/_generated/project_artifact_collection.py,sha256=sMfS5nueyZz_EEQrdo2J7h9xo346jsAglAofHnqz1-k,3393
|
639
|
-
wandb/sdk/artifacts/_generated/
|
640
|
-
wandb/sdk/artifacts/_generated/
|
658
|
+
wandb/sdk/artifacts/_generated/artifact_collection_membership_file_urls.py,sha256=ILoPMihh3N7uN7Nn4MLwI3TNi9OkB1tTg9WbHvudU18,1382
|
659
|
+
wandb/sdk/artifacts/_generated/link_artifact.py,sha256=3yMxhQe4ZZ_CBdMjERA7su1GVVYx9rq55xyi9Gmvtt4,666
|
660
|
+
wandb/sdk/artifacts/_generated/operations.py,sha256=XZH7b6-eNVNOKS-jZUBZuuT1ukqUQj533UMw3gLOjrs,23759
|
641
661
|
wandb/sdk/artifacts/_generated/add_aliases.py,sha256=-DCPnnu6-ydKyALEd8E0pxDXGGaYriHj-ktUixML4Lk,395
|
642
662
|
wandb/sdk/artifacts/_generated/input_types.py,sha256=nq6YCF9DLpvIXqcJ7HiJ1MJgmed69sFJUcU7hV5TRSE,1514
|
643
663
|
wandb/sdk/artifacts/_generated/artifact_collection_membership_files.py,sha256=iRG2YDjHIDgG9_O5sI4ltkJX6ILCAGJgEKJA_ImO7wE,1343
|
644
664
|
wandb/sdk/artifacts/storage_policies/__init__.py,sha256=bgpWKElL-3iHcLO8pF-L8oezG-dQbp_6vcCYo7CEFAU,226
|
645
|
-
wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=
|
665
|
+
wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=Ro0QRAyo0TXi7pRhyToBuzQMeHYHuyof8G9jPZHwCIQ,22137
|
646
666
|
wandb/sdk/artifacts/storage_policies/register.py,sha256=xT7kUxubtLqyE-9S6U9E4mCo1PtXl0ZEJ6gVQiS-kGQ,49
|
647
667
|
wandb/sdk/integration_utils/auto_logging.py,sha256=90aPWkkZM9KPb4aYel1c-Yr8YV50cFBt1bVAAc2z45s,8205
|
648
668
|
wandb/sdk/integration_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -658,7 +678,7 @@ wandb/sdk/data_types/saved_model.py,sha256=pj1jM8ZeDxTY0YEpDv0zdC1bYUD7Z8rHxn7KG
|
|
658
678
|
wandb/sdk/data_types/molecule.py,sha256=9eWp5ZeXF_QCZk1P-IRRTPxCDF2VSejQK0wIZ4q17ok,8972
|
659
679
|
wandb/sdk/data_types/_private.py,sha256=zp2NRarTlIq4Hk3R2xp7j_qPGNzBMnaGHrZUN82shaY,299
|
660
680
|
wandb/sdk/data_types/bokeh.py,sha256=RuMsi7v_yJyMEuYjfrwTL1q1B8svdCW9t_eNge9aEJA,2874
|
661
|
-
wandb/sdk/data_types/video.py,sha256=
|
681
|
+
wandb/sdk/data_types/video.py,sha256=X-ruhlMdoQBjvWGR0IvKBgN5aj3z2YQUqr1PCYIjrzU,10605
|
662
682
|
wandb/sdk/data_types/table_decorators.py,sha256=2D0dlnv7sBvrHyYH61LCCMhowmg8CENqyvth9BID-VQ,3727
|
663
683
|
wandb/sdk/data_types/graph.py,sha256=c8P0aN9sNzS6ebccantN4kl_wK-xRczrCBIn4JnJs2A,12845
|
664
684
|
wandb/sdk/data_types/table.py,sha256=AWnTuX20tFSpvQ0Xg9O6XXE0gkQI0L0669UHpg-45B4,54445
|
@@ -684,22 +704,17 @@ wandb/sdk/projects/_generated/__init__.py,sha256=ZjHH69hD3ps0Rrs0g5BJIXbz5JRdShW
|
|
684
704
|
wandb/sdk/projects/_generated/operations.py,sha256=MhLYsTHjekySMt3jdlXdruDI0Sg5xR6wQSOeDvTu5b4,1785
|
685
705
|
wandb/sdk/projects/_generated/upsert_registry_project.py,sha256=yNkkeiImzvEbwL9yeJLIePZoBEfVuJB-u8VZFgixymo,597
|
686
706
|
wandb/sdk/projects/_generated/input_types.py,sha256=izPOosvLVVURHZgWC6yL6_uL_b7PDwz3Kw7qc3uoU0M,278
|
687
|
-
wandb/sdk/interface/interface_queue.py,sha256=
|
688
|
-
wandb/sdk/interface/interface_relay.py,sha256=lM5ZgJc6m8BS-nWOuzMCwAK0ve9UBGgOD2rgJ9flIhI,867
|
689
|
-
wandb/sdk/interface/router_queue.py,sha256=wnApY1iXa_3L0-HO6t42Nbsh68zyEw3FWN3oI6PmoXM,1049
|
707
|
+
wandb/sdk/interface/interface_queue.py,sha256=aSohv4Mi6v9LF4ytMjSiZIPYj5egE5wTQmTZZfmGfmg,1160
|
690
708
|
wandb/sdk/interface/summary_record.py,sha256=-wDv_zLYueeUY8IzyF9NPYnYwF3iBpUWbrsGcHAd2YM,1677
|
691
|
-
wandb/sdk/interface/
|
692
|
-
wandb/sdk/interface/interface_sock.py,sha256=rz6uwKNzLpGDCCVGSlC6ABspmkYD5LnGX_cd9dvaAwU,1043
|
709
|
+
wandb/sdk/interface/interface_sock.py,sha256=PeLR8W-M2l81kELzpwRbWAfhj4pOlyOXP1aVMjwDMNQ,1377
|
693
710
|
wandb/sdk/interface/constants.py,sha256=NJNBFr7LkshLI837D3LU3JuEURLzBwza9H-kxcy4ihw,60
|
694
|
-
wandb/sdk/interface/
|
695
|
-
wandb/sdk/interface/interface_shared.py,sha256=rDLFSkBWIUp-4Z3eh7r434WjCrI90hHJ6YV62x-XEao,18234
|
711
|
+
wandb/sdk/interface/interface_shared.py,sha256=xao8S8qfko61b-RMSHN7iEuCxQFhMmLbdF8DdmISMGg,17738
|
696
712
|
wandb/sdk/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
697
713
|
wandb/sdk/interface/interface.py,sha256=eHQEQinq_tU8uCM3I_nqDXvyjEGrt3cs4a_S8D9b9KU,37888
|
698
|
-
wandb/sdk/interface/router_relay.py,sha256=tOBQYEX7PGw9-qE91CdNhLEQb9KbJiQnlHg7XBOsijA,1390
|
699
714
|
wandb/sdk/lib/disabled.py,sha256=DO_I4aGCvg0sRzMZQ7bMgQijaxTzY1-Yf7LPf9PuJDU,911
|
700
715
|
wandb/sdk/lib/credentials.py,sha256=WmVdzL1rFy7S0WIHf1ZYd98_eaHTxPKUobReRSPQgBM,4737
|
701
716
|
wandb/sdk/lib/runid.py,sha256=Qa-5ft4B85YUazkV_18OYwf9JhMaAVp0JAInZzxzX5o,392
|
702
|
-
wandb/sdk/lib/printer.py,sha256=
|
717
|
+
wandb/sdk/lib/printer.py,sha256=V8PVsqo9kOueeCVjgCSB-mhRLVYuIAfLJMlOazlu4FA,16242
|
703
718
|
wandb/sdk/lib/interrupt.py,sha256=Ea7aSVHcY0wLYnyMfm4jZbQcwGPgRcuPuoBSe0Swuds,1353
|
704
719
|
wandb/sdk/lib/timed_input.py,sha256=D7vx3N3m4LlxwkQpzS7lDi7IOnccqZ3WfLlDYRs8Oes,3229
|
705
720
|
wandb/sdk/lib/wb_logging.py,sha256=9km7TAnJRSwBTQaFSYA4BmQZV3_Gb0y1PBlzqEOdUHA,4839
|
@@ -707,10 +722,11 @@ wandb/sdk/lib/fsm.py,sha256=2fRiEF2jF95xDoVVbOmeIRaxMqlOv0bCv4RD8F2Ivj0,5044
|
|
707
722
|
wandb/sdk/lib/json_util.py,sha256=pfUM7euVZYhiRvUOPuZJx1NKXejr3lpU_u1x1fCmJX0,2466
|
708
723
|
wandb/sdk/lib/deprecate.py,sha256=6M1Eb07bhgeDt0XuYFOJLMjY0B2jUZVQIYSLs7SQPzQ,817
|
709
724
|
wandb/sdk/lib/proto_util.py,sha256=JxDldi8j6dfF_Lx9zOwqYL6LQZhYYGgKt_AfZtYHAW0,2894
|
725
|
+
wandb/sdk/lib/asyncio_manager.py,sha256=ftMrz3qAGtOkfLoo-4xeoUj3etuayw7XXStPWHmM43U,8760
|
710
726
|
wandb/sdk/lib/ipython.py,sha256=TcKyUyoCBGCNkItaJRDx8PFUHtvuPPDDIduqyMYuGfQ,3810
|
711
727
|
wandb/sdk/lib/preinit.py,sha256=11QkGmBpoGazNaUGvyDIzBJA4QTggj7fGQdugpCvOiw,1450
|
712
|
-
wandb/sdk/lib/hashutil.py,sha256=
|
713
|
-
wandb/sdk/lib/paths.py,sha256
|
728
|
+
wandb/sdk/lib/hashutil.py,sha256=Heudn0Prj3C-1Ypyq4IU1QfflRJrJMbgoreTGnWGraE,3592
|
729
|
+
wandb/sdk/lib/paths.py,sha256=-5mtOUwtf7LUrM4NxQWqi0HGsNSHujD0QOhLa0HXzFo,4565
|
714
730
|
wandb/sdk/lib/import_hooks.py,sha256=0_TJwq-EuZFUIFzFOZoVDWOMP9-Af1r2Vq5sV5sfzg4,10271
|
715
731
|
wandb/sdk/lib/gitlib.py,sha256=UAKpxnWTyIp3xkn4bRRqxvUmv5c_xyN0gmc5nL91hpM,7832
|
716
732
|
wandb/sdk/lib/handler_util.py,sha256=mT9CKsmboq4lPWElsi4uo9ORHhx6OYTr7KY2QtgbM6M,589
|
@@ -723,24 +739,24 @@ wandb/sdk/lib/filenames.py,sha256=GvzWOq85BO_Od7f69PkRKS6zYhQ88dTCtMr3c19jLEk,20
|
|
723
739
|
wandb/sdk/lib/server.py,sha256=dn0RXjAnpmigAULLyq75XHYyHxw17MLCJ9fhPq2v22I,1623
|
724
740
|
wandb/sdk/lib/telemetry.py,sha256=Q7rh7qyeicy9KdgQffVK6ZI8vHUdOtwFvxEeeJtOWcI,2754
|
725
741
|
wandb/sdk/lib/progress.py,sha256=VRRX-P9YoiqyCUdZmoE1II5uy5qv4QI1m5Yzn8zbbRM,10021
|
726
|
-
wandb/sdk/lib/printer_asyncio.py,sha256=
|
742
|
+
wandb/sdk/lib/printer_asyncio.py,sha256=WCBPCS95bPi0EbYVZiJE88AfvhB3LmKID28hBWDAXf8,1497
|
727
743
|
wandb/sdk/lib/config_util.py,sha256=Y00nnEcq0zspuDb0yqraxRuo5JIUh1HflDvZYppeDyk,2893
|
728
744
|
wandb/sdk/lib/apikey.py,sha256=s2uw8B2O53rCpBCDgiWyF8ceQH9MNpOdaTil1uvy-O0,11097
|
729
745
|
wandb/sdk/lib/redirect.py,sha256=X4JHJ3W5-kG25aOYUyuYc8TBgVAKwhpV6yTaFWaR7tI,27373
|
730
746
|
wandb/sdk/lib/file_stream_utils.py,sha256=NN4qaSyNufvlkg96a1YUjQ8-pYtCVU7xagJaW8mqAyI,4018
|
731
|
-
wandb/sdk/lib/retry.py,sha256=
|
747
|
+
wandb/sdk/lib/retry.py,sha256=LylZjVYWp44slZkbW7ehx_F4xdIvqHiVbaaFhQyJXls,13079
|
732
748
|
wandb/sdk/lib/lazyloader.py,sha256=4Seis4C8Ph6a2-3scfYqeHh7KjKG6PO0WJ2ZPW30O0o,1891
|
733
|
-
wandb/sdk/lib/sock_client.py,sha256=y5o2R_qNEIZZmY-bZWuZuA79tRTuIcT5ntPhVkP0fAA,8112
|
734
749
|
wandb/sdk/lib/filesystem.py,sha256=AWEY6dqFYPw_ump1nsaOCl-FwVo0ui5iZ_YH0tUTeyQ,14132
|
735
750
|
wandb/sdk/lib/exit_hooks.py,sha256=_4oozaRQCJi8NJfZvHsA8livvFb0trZKLOGB8_UcHGk,1540
|
736
751
|
wandb/sdk/lib/timer.py,sha256=VZUyl7fmQAB75l9QXw9Nkz9SxyYj-CvLPawAk866YKM,440
|
737
752
|
wandb/sdk/lib/sparkline.py,sha256=9xQkuZ0z1DM7rHE2jFNDy5vBdPirnurd__A_bC6-Bgc,1363
|
738
753
|
wandb/sdk/lib/run_moment.py,sha256=hFx3S-F9SAF6xtwRYbBnP5fMDkllMJvGSSla_eqbsA8,2419
|
739
|
-
wandb/sdk/lib/asyncio_compat.py,sha256=
|
740
|
-
wandb/sdk/lib/service/service_connection.py,sha256=
|
754
|
+
wandb/sdk/lib/asyncio_compat.py,sha256=zOcgHL4C-ymc8vVS4y5pTtTes-EyCL9X1eXOTXLswwk,6993
|
755
|
+
wandb/sdk/lib/service/service_connection.py,sha256=ieTG8XWo8Prlvhq1NChsVcd-XEIkLENLkXdzdl-GrTQ,6067
|
741
756
|
wandb/sdk/lib/service/ipc_support.py,sha256=UPa-bV_wY25WhYmMelVyLGZzbztSz2LSf2SUhVB-omQ,341
|
742
757
|
wandb/sdk/lib/service/service_process.py,sha256=EDv7zYeUpF4NgN4ClTlzyUtfs75CiimdmLxTqvo72Tg,3100
|
743
|
-
wandb/sdk/lib/service/
|
758
|
+
wandb/sdk/lib/service/service_client.py,sha256=uLyOOsLI_W5C9YeU_LTqGJSN0tDbq8nSh2HWWnyNjTQ,3218
|
759
|
+
wandb/sdk/lib/service/service_token.py,sha256=2J68CZqNqN4sRIkI7oDUpqX6vhfWQi8pXNzU_hUxoGc,5107
|
744
760
|
wandb/sdk/lib/service/service_port_file.py,sha256=Oonq46Ml4vKR-JTcxx4exi5MthGYRvIqy8hCv84Lc5k,2943
|
745
761
|
wandb/sync/__init__.py,sha256=e0Ygm4RRlZjqQe8tkBkF7aYtXAYWxR2PeY_zLi-dzZc,79
|
746
762
|
wandb/sync/sync.py,sha256=buuToYHmKk4w9A1yEa2i2wzSqhkJXrRUal5-2xoW_F4,16154
|
@@ -762,23 +778,23 @@ wandb/proto/wandb_generate_deprecated.py,sha256=Iyf7PwIL_2B7XohrckYLbjjT09lccwbq
|
|
762
778
|
wandb/proto/v4/wandb_telemetry_pb2.py,sha256=USZm11BMckOpGikXKaGZ2Hg1WW17RgDtKhpaP9eTa-k,11965
|
763
779
|
wandb/proto/v4/wandb_base_pb2.py,sha256=El5lnZMRpkc1W4SlZgeKoDPqWiJau0BG8QfigMMt6bM,1422
|
764
780
|
wandb/proto/v4/wandb_server_pb2.py,sha256=NiG6Xv9CDvxc8v8NmnM237jyYqMuRyE_nqmLAMZVdI8,6977
|
765
|
-
wandb/proto/v4/wandb_internal_pb2.py,sha256
|
781
|
+
wandb/proto/v4/wandb_internal_pb2.py,sha256=-dqDoDEWpLdHKXd1bzWerxLjo6Ne3Z9L4lQnD7abc0I,53820
|
766
782
|
wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
767
783
|
wandb/proto/v4/wandb_settings_pb2.py,sha256=gPObgqI1Uy3BushWew48n8rgCLCsH06cMFCIGbP7EHg,18221
|
768
784
|
wandb/proto/v5/wandb_telemetry_pb2.py,sha256=uvwzA99caZZECCcP8uoCIcfWuSDBeGns12fxTaLdx0Q,12235
|
769
785
|
wandb/proto/v5/wandb_base_pb2.py,sha256=u7VVWdExJ4WDkYNMV-xvWvyQ-NTIbAqToTKtgEqt_Lg,1572
|
770
786
|
wandb/proto/v5/wandb_server_pb2.py,sha256=f55mk3Z77xUnq_tAbTd_Q75CiOJz6ppPbZT7CoeF7-I,7535
|
771
|
-
wandb/proto/v5/wandb_internal_pb2.py,sha256=
|
787
|
+
wandb/proto/v5/wandb_internal_pb2.py,sha256=3mhizPA8Vz9jomlm24K_VkPz_5rYwxo59Yp0gtLZKNk,58167
|
772
788
|
wandb/proto/v5/wandb_settings_pb2.py,sha256=12an1CH04EdQAZ0EPeJHFXhVbLcKXIGco3iKFvv8gnI,18577
|
773
789
|
wandb/proto/v6/wandb_telemetry_pb2.py,sha256=WjxRYwGaG2PCMJdgtTtDMJ-bHIwrxcuMoPXIlxjaKmc,12489
|
774
790
|
wandb/proto/v6/wandb_base_pb2.py,sha256=5NJU1W7zgKLIsKL5brRoOL4HcLOxWieIKlWEe1IM0_g,1821
|
775
791
|
wandb/proto/v6/wandb_server_pb2.py,sha256=jH4AJat2sz9hR88er6D4yb-6bNLY5nPW5oX5CuHjBLc,7786
|
776
|
-
wandb/proto/v6/wandb_internal_pb2.py,sha256=
|
792
|
+
wandb/proto/v6/wandb_internal_pb2.py,sha256=6hPu_RQk9gjGLXQk9i6X50GWAXqOMdpL5VpsHhMZgog,58420
|
777
793
|
wandb/proto/v6/wandb_settings_pb2.py,sha256=pAJA82SYCRtZs7OgUQL-OYs1Kkp1iyVayoVmRLaI6O4,18830
|
778
794
|
wandb/proto/v3/wandb_telemetry_pb2.py,sha256=YUFe_KdIEM8Pq7lBnlsPefMgEOOjjqTLArRC_Wpsmwc,14518
|
779
795
|
wandb/proto/v3/wandb_base_pb2.py,sha256=_nsr_HW4Fdz62-KiXGo6Dw0_9bwdXz07auZkkH2QfSI,2355
|
780
796
|
wandb/proto/v3/wandb_server_pb2.py,sha256=LQCUmuy0NFDo20N9uCUiE5VPyhP5r929WKtniae4CdQ,15514
|
781
|
-
wandb/proto/v3/wandb_internal_pb2.py,sha256=
|
797
|
+
wandb/proto/v3/wandb_internal_pb2.py,sha256=hfl3IkpolrHcs2YsU2RCx8VDXVVh245X_u50eM4-F1U,117096
|
782
798
|
wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
783
799
|
wandb/proto/v3/wandb_settings_pb2.py,sha256=GlmZKFANXdZmqv-glm8pgM9XxHXhzf1JWNYIgtKLJGw,21846
|
784
800
|
wandb/plot/bar.py,sha256=gH29ianBYs-1iV8jjuUlWO6KixXA8Bq_kz0nXmlLmQU,2036
|
@@ -819,24 +835,24 @@ wandb/apis/importers/internals/util.py,sha256=lvqLAqNA1UpoOuD6eqe_1ZzRwxj8IkYKxY
|
|
819
835
|
wandb/apis/importers/internals/internal.py,sha256=ieAnGMYU4-6_rGY9uP7uZePeepMjP964xgUcsr-8f1w,13199
|
820
836
|
wandb/apis/public/projects.py,sha256=fhCtsD9iSY43JypBC9BVfBi-zraLh2I4MU4hTx3w45g,8018
|
821
837
|
wandb/apis/public/sweeps.py,sha256=lPxp8yoIh60vjmfsCOfhsMReuV3aVzNBc_JGJdh0CzY,12946
|
822
|
-
wandb/apis/public/reports.py,sha256=
|
838
|
+
wandb/apis/public/reports.py,sha256=r72ms_TKM_CgTExOUZyNA2xFzttnHeFLsNpeBwv5DMk,19819
|
823
839
|
wandb/apis/public/jobs.py,sha256=PH_S8Oi1QngXMzhS5hxJUjrbkoRDOnKewBXX9Tcn34U,26302
|
824
840
|
wandb/apis/public/automations.py,sha256=54Ugi3TZgQMApbMB5_rDPFpNeRL6hn1D_zdQP51fKFQ,2615
|
825
841
|
wandb/apis/public/integrations.py,sha256=sDpClnpwCew3MO3M_yhxMSESzYcrM38zDXWoOyOiy4E,7260
|
826
|
-
wandb/apis/public/artifacts.py,sha256=
|
842
|
+
wandb/apis/public/artifacts.py,sha256=ItcccWPcxd-Au_eHrEFsyDIu4Gy9JkPlfya7kL4PLEU,34968
|
827
843
|
wandb/apis/public/files.py,sha256=V2j_bXnxn0uhyzA7_AB0MJmNPJbqbIzdpRhE7WPJwCI,13101
|
828
844
|
wandb/apis/public/const.py,sha256=icNtcS3gTCtvevLWuTOCqm0FHEfLQ0P80mA69dWeEXs,121
|
829
845
|
wandb/apis/public/history.py,sha256=ZBXoVmrNuzq7tPj0Rwgk3TJvOGDaGKEDlXj1hm3p7fc,6288
|
830
846
|
wandb/apis/public/users.py,sha256=Aqj_H-iseCLSW81ZVRUa-q9CYgcHFy2wWX-Ty9uH_f0,5350
|
831
|
-
wandb/apis/public/api.py,sha256=
|
847
|
+
wandb/apis/public/api.py,sha256=A9GLrA_HPp0DWZL-OAnEER_7voc6stkZpug0jEz4A3g,88222
|
832
848
|
wandb/apis/public/__init__.py,sha256=Alli9os1BnRCEXEeCPiQbDU1Di3_jMz993sguXX9Qyg,1214
|
833
849
|
wandb/apis/public/utils.py,sha256=62ux6zpRpVug_y-_PaHUSOkPcHMTNFknAPqcINJSHFg,7893
|
834
850
|
wandb/apis/public/query_generator.py,sha256=AHbdUYBnZRqQSOTFoVVsAZRN1FFA5dSfHpi665zhgc0,6527
|
835
851
|
wandb/apis/public/runs.py,sha256=_xZiYXLfF7bWNCj3fTjA7hyPKHyqUxAQ2zWWCAw5Btk,41991
|
836
852
|
wandb/apis/public/teams.py,sha256=DJNV5RYy-DJ6SCIuUfxcQdSwRY9VjZouzoGVF5gb3oo,6615
|
837
853
|
wandb/apis/public/registries/_freezable_list.py,sha256=E7qnLNnw1RF6ClQXbtkg3LRpOMs5jx2L5HiSY3RzTMo,6368
|
838
|
-
wandb/apis/public/registries/_utils.py,sha256=
|
839
|
-
wandb/apis/public/registries/registries_search.py,sha256=
|
854
|
+
wandb/apis/public/registries/_utils.py,sha256=Bn_rSe4WAArDw0UdUjkOQkvJ3RDe0O7B6JINAca2BXQ,4291
|
855
|
+
wandb/apis/public/registries/registries_search.py,sha256=hG2pvDTnoKbPQbrpk3i_96e3_-4q4FM5OFjGqVRDnOc,11358
|
840
856
|
wandb/apis/public/registries/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
841
857
|
wandb/apis/public/registries/registry.py,sha256=fNX2Iy3yG2skLPIsp0ityR1opQDeTKXIy38VjDDkXCQ,13725
|
842
858
|
wandb/filesync/dir_watcher.py,sha256=9Y57-5-hWZFzCuBL6HQVtm-MIE9p8kCRU_g_YZUVHvo,16345
|
@@ -849,7 +865,7 @@ wandb/filesync/step_checksum.py,sha256=IWp7I8WMobTTrZw3Ip2IBlBmvElaG_ihvsis0HW5Q
|
|
849
865
|
wandb/mpmain/__main__.py,sha256=bLhspPeHQvNMyRNR7xi9v-02XfW1mhJY2yBWI3bYtbg,57
|
850
866
|
wandb/mpmain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
851
867
|
wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
852
|
-
wandb/cli/cli.py,sha256=
|
868
|
+
wandb/cli/cli.py,sha256=3_2SuxOv4a9Ha9SuGvVuc3RFvWueb0wuJQy8HrXFzww,95045
|
853
869
|
wandb/cli/beta.py,sha256=Mq-5A-XXH3VLIvhWPxA84DFPeirNMYGPSQ53H78Xkjc,5187
|
854
870
|
wandb/automations/_validators.py,sha256=5rEU_gC0TRx1UvFVyqCcQU6knAKsZHhTW3z_lU8eZBY,5002
|
855
871
|
wandb/automations/_utils.py,sha256=3a39L976vsrckevwYLNHiHA5bcs-YlCdOwIuJ8UG3jc,8269
|
@@ -866,11 +882,11 @@ wandb/automations/_filters/expressions.py,sha256=JRnjqjeiqBJ7jq1HetO_6YQ9NFNOT6Q
|
|
866
882
|
wandb/automations/_generated/get_automations.py,sha256=4fdmSADMbWV5oHcWc6sUK8PVbAuTUOuhK2izLjfDj0c,537
|
867
883
|
wandb/automations/_generated/integrations_by_entity.py,sha256=mRAf-LVgyWEmoGIKsI6CKPmuHbX2-Y1qpRzOKIAVW6c,501
|
868
884
|
wandb/automations/_generated/fragments.py,sha256=52mxhcfT9XTrxCo04Z7QLiyPgbtHHhWXxj4d8qvaIlk,12017
|
869
|
-
wandb/automations/_generated/enums.py,sha256=
|
885
|
+
wandb/automations/_generated/enums.py,sha256=HHw1endeSevcOoy27zEz1XMaCbe50DXdf8CLbtYbFPk,869
|
870
886
|
wandb/automations/_generated/create_automation.py,sha256=AYIaKKLZDSo0VPU_JqjbVSdcoNfFArUtoxWinf-Q3Uc,340
|
871
887
|
wandb/automations/_generated/get_automations_by_entity.py,sha256=G7w2Pnb4zOPq6gkw9jttmoQLjIXGnHXMl0bSeNZKTQw,591
|
872
888
|
wandb/automations/_generated/__init__.py,sha256=q2qlYbw2w70_xXVEXpiMisKM4hdZxWMSaW4jmTN-HCc,6824
|
873
|
-
wandb/automations/_generated/delete_automation.py,sha256=
|
889
|
+
wandb/automations/_generated/delete_automation.py,sha256=0fE1tCt-Yl3iU8UxpGBUj5jk2zXPOFwa6MZ_WfP2ZLE,301
|
874
890
|
wandb/automations/_generated/generic_webhook_integrations_by_entity.py,sha256=bwuMMOI2pZYzXWn50HvGH2yC6atEOTU5oNzYvw_MWfU,599
|
875
891
|
wandb/automations/_generated/create_generic_webhook_integration.py,sha256=N0r4pYu6LG4m8PrZLm9CrYmAwbDMOiI4x0W1ygRxPhQ,1420
|
876
892
|
wandb/automations/_generated/slack_integrations_by_entity.py,sha256=87KtiuB4wfsHCiQD9m9_1GF9DYhdvqm4EsZ1dOxYtRU,536
|
@@ -881,8 +897,8 @@ wandb/analytics/__init__.py,sha256=WG_Mh20Hr8d3vDmGMcfDXCMEIew3uzDYZAJwFsrbAug,5
|
|
881
897
|
wandb/analytics/sentry.py,sha256=XFrWH5ZBE4l2mS2aGIMRDG65TnVcFzsjthvnuqPqJDs,8440
|
882
898
|
wandb/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
883
899
|
wandb/agents/pyagent.py,sha256=cQ0YlusW6_JV4NlPJJpodJ6HCLr-NiubXjEBaVAPgrg,14287
|
884
|
-
wandb-0.21.
|
885
|
-
wandb-0.21.
|
886
|
-
wandb-0.21.
|
887
|
-
wandb-0.21.
|
888
|
-
wandb-0.21.
|
900
|
+
wandb-0.21.3.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
|
901
|
+
wandb-0.21.3.dist-info/WHEEL,sha256=ZCaGMInsobf_X8ibOue5yAC0a46KTbFsnGjtmL2skyU,106
|
902
|
+
wandb-0.21.3.dist-info/METADATA,sha256=ZMi72H0ayZ7Y6rpnA1rhdjmA0okZzvTVxhFhzRjfszw,10244
|
903
|
+
wandb-0.21.3.dist-info/RECORD,,
|
904
|
+
wandb-0.21.3.dist-info/licenses/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
|
@@ -1,38 +0,0 @@
|
|
1
|
-
"""InterfaceRelay - Derived from InterfaceQueue using RelayRouter to preserve uuid req/resp.
|
2
|
-
|
3
|
-
See interface.py for how interface classes relate to each other.
|
4
|
-
"""
|
5
|
-
|
6
|
-
from __future__ import annotations
|
7
|
-
|
8
|
-
import logging
|
9
|
-
from typing import TYPE_CHECKING
|
10
|
-
|
11
|
-
from wandb.proto import wandb_internal_pb2 as pb
|
12
|
-
from wandb.sdk.mailbox import Mailbox
|
13
|
-
|
14
|
-
from .interface_queue import InterfaceQueue
|
15
|
-
|
16
|
-
if TYPE_CHECKING:
|
17
|
-
from queue import Queue
|
18
|
-
|
19
|
-
|
20
|
-
logger = logging.getLogger("wandb")
|
21
|
-
|
22
|
-
|
23
|
-
class InterfaceRelay(InterfaceQueue):
|
24
|
-
_mailbox: Mailbox
|
25
|
-
|
26
|
-
def __init__(
|
27
|
-
self,
|
28
|
-
mailbox: Mailbox,
|
29
|
-
record_q: Queue[pb.Record],
|
30
|
-
result_q: Queue[pb.Result],
|
31
|
-
relay_q: Queue[pb.Result],
|
32
|
-
) -> None:
|
33
|
-
self.relay_q = relay_q
|
34
|
-
super().__init__(
|
35
|
-
record_q=record_q,
|
36
|
-
result_q=result_q,
|
37
|
-
mailbox=mailbox,
|
38
|
-
)
|
wandb/sdk/interface/router.py
DELETED
@@ -1,89 +0,0 @@
|
|
1
|
-
"""Router - handle message router (base class).
|
2
|
-
|
3
|
-
Router to manage responses.
|
4
|
-
|
5
|
-
"""
|
6
|
-
|
7
|
-
from __future__ import annotations
|
8
|
-
|
9
|
-
import logging
|
10
|
-
import threading
|
11
|
-
from abc import abstractmethod
|
12
|
-
from typing import TYPE_CHECKING
|
13
|
-
|
14
|
-
from wandb.proto import wandb_internal_pb2 as pb
|
15
|
-
from wandb.proto import wandb_server_pb2 as spb
|
16
|
-
from wandb.sdk import mailbox
|
17
|
-
|
18
|
-
if TYPE_CHECKING:
|
19
|
-
from queue import Queue
|
20
|
-
|
21
|
-
|
22
|
-
logger = logging.getLogger("wandb")
|
23
|
-
|
24
|
-
|
25
|
-
class MessageRouterClosedError(Exception):
|
26
|
-
"""Router has been closed."""
|
27
|
-
|
28
|
-
|
29
|
-
class MessageRouter:
|
30
|
-
_request_queue: Queue[pb.Record]
|
31
|
-
_response_queue: Queue[pb.Result]
|
32
|
-
_mailbox: mailbox.Mailbox | None
|
33
|
-
|
34
|
-
def __init__(self, mailbox: mailbox.Mailbox | None = None) -> None:
|
35
|
-
self._mailbox = mailbox
|
36
|
-
self._lock = threading.Lock()
|
37
|
-
|
38
|
-
self._join_event = threading.Event()
|
39
|
-
self._thread = threading.Thread(target=self.message_loop)
|
40
|
-
self._thread.name = "MsgRouterThr"
|
41
|
-
self._thread.daemon = True
|
42
|
-
self._thread.start()
|
43
|
-
|
44
|
-
@abstractmethod
|
45
|
-
def _read_message(self) -> pb.Result | spb.ServerResponse | None:
|
46
|
-
raise NotImplementedError
|
47
|
-
|
48
|
-
@abstractmethod
|
49
|
-
def _send_message(self, record: pb.Record) -> None:
|
50
|
-
raise NotImplementedError
|
51
|
-
|
52
|
-
def message_loop(self) -> None:
|
53
|
-
try:
|
54
|
-
while not self._join_event.is_set():
|
55
|
-
try:
|
56
|
-
msg = self._read_message()
|
57
|
-
except EOFError:
|
58
|
-
# On abnormal shutdown the queue will be destroyed underneath
|
59
|
-
# resulting in EOFError. message_loop needs to exit..
|
60
|
-
logger.warning("EOFError seen in message_loop")
|
61
|
-
break
|
62
|
-
except MessageRouterClosedError as e:
|
63
|
-
logger.warning("message_loop has been closed", exc_info=e)
|
64
|
-
break
|
65
|
-
if not msg:
|
66
|
-
continue
|
67
|
-
self._handle_msg_rcv(msg)
|
68
|
-
|
69
|
-
finally:
|
70
|
-
if self._mailbox:
|
71
|
-
self._mailbox.close()
|
72
|
-
|
73
|
-
def join(self) -> None:
|
74
|
-
self._join_event.set()
|
75
|
-
self._thread.join()
|
76
|
-
|
77
|
-
def _handle_msg_rcv(self, msg: pb.Result | spb.ServerResponse) -> None:
|
78
|
-
if not self._mailbox:
|
79
|
-
return
|
80
|
-
|
81
|
-
if isinstance(msg, pb.Result) and msg.control.mailbox_slot:
|
82
|
-
self._mailbox.deliver(
|
83
|
-
spb.ServerResponse(
|
84
|
-
request_id=msg.control.mailbox_slot,
|
85
|
-
result_communicate=msg,
|
86
|
-
)
|
87
|
-
)
|
88
|
-
elif isinstance(msg, spb.ServerResponse) and msg.request_id:
|
89
|
-
self._mailbox.deliver(msg)
|
@@ -1,43 +0,0 @@
|
|
1
|
-
"""Router - handle message router (queue).
|
2
|
-
|
3
|
-
Router to manage responses from a queue.
|
4
|
-
|
5
|
-
"""
|
6
|
-
|
7
|
-
from __future__ import annotations
|
8
|
-
|
9
|
-
import queue
|
10
|
-
from typing import TYPE_CHECKING
|
11
|
-
|
12
|
-
from wandb.proto import wandb_internal_pb2 as pb
|
13
|
-
from wandb.sdk.mailbox import Mailbox
|
14
|
-
|
15
|
-
from .router import MessageRouter
|
16
|
-
|
17
|
-
if TYPE_CHECKING:
|
18
|
-
from queue import Queue
|
19
|
-
|
20
|
-
|
21
|
-
class MessageQueueRouter(MessageRouter):
|
22
|
-
_request_queue: Queue[pb.Record]
|
23
|
-
_response_queue: Queue[pb.Result]
|
24
|
-
|
25
|
-
def __init__(
|
26
|
-
self,
|
27
|
-
request_queue: Queue[pb.Record],
|
28
|
-
response_queue: Queue[pb.Result],
|
29
|
-
mailbox: Mailbox | None = None,
|
30
|
-
) -> None:
|
31
|
-
self._request_queue = request_queue
|
32
|
-
self._response_queue = response_queue
|
33
|
-
super().__init__(mailbox=mailbox)
|
34
|
-
|
35
|
-
def _read_message(self) -> pb.Result | None:
|
36
|
-
try:
|
37
|
-
msg = self._response_queue.get(timeout=1)
|
38
|
-
except queue.Empty:
|
39
|
-
return None
|
40
|
-
return msg
|
41
|
-
|
42
|
-
def _send_message(self, record: pb.Record) -> None:
|
43
|
-
self._request_queue.put(record)
|
@@ -1,50 +0,0 @@
|
|
1
|
-
"""Router - handle message router (relay).
|
2
|
-
|
3
|
-
Router to manage responses from a queue with relay.
|
4
|
-
|
5
|
-
"""
|
6
|
-
|
7
|
-
from __future__ import annotations
|
8
|
-
|
9
|
-
from typing import TYPE_CHECKING
|
10
|
-
|
11
|
-
from wandb.proto import wandb_internal_pb2 as pb
|
12
|
-
from wandb.proto import wandb_server_pb2 as spb
|
13
|
-
from wandb.sdk.mailbox import Mailbox
|
14
|
-
|
15
|
-
from .router_queue import MessageQueueRouter
|
16
|
-
|
17
|
-
if TYPE_CHECKING:
|
18
|
-
from queue import Queue
|
19
|
-
|
20
|
-
|
21
|
-
class MessageRelayRouter(MessageQueueRouter):
|
22
|
-
_relay_queue: Queue[pb.Result]
|
23
|
-
|
24
|
-
def __init__(
|
25
|
-
self,
|
26
|
-
request_queue: Queue[pb.Record],
|
27
|
-
response_queue: Queue[pb.Result],
|
28
|
-
relay_queue: Queue[pb.Result],
|
29
|
-
mailbox: Mailbox,
|
30
|
-
) -> None:
|
31
|
-
self._relay_queue = relay_queue
|
32
|
-
super().__init__(
|
33
|
-
request_queue=request_queue,
|
34
|
-
response_queue=response_queue,
|
35
|
-
mailbox=mailbox,
|
36
|
-
)
|
37
|
-
|
38
|
-
def _handle_msg_rcv(self, msg: pb.Result | spb.ServerResponse) -> None:
|
39
|
-
if isinstance(msg, pb.Result):
|
40
|
-
relay_msg = msg
|
41
|
-
else:
|
42
|
-
relay_msg = msg.result_communicate
|
43
|
-
|
44
|
-
# This is legacy-service logic for returning responses to the client.
|
45
|
-
# A different thread reads the "relay queue" and writes responses on
|
46
|
-
# the socket.
|
47
|
-
if relay_msg.control.relay_id:
|
48
|
-
self._relay_queue.put(relay_msg)
|
49
|
-
else:
|
50
|
-
super()._handle_msg_rcv(msg)
|