d9d 0.1.1__py3-none-any.whl → 0.2.0__py3-none-any.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.
@@ -5,12 +5,12 @@ from torch.autograd.profiler import record_function
5
5
 
6
6
  from d9d.core.dist_context import REGULAR_DOMAIN, DistributedContext
7
7
  from d9d.core.sharding import ShardingSpec, shard_spec_on_dim, shard_tree
8
- from d9d.pipelining.api import PipelineSchedule, PipelineShardingSpec
8
+ from d9d.pipelining.api import PipelineLossFn, PipelineResultFn, PipelineSchedule, PipelineShardingSpec
9
9
  from d9d.pipelining.infra.stage import PipelineStage
10
10
 
11
11
  from .action import ActionBase, ActionContext
12
+ from .callback import PipelineLossHandler, PipelineResultHandler
12
13
  from .communications import PipelineCommunicationHandler
13
- from .loss import LossFn, PipelineLossHandler
14
14
 
15
15
 
16
16
  class PipelineScheduleExecutor(PipelineSchedule):
@@ -21,7 +21,7 @@ class PipelineScheduleExecutor(PipelineSchedule):
21
21
  dist_context: DistributedContext,
22
22
  stages: list[PipelineStage],
23
23
  num_microbatches: int,
24
- loss_fn: LossFn | None,
24
+ callback: PipelineLossFn | PipelineResultFn,
25
25
  program: dict[int, list[ActionBase]]
26
26
  ):
27
27
  """
@@ -31,7 +31,7 @@ class PipelineScheduleExecutor(PipelineSchedule):
31
31
  dist_context: The distributed context.
32
32
  stages: List of stages managed by this executor.
33
33
  num_microbatches: Number of microbatches the global batch is split.
34
- loss_fn: Function to compute loss.
34
+ callback: Function to compute loss or process pipeline results.
35
35
  program: The execution plan mapping rank ID to a list of actions.
36
36
  """
37
37
 
@@ -45,10 +45,12 @@ class PipelineScheduleExecutor(PipelineSchedule):
45
45
  ) for sub_program in program.values())
46
46
 
47
47
  self._comm_handler = PipelineCommunicationHandler(self._stages)
48
- if loss_fn is None:
49
- self._loss_handler = None
48
+
49
+ self._callback: PipelineLossHandler | PipelineResultHandler
50
+ if self._has_backward:
51
+ self._callback = PipelineLossHandler(callback)
50
52
  else:
51
- self._loss_handler = PipelineLossHandler(loss_fn)
53
+ self._callback = PipelineResultHandler(callback)
52
54
 
53
55
  self._input_data_sharding_spec: ShardingSpec | None = None
54
56
  self._input_kwargs_sharding_spec: ShardingSpec | None = None
@@ -101,7 +103,7 @@ class PipelineScheduleExecutor(PipelineSchedule):
101
103
  with record_function(str(action)):
102
104
  self._dist_ctx.logger.debug(f"Running pipeline action {action}")
103
105
  action.apply(ActionContext(
104
- loss=self._loss_handler,
106
+ callback=self._callback,
105
107
  stages=self._stages,
106
108
  communications=self._comm_handler,
107
109
  pipeline_inputs_microbatches=inputs_shard,
@@ -0,0 +1,70 @@
1
+ from typing import Any
2
+
3
+ import torch
4
+ from torch import nn
5
+
6
+ from d9d.pipelining.api import PipelineLossFn, PipelineResultFn, PipelineSchedule, PipelineShardingSpec
7
+
8
+
9
+ class OfflinePipelineExecutor(PipelineSchedule):
10
+ """
11
+ Executes the model immediately without pipeline parallelism.
12
+
13
+ This schedule treats the execution as a single stage with a single microbatch,
14
+ running the forward and optionally backward pass directly. This is primarily
15
+ used for single-device execution within the pipeline abstraction.
16
+ """
17
+
18
+ def __init__(
19
+ self,
20
+ model: nn.Module,
21
+ callback: PipelineLossFn | PipelineResultFn,
22
+ do_backward: bool
23
+ ):
24
+ """
25
+ Constructs the offline pipeline executor.
26
+
27
+ Args:
28
+ model: The PyTorch module to execute.
29
+ callback: Function to compute loss or process pipeline results.
30
+ do_backward: Whether to execute the backward pass.
31
+ """
32
+
33
+ self._model = model
34
+ self._callback = callback
35
+ self._do_backward = do_backward
36
+
37
+ def configure_buffers(
38
+ self,
39
+ inputs: dict[str, torch.Tensor],
40
+ kwargs: dict[str, Any],
41
+ sharding_spec: PipelineShardingSpec | None
42
+ ):
43
+ pass
44
+
45
+ def _forward_only(
46
+ self,
47
+ inputs: dict[str, torch.Tensor],
48
+ kwargs: dict[str, Any]
49
+ ):
50
+ result = self._model(**inputs, **kwargs)
51
+ self._callback(result, 0) # microbatch=0
52
+
53
+ def _forward_backward(
54
+ self,
55
+ inputs: dict[str, torch.Tensor],
56
+ kwargs: dict[str, Any]
57
+ ):
58
+ result = self._model(**inputs, **kwargs)
59
+ loss = self._callback(result, 0) # microbatch=0
60
+ del result # do not peak memory
61
+ loss.backward()
62
+
63
+ def step(self, inputs: dict[str, torch.Tensor], kwargs: dict[str, Any]):
64
+ result = self._model(**inputs, **kwargs)
65
+ processing_result = self._callback(result, 0)
66
+ if self._do_backward:
67
+ if not isinstance(processing_result, torch.Tensor):
68
+ raise ValueError("Loss should be torch.Tensor")
69
+ del result # do not peak memory
70
+ processing_result.backward()
@@ -1,8 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: d9d
3
- Version: 0.1.1
3
+ Version: 0.2.0
4
4
  Summary: d9d - d[istribute]d - distributed training framework based on PyTorch that tries to be efficient yet hackable
5
5
  License: Apache-2.0
6
+ License-File: LICENSE
6
7
  Author: Maksim Afanasyev
7
8
  Author-email: mr.applexz@gmail.com
8
9
  Requires-Python: >=3.11,<3.15
@@ -60,12 +60,12 @@ d9d/kernel/stochastic/ops/__init__.py,sha256=aOGiKLx82ZzW42fhTabz0rD7OSYyX0JIZkh
60
60
  d9d/kernel/stochastic/ops/round.py,sha256=w511LzP9a_p5oJWjQmD4QHAVzvpLNK8xnsHbLkMgDnI,545
61
61
  d9d/kernel/swiglu/__init__.py,sha256=bYHPadWelNxz9NVCYiDvm_igMZ-gnOLutSXQlVYbyLk,61
62
62
  d9d/kernel/swiglu/function.py,sha256=KMpDFEIN9CUmbKT1Z3Eqy9hS_2cvdMxmuqD-dzHleBo,918
63
- d9d/kernel/swiglu/op.py,sha256=r0AS6ckIl0R_0TeW6xDSJWgJqS2_TWa_ZrulwuOTxxo,4454
63
+ d9d/kernel/swiglu/op.py,sha256=YM-QxPb_KtlL4LscjwozhiToNL4ma3tbfdLIFdr0400,4877
64
64
  d9d/loop/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
65
  d9d/loop/auto/__init__.py,sha256=zvpOu934BCSblPK7N03VHEKUzz4EoiEmDEhDpACm7D0,279
66
66
  d9d/loop/auto/auto_lr_scheduler.py,sha256=53244OD5ooBpx6lch9SW0KDNVamLhPsCguxuVOKjpeY,1419
67
67
  d9d/loop/auto/auto_optimizer.py,sha256=2823wmCdFydERuQKVu5jDMuKAjb0volA3-XNdE6ntZc,6035
68
- d9d/loop/component/__init__.py,sha256=IgVUupHm-nPEkLx3BNcDClJrxwVqVm62Bo5g47o8QJM,1090
68
+ d9d/loop/component/__init__.py,sha256=3muVeGmt2W1lTBZ6xB4PGRnrBnl7VPIerpmOG4q4IJo,1253
69
69
  d9d/loop/component/batch_maths.py,sha256=IYWf952-8aOuoZXVKWPgK7vgPYnn0It3QpXK-tg4cho,3962
70
70
  d9d/loop/component/checkpointer.py,sha256=3yhjMutYzeQLxkHYzMe1wpKcNpIeVAv_wtMpQjQAa5Y,5794
71
71
  d9d/loop/component/data_loader_factory.py,sha256=XOI9_XLNmqjMkmQguPM4g_-LbhANNS73hGPE_6fCyOQ,8029
@@ -74,25 +74,26 @@ d9d/loop/component/gradient_clipper.py,sha256=0nDGELrwczlqCpHojeC4N3j7dMUhELnod2
74
74
  d9d/loop/component/gradient_manager.py,sha256=rtuDooke4HeoBoMXr_YqxSYecZHSzr-pAbXGmSsl10Q,4976
75
75
  d9d/loop/component/job_logger.py,sha256=CZx9EGnILwGQ8mqTaKstjVp_n_5_UO5fQnTEWuJAdsM,5183
76
76
  d9d/loop/component/job_profiler.py,sha256=qTK9LUAbLzuvwfkA_UyOVUMsO5s6cy61x7ZeuWQmiCQ,1835
77
- d9d/loop/component/loss_computer.py,sha256=J1SBzFRjyDZ7QbE7rfMvxyzLjtod5E0NynwNJqJ-qlE,2845
78
77
  d9d/loop/component/model_stage_exporter.py,sha256=g1f7WDmsJ6MAN_H8ymh4B3MHIURibUhO_3Mvespwfpc,1332
79
- d9d/loop/component/model_stage_factory.py,sha256=e1BpmjMwfot9V1pI5drcHCmrAvMJTyb0AwXfu_2MgTM,9831
78
+ d9d/loop/component/model_stage_factory.py,sha256=ocQcjpMFxNdCTv97JNRNogHbFL9F3KiiO2vUkKHUbso,8326
80
79
  d9d/loop/component/optimizer_factory.py,sha256=fjqknSmlYbcxVogO2YgZht6-YhcMvfIh0AExFQ-aDdw,3636
80
+ d9d/loop/component/pipeline_result_processing.py,sha256=21bzX_FC5Bhn0iEETkFX1ubx4Emec1h_bCm8ONIvBsM,4618
81
81
  d9d/loop/component/stepper.py,sha256=5IM-5uvXswfB3---Kk_Dpi2iNBjmOCWqDXGl9v263wU,1804
82
+ d9d/loop/component/task_operator.py,sha256=NVDTUfcavxJOxHIpsYKnniAVfsP0FVRoEoMnWql7ywU,5772
82
83
  d9d/loop/component/timeout_manager.py,sha256=S7bF2iTQVkfvvhzR6wUVXuD2OCTzOMkzFt95eCs-MUE,1679
83
- d9d/loop/component/train_task_operator.py,sha256=cpeF_16H6Cj5WdLYogr34NI-ko8Q2MO-BSKzsgf_H-o,5438
84
84
  d9d/loop/config/__init__.py,sha256=jjikLZrT8zqGcq_LD02T1qd1np0O4j0zaDKI_XUF0_g,824
85
- d9d/loop/config/config.py,sha256=Pzb2c1f_z66_0KFyc_L-_abeK3rxezg_KNMtCY8BXR8,7039
85
+ d9d/loop/config/config.py,sha256=50l3elFVVCeV7FRpGn6hKzCNnS-6tYpLKSj04jyAPF4,7032
86
86
  d9d/loop/config/types.py,sha256=JZ0A8-pytCV65drry17vmfWWzT9cyzQ6V4uU_ercru0,652
87
87
  d9d/loop/control/__init__.py,sha256=x_42CRVmwh1RKfh238QalrycFY7wDa_L7pY8wFnqgI0,1758
88
88
  d9d/loop/control/dataset_provider.py,sha256=KELIAbkVthBP78XUE3E3T3M8zUL1l0ra3Ezr6_FDInU,1605
89
89
  d9d/loop/control/lr_scheduler_provider.py,sha256=0hxJxIhvlFl-z22rZpeWryQ79LZK8VTU6hx8-oeAQUw,1177
90
90
  d9d/loop/control/model_provider.py,sha256=SAIFJwF8rMk4YGEAzFVTmWkIqPBjlrUxvqgK8F_jo-M,4628
91
91
  d9d/loop/control/optimizer_provider.py,sha256=M7DL_6298avKGsjto7j4VparfXQcIHvZ2CiYfSlV7T0,1039
92
- d9d/loop/control/task.py,sha256=YC3Itf_qo7WZmPrX3TVVIaoYVUsf18j56majdO6icjk,8150
93
- d9d/loop/run/__init__.py,sha256=wQlVo3TayCwoHaONBsfwsAPBu3uue8ckHaM4YDqIkMc,106
94
- d9d/loop/run/train.py,sha256=XbCa9r7xpVbVPb0dnD9uutPDDfdOZi1JhtD7dQwehOw,12244
95
- d9d/loop/state.py,sha256=s0Iz6W8iHO9md_3QqbQouqyVz1r7vt8xvcj1AoLqtvU,5017
92
+ d9d/loop/control/task.py,sha256=4WBVQyFZVsjnE_u2fcIgZL1BUSo49GVP9RQCCE2J2WI,8168
93
+ d9d/loop/run/__init__.py,sha256=PAOyHFnEmDW0l1B6kkebkm80uOp_29uuDmzk-362SHQ,208
94
+ d9d/loop/run/inference.py,sha256=NSBfVM01bwj7sRRhQ8BmKXvI3KsLYv6_ylR-urRh6Rc,8384
95
+ d9d/loop/run/train.py,sha256=Xq8pTqBJf1zzKmx3MoLSMu-yZcm9NfGivYI2D2Uw41E,12167
96
+ d9d/loop/state.py,sha256=h4npRLm_cLW5nCbyvCx-6tkEPsAg2RWCBCHNAEVEjT4,5162
96
97
  d9d/lr_scheduler/__init__.py,sha256=ZQke_m2Zl1adfFGp3wCvYQo-CO_c3bpVePrVGAERhfU,140
97
98
  d9d/lr_scheduler/piecewise/__init__.py,sha256=8SPGeMnZSF40pPjfEjkhAd5fb4e8fYjeNdF-pRuC1lM,496
98
99
  d9d/lr_scheduler/piecewise/builder.py,sha256=94ufa-aoL90xUIGu_W2XwkWPIkE53KHeUfNvwK61zew,4974
@@ -191,13 +192,14 @@ d9d/peft/lora/config.py,sha256=KElokzzMJeh91SwRrxj-ZTzSLHF8ZVSb8ehNfYKFFpg,801
191
192
  d9d/peft/lora/layer.py,sha256=7i3QGR4QveJ_Tk_yNl_QZuLzK-l1y9xp5O0N6DRtOrE,4990
192
193
  d9d/peft/lora/method.py,sha256=psYYkSvL0telO2ULM8dtDTlf4H87lTtn_4hlB07M-iw,4123
193
194
  d9d/pipelining/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
194
- d9d/pipelining/api/__init__.py,sha256=6vwCq9PiJWkREzoM68yO-UySf2YEy6BK14oph3IOuHo,439
195
+ d9d/pipelining/api/__init__.py,sha256=VMO6X2XTcxkNSuk6jWBX9-TZSj-0i6qLJzPk1KXwB2g,537
195
196
  d9d/pipelining/api/module.py,sha256=WhDa4GTGoaL00XMoPAQB-XdjcmGiL_U0T9mTwRSMBN8,5280
196
197
  d9d/pipelining/api/schedule.py,sha256=m6FCe1Yh2cOYGxShirq3HakDlRnQyAIwePA5-UU_xxE,1629
197
198
  d9d/pipelining/api/sharding.py,sha256=XhaRarZOHf6nDqwnzLvz0SPh9VHi6kDiQkkx_gRNoHY,204
199
+ d9d/pipelining/api/types.py,sha256=yFQXFXDUh27qbtYtpM80-aIen9LaUY-TmmPtJXrHbcc,783
198
200
  d9d/pipelining/factory/__init__.py,sha256=_tN9unIv9bHojC26MKt34W9ra-zMdGrfS0i0a4JyurU,602
199
201
  d9d/pipelining/factory/config.py,sha256=MW8ARW0gPZGN9jsPPq-nTSFaGYMKPDwIBO06juy4DTE,2565
200
- d9d/pipelining/factory/factory.py,sha256=E_eUyvYP6YXMzy8QdFUoBfpFUkA39eFk7zeYsidqGzU,3920
202
+ d9d/pipelining/factory/factory.py,sha256=GT4wjxRHeZuANRGAcWhezxZWyQZpLjFF0G05Furvs3Y,5344
201
203
  d9d/pipelining/factory/registry.py,sha256=k8nBSM2vlYE_fAo4pV7zzX9iqOopLJ0YugeieYwwU10,3163
202
204
  d9d/pipelining/infra/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
203
205
  d9d/pipelining/infra/schedule/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -206,11 +208,12 @@ d9d/pipelining/infra/schedule/component/program/__init__.py,sha256=c_FBMR7y2fo8H
206
208
  d9d/pipelining/infra/schedule/component/program/base.py,sha256=tVJNJr6IWSg-qT72Nci39Z4eCX0ggO5oJcJocwJFOOk,1010
207
209
  d9d/pipelining/infra/schedule/component/program/communications.py,sha256=2Q-4LCVWgB1TAdf1-GcxRTo8GZuh4ljlHyVusTl25Qo,6893
208
210
  d9d/pipelining/infra/schedule/component/program/topology.py,sha256=4c47yx_9-tx37ySCzdK-DXpJi0e42xC_Fkdg2Z2cwQI,2364
209
- d9d/pipelining/infra/schedule/component/runtime/__init__.py,sha256=XouJZVjEfekcoeRWyzjGHD0D8yRg90JaXVeqojRnJPI,633
210
- d9d/pipelining/infra/schedule/component/runtime/action.py,sha256=8Rgtk5pZjXCbsjoJxhArkEFIeNzY1ZWvESCgLnA8Hyg,10733
211
+ d9d/pipelining/infra/schedule/component/runtime/__init__.py,sha256=N099hCqZ-h9guH8D014XKYW9rJ4uDO0hRLGYSkxaFb8,708
212
+ d9d/pipelining/infra/schedule/component/runtime/action.py,sha256=VJMV-VC9PFCOsfKVM4qrg6maeaQtEeqLnArV7cjLLC4,10713
213
+ d9d/pipelining/infra/schedule/component/runtime/callback.py,sha256=49rzY87Y5JUGPetWup6X18G-JJuXj_zh088TY_vPl48,2290
211
214
  d9d/pipelining/infra/schedule/component/runtime/communications.py,sha256=X1vSYnBHY4uBB0TvAApiSbdibJxxwNV-EZ3l_LXRnC4,3344
212
- d9d/pipelining/infra/schedule/component/runtime/executor.py,sha256=QAbvdA6vfS909jririg_Rw_FK2H6aZUYyAILGOpGHU8,4392
213
- d9d/pipelining/infra/schedule/component/runtime/loss.py,sha256=DGATscTXF2fKG7M2UiagpnVYvUI3DSmKKOMH1QLvH0k,1646
215
+ d9d/pipelining/infra/schedule/component/runtime/executor.py,sha256=mirKslQO6buEDT1oXRR7MJzJg5Wsubh9SHRqLwVbHCc,4587
216
+ d9d/pipelining/infra/schedule/component/runtime/offline.py,sha256=ruZ-XxJb9cu57960vmwe7O99D5zs2nRkCge0a8At7ik,2231
214
217
  d9d/pipelining/infra/schedule/program/__init__.py,sha256=991C1CTiAoC93hxsZxTJoBLBFUa-9phcNIIH8SUw4vA,447
215
218
  d9d/pipelining/infra/schedule/program/bfs.py,sha256=wiTGaFaUJ2O9nAB3qTtgH1AM8NZrZbF3v5bqDY5VQvw,3092
216
219
  d9d/pipelining/infra/schedule/program/dualpipev.py,sha256=GDuNHmqjOjTHgee18EE4py_9p97pBg91BJDcYh5HlSo,7875
@@ -233,6 +236,7 @@ d9d/tracker/provider/aim/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
233
236
  d9d/tracker/provider/aim/config.py,sha256=7-Kgt2XhdNRhgxLYEWpB27uhgB-RBiPrGvH6S2L3rIM,672
234
237
  d9d/tracker/provider/aim/tracker.py,sha256=g34BdjIYEftEwuK2oTKKzHLN3dpG7-i14zhXIF_onIo,3110
235
238
  d9d/tracker/provider/null.py,sha256=c1nvUaOz8RbRY8XzwSPTi7t0lSsmdlwGAYfYgprwaf8,1440
236
- d9d-0.1.1.dist-info/METADATA,sha256=1o7KCl_ts0apFZFdGBcI2kiZqvLs0QricCCQX1q-jos,6437
237
- d9d-0.1.1.dist-info/WHEEL,sha256=kJCRJT_g0adfAJzTx2GUMmS80rTJIVHRCfG0DQgLq3o,88
238
- d9d-0.1.1.dist-info/RECORD,,
239
+ d9d-0.2.0.dist-info/METADATA,sha256=Uaqgvq05qTQMSGT1QpFzoljNkNYFmFC1S0yfXcl5bM8,6459
240
+ d9d-0.2.0.dist-info/WHEEL,sha256=kJCRJT_g0adfAJzTx2GUMmS80rTJIVHRCfG0DQgLq3o,88
241
+ d9d-0.2.0.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
242
+ d9d-0.2.0.dist-info/RECORD,,
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
File without changes