optimum-rbln 0.2.1a0__py3-none-any.whl → 0.2.1a2__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.
Files changed (115) hide show
  1. optimum/rbln/__init__.py +3 -10
  2. optimum/rbln/__version__.py +1 -1
  3. optimum/rbln/diffusers/__init__.py +1 -10
  4. optimum/rbln/diffusers/modeling_diffusers.py +1 -10
  5. optimum/rbln/diffusers/models/__init__.py +1 -10
  6. optimum/rbln/diffusers/models/autoencoders/__init__.py +1 -10
  7. optimum/rbln/diffusers/models/autoencoders/autoencoder_kl.py +1 -10
  8. optimum/rbln/diffusers/models/autoencoders/vae.py +1 -10
  9. optimum/rbln/diffusers/models/controlnet.py +1 -10
  10. optimum/rbln/diffusers/models/transformers/__init__.py +1 -10
  11. optimum/rbln/diffusers/models/transformers/transformer_sd3.py +1 -10
  12. optimum/rbln/diffusers/models/unets/__init__.py +1 -10
  13. optimum/rbln/diffusers/models/unets/unet_2d_condition.py +1 -10
  14. optimum/rbln/diffusers/pipelines/__init__.py +1 -10
  15. optimum/rbln/diffusers/pipelines/controlnet/__init__.py +1 -10
  16. optimum/rbln/diffusers/pipelines/controlnet/multicontrolnet.py +1 -10
  17. optimum/rbln/diffusers/pipelines/controlnet/pipeline_controlnet.py +1 -10
  18. optimum/rbln/diffusers/pipelines/controlnet/pipeline_controlnet_img2img.py +1 -10
  19. optimum/rbln/diffusers/pipelines/controlnet/pipeline_controlnet_sd_xl.py +1 -10
  20. optimum/rbln/diffusers/pipelines/controlnet/pipeline_controlnet_sd_xl_img2img.py +1 -10
  21. optimum/rbln/diffusers/pipelines/stable_diffusion/__init__.py +1 -10
  22. optimum/rbln/diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion.py +1 -10
  23. optimum/rbln/diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_img2img.py +1 -10
  24. optimum/rbln/diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_inpaint.py +1 -10
  25. optimum/rbln/diffusers/pipelines/stable_diffusion_3/__init__.py +1 -10
  26. optimum/rbln/diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3.py +1 -10
  27. optimum/rbln/diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3_img2img.py +1 -10
  28. optimum/rbln/diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3_inpaint.py +1 -10
  29. optimum/rbln/diffusers/pipelines/stable_diffusion_xl/__init__.py +1 -10
  30. optimum/rbln/diffusers/pipelines/stable_diffusion_xl/pipeline_stable_diffusion_xl.py +1 -10
  31. optimum/rbln/diffusers/pipelines/stable_diffusion_xl/pipeline_stable_diffusion_xl_img2img.py +1 -10
  32. optimum/rbln/diffusers/pipelines/stable_diffusion_xl/pipeline_stable_diffusion_xl_inpaint.py +1 -10
  33. optimum/rbln/modeling.py +1 -10
  34. optimum/rbln/modeling_base.py +1 -10
  35. optimum/rbln/modeling_config.py +1 -10
  36. optimum/rbln/ops/__init__.py +1 -10
  37. optimum/rbln/ops/attn.py +9 -18
  38. optimum/rbln/ops/flash_attn.py +5 -14
  39. optimum/rbln/ops/kv_cache_update.py +1 -10
  40. optimum/rbln/transformers/__init__.py +5 -12
  41. optimum/rbln/transformers/modeling_alias.py +1 -14
  42. optimum/rbln/transformers/modeling_generic.py +40 -21
  43. optimum/rbln/transformers/modeling_rope_utils.py +28 -0
  44. optimum/rbln/transformers/models/__init__.py +3 -12
  45. optimum/rbln/transformers/models/auto/__init__.py +1 -10
  46. optimum/rbln/transformers/models/auto/auto_factory.py +1 -10
  47. optimum/rbln/transformers/models/auto/modeling_auto.py +1 -10
  48. optimum/rbln/transformers/models/bart/__init__.py +1 -10
  49. optimum/rbln/transformers/models/bart/bart_architecture.py +1 -10
  50. optimum/rbln/transformers/models/bart/modeling_bart.py +14 -13
  51. optimum/rbln/transformers/models/bert/__init__.py +2 -11
  52. optimum/rbln/transformers/models/bert/modeling_bert.py +23 -13
  53. optimum/rbln/transformers/models/clip/__init__.py +1 -10
  54. optimum/rbln/transformers/models/clip/modeling_clip.py +1 -10
  55. optimum/rbln/transformers/models/decoderonly/__init__.py +1 -10
  56. optimum/rbln/transformers/models/decoderonly/decoderonly_architecture.py +54 -69
  57. optimum/rbln/transformers/models/decoderonly/modeling_decoderonly.py +14 -14
  58. optimum/rbln/transformers/models/dpt/__init__.py +1 -10
  59. optimum/rbln/transformers/models/dpt/modeling_dpt.py +1 -10
  60. optimum/rbln/transformers/models/exaone/__init__.py +1 -10
  61. optimum/rbln/transformers/models/exaone/exaone_architecture.py +1 -10
  62. optimum/rbln/transformers/models/exaone/modeling_exaone.py +1 -10
  63. optimum/rbln/transformers/models/gemma/__init__.py +1 -10
  64. optimum/rbln/transformers/models/gemma/gemma_architecture.py +1 -10
  65. optimum/rbln/transformers/models/gemma/modeling_gemma.py +1 -10
  66. optimum/rbln/transformers/models/gpt2/__init__.py +1 -10
  67. optimum/rbln/transformers/models/gpt2/gpt2_architecture.py +1 -10
  68. optimum/rbln/transformers/models/gpt2/modeling_gpt2.py +1 -10
  69. optimum/rbln/transformers/models/llama/__init__.py +1 -10
  70. optimum/rbln/transformers/models/llama/llama_architecture.py +1 -10
  71. optimum/rbln/transformers/models/llama/modeling_llama.py +1 -10
  72. optimum/rbln/transformers/models/llava_next/__init__.py +1 -10
  73. optimum/rbln/transformers/models/llava_next/modeling_llava_next.py +95 -89
  74. optimum/rbln/transformers/models/midm/__init__.py +1 -10
  75. optimum/rbln/transformers/models/midm/midm_architecture.py +1 -10
  76. optimum/rbln/transformers/models/midm/modeling_midm.py +1 -10
  77. optimum/rbln/transformers/models/mistral/__init__.py +1 -10
  78. optimum/rbln/transformers/models/mistral/mistral_architecture.py +1 -10
  79. optimum/rbln/transformers/models/mistral/modeling_mistral.py +1 -10
  80. optimum/rbln/transformers/models/phi/__init__.py +1 -10
  81. optimum/rbln/transformers/models/phi/modeling_phi.py +1 -10
  82. optimum/rbln/transformers/models/phi/phi_architecture.py +1 -10
  83. optimum/rbln/transformers/models/qwen2/__init__.py +1 -10
  84. optimum/rbln/transformers/models/qwen2/modeling_qwen2.py +1 -10
  85. optimum/rbln/transformers/models/qwen2/qwen2_architecture.py +1 -10
  86. optimum/rbln/transformers/models/seq2seq/__init__.py +1 -10
  87. optimum/rbln/transformers/models/seq2seq/modeling_seq2seq.py +1 -10
  88. optimum/rbln/transformers/models/seq2seq/seq2seq_architecture.py +16 -42
  89. optimum/rbln/transformers/models/t5/__init__.py +1 -10
  90. optimum/rbln/transformers/models/t5/modeling_t5.py +14 -15
  91. optimum/rbln/transformers/models/t5/t5_architecture.py +30 -16
  92. optimum/rbln/transformers/models/wav2vec2/__init__.py +1 -10
  93. optimum/rbln/transformers/models/wav2vec2/modeling_wav2vec2.py +1 -10
  94. optimum/rbln/transformers/models/whisper/__init__.py +1 -10
  95. optimum/rbln/transformers/models/whisper/generation_whisper.py +2 -11
  96. optimum/rbln/transformers/models/whisper/modeling_whisper.py +1 -10
  97. optimum/rbln/transformers/models/whisper/whisper_architecture.py +1 -10
  98. optimum/rbln/transformers/models/xlm_roberta/__init__.py +1 -10
  99. optimum/rbln/transformers/models/xlm_roberta/modeling_xlm_roberta.py +24 -12
  100. optimum/rbln/transformers/utils/rbln_quantization.py +6 -10
  101. optimum/rbln/utils/__init__.py +1 -10
  102. optimum/rbln/utils/decorator_utils.py +1 -10
  103. optimum/rbln/utils/hub.py +1 -10
  104. optimum/rbln/utils/import_utils.py +1 -10
  105. optimum/rbln/utils/logging.py +1 -10
  106. optimum/rbln/utils/model_utils.py +1 -10
  107. optimum/rbln/utils/runtime_utils.py +1 -10
  108. optimum/rbln/utils/save_utils.py +2 -10
  109. optimum/rbln/utils/submodule.py +1 -10
  110. {optimum_rbln-0.2.1a0.dist-info → optimum_rbln-0.2.1a2.dist-info}/METADATA +6 -4
  111. optimum_rbln-0.2.1a2.dist-info/RECORD +114 -0
  112. optimum_rbln-0.2.1a2.dist-info/licenses/LICENSE +201 -0
  113. optimum_rbln-0.2.1a0.dist-info/RECORD +0 -114
  114. optimum_rbln-0.2.1a0.dist-info/licenses/LICENSE +0 -288
  115. {optimum_rbln-0.2.1a0.dist-info → optimum_rbln-0.2.1a2.dist-info}/WHEEL +0 -0
@@ -1,114 +0,0 @@
1
- optimum/rbln/__init__.py,sha256=A0ydlEd6-L_ol6wfIFaKl3K93O1j6j9lCO9edPs7MJE,6430
2
- optimum/rbln/__version__.py,sha256=g6hYCmG5a0qiBpcPwa8bCxg_4_YR3PJcAHPGPixF6ho,413
3
- optimum/rbln/modeling.py,sha256=96N6auaSUpxazRNYCOHv2CyC64T8regJrlcMFQGdwqg,8661
4
- optimum/rbln/modeling_base.py,sha256=3EK3eyv011WK7BXT1vt7chZFpgtiOpdd_gF1uDEX5W8,20753
5
- optimum/rbln/modeling_config.py,sha256=LxOVAJheEF_A0C3px7pKZCqm3yfTi3-ZGkXJTFBcSc8,11729
6
- optimum/rbln/diffusers/__init__.py,sha256=YO3hbNDu4jSG1ZL_be8BlQD2IxYH3USBwj71Gdsncnw,3307
7
- optimum/rbln/diffusers/modeling_diffusers.py,sha256=vml1VgNlJAnYIW1pDTI-IGdph1Ji8ZvBlf4k_rw9864,15322
8
- optimum/rbln/diffusers/models/__init__.py,sha256=88U_nTn_zDb9lhtT1sn3MSavubrKHu1MmCA48LKOG78,1751
9
- optimum/rbln/diffusers/models/controlnet.py,sha256=8Hn765YYj5MFs9J4vvseRYkYoH2mYVq6-4VrMsVfUdE,10888
10
- optimum/rbln/diffusers/models/autoencoders/__init__.py,sha256=yc1ABZG3xxzWPDGf0ADEeuSz3Nrq4ZP-CwddQ-VvWCU,1039
11
- optimum/rbln/diffusers/models/autoencoders/autoencoder_kl.py,sha256=psW14vL3nJdfTdIdeZ6mF3ed9U85mZN_cX0691ZmnF8,9595
12
- optimum/rbln/diffusers/models/autoencoders/vae.py,sha256=YdL-vWy9kHRj3fRUjxAnl8eWEYOV2tE0IrxRoIrlkNs,2888
13
- optimum/rbln/diffusers/models/transformers/__init__.py,sha256=2bVk_6nuqcREOIVyR-4w5ksmdWJqyIV7Wxc5x0dqYO8,1048
14
- optimum/rbln/diffusers/models/transformers/transformer_sd3.py,sha256=JmqiTq-2iB4y81HrWFAwsGzJISXbU2d6mtH_y7T-_wE,7683
15
- optimum/rbln/diffusers/models/unets/__init__.py,sha256=-0PyRbBVBFujd7nBh0Z4NOe3RVOlAWyvWLU8r62dqdo,1049
16
- optimum/rbln/diffusers/models/unets/unet_2d_condition.py,sha256=DrWhElKJ-pMDMfLygmSEm1J0_S_NnnyhqJCHzKW3TuA,14396
17
- optimum/rbln/diffusers/pipelines/__init__.py,sha256=7rM-JI07v2yQXnb9CLSG0qkTbswzYSPHRYiPraK2Mw4,2863
18
- optimum/rbln/diffusers/pipelines/controlnet/__init__.py,sha256=k0govvSBxBUR5qpxUGxRMHuQCMX7hXHVZ4EqVRw1LWk,1377
19
- optimum/rbln/diffusers/pipelines/controlnet/multicontrolnet.py,sha256=l53qsOqazIMnCh71m7RVTaeOlCLdEehKu1Bt48z7Umo,4488
20
- optimum/rbln/diffusers/pipelines/controlnet/pipeline_controlnet.py,sha256=ojuRZEBhMb1tVpqOfGALAX4vS7uoTcvQzlCAJtB0kBo,35557
21
- optimum/rbln/diffusers/pipelines/controlnet/pipeline_controlnet_img2img.py,sha256=L-wKwpgGWTXwpUGqQ5YtxsikwhWiU9FqsU8zsp3Tz8k,34058
22
- optimum/rbln/diffusers/pipelines/controlnet/pipeline_controlnet_sd_xl.py,sha256=X_CMEJvtXjC46QvmoEIZSt3ErydfVaDwsmyzXiOkhHI,45149
23
- optimum/rbln/diffusers/pipelines/controlnet/pipeline_controlnet_sd_xl_img2img.py,sha256=HY8lkm8hZynzrJfPC8Fq3f8sFw_LXZLCi8psKyjzK-8,46478
24
- optimum/rbln/diffusers/pipelines/stable_diffusion/__init__.py,sha256=7lX6f9XiqROsArw1X0lGsW06H0TrWKwvM9Ye16vis9Y,1224
25
- optimum/rbln/diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion.py,sha256=r17vhwwuK5VQGZbQ62LlgKu1e7LHapBlHZydIkAlQk0,1270
26
- optimum/rbln/diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_img2img.py,sha256=cIW1wJKFZfr5rqHUf7FjKNIN7425w4LgYt5yeth6AuA,1298
27
- optimum/rbln/diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion_inpaint.py,sha256=rPCj0JsBTrR_XxVh0dpD_8oI3PnYo9ecspGS6t3oYvI,1298
28
- optimum/rbln/diffusers/pipelines/stable_diffusion_3/__init__.py,sha256=I1IbI4uo2ZqA2uLbhqW67wW7-8DwqeE-qPGc3BTL7dQ,1233
29
- optimum/rbln/diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3.py,sha256=6ctjMv6MpRuhTle9L9QTaaBuqmeheOBXJ2CgLiG2LA0,1317
30
- optimum/rbln/diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3_img2img.py,sha256=blojGQ8MLbhPAxQfAv9M9fi3UDNrXJGRs_1Uz2Lqa3U,1345
31
- optimum/rbln/diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3_inpaint.py,sha256=D_xLTE5D9m_wuQdBmcnIdk48Ey5Q_6mzWH3wex1xt4Q,1345
32
- optimum/rbln/diffusers/pipelines/stable_diffusion_xl/__init__.py,sha256=eMHZUxczVow6JBNZGZDu_yLbDQIR5EXOGktvsfii2RY,1239
33
- optimum/rbln/diffusers/pipelines/stable_diffusion_xl/pipeline_stable_diffusion_xl.py,sha256=KOZXQLyMkJ4-6ts2SeAJM_8wzKl9kAJ3LBZjqWuCzkI,1296
34
- optimum/rbln/diffusers/pipelines/stable_diffusion_xl/pipeline_stable_diffusion_xl_img2img.py,sha256=MT5HwEiua0R7xeApk00YM0vJ_EaUrrqPJUzvmizpdwM,1324
35
- optimum/rbln/diffusers/pipelines/stable_diffusion_xl/pipeline_stable_diffusion_xl_inpaint.py,sha256=kRd468mTZX4oOKr_9AZH7u7KflbkfQM9bK2CIJ83PBo,1324
36
- optimum/rbln/ops/__init__.py,sha256=v5MnYLvX82F_mHM2ng8rUprKDbzATt3LnyrPSoMzNeo,1210
37
- optimum/rbln/ops/attn.py,sha256=UfyzBb760e2FAtFMedQQZFCVjlDtQz7wLehqKRuhjT0,10150
38
- optimum/rbln/ops/flash_attn.py,sha256=10fc280953kMX6bQpr_0HD5QdzcDUZOnRNz5h56Xmyw,2726
39
- optimum/rbln/ops/kv_cache_update.py,sha256=skb1fpyzXzVHra1NZJv3wy5PzzaDDhxYD7s3TwGa7RQ,3537
40
- optimum/rbln/transformers/__init__.py,sha256=gug_v2wgSw_9BYmIk9FFmxnXP7VQ6jFt79zdsySkLpg,4501
41
- optimum/rbln/transformers/modeling_alias.py,sha256=ezq5taNeBZDOJxA_R9SqiE06bCIxjtLcYDO3nDrQ9Ek,2199
42
- optimum/rbln/transformers/modeling_generic.py,sha256=InK0I4QWP4w7QrbRPRGJk-pzY4lcBRbxe0sj4sNqIV0,16981
43
- optimum/rbln/transformers/modeling_rope_utils.py,sha256=ob8haNW5f0tPq26xd4sTg-rMrBT9M2VDP7wxt-PkvYY,13087
44
- optimum/rbln/transformers/models/__init__.py,sha256=gffOrFFYG3W8ypxpDiUotU-McvjhytffeuUzunjv4nQ,3971
45
- optimum/rbln/transformers/models/auto/__init__.py,sha256=Dgy4MoIxFxmSwwfTkw75LYGDK9W9kCsGZU4T5qB8qiA,1428
46
- optimum/rbln/transformers/models/auto/auto_factory.py,sha256=JIFL404RVf6kAONhLeEz6z59tdahcUAyVSU8hdZZe0g,7421
47
- optimum/rbln/transformers/models/auto/modeling_auto.py,sha256=lUI7gqBJ28cU_-19q1a8xJPwGr07hQhm7lTPi3Q4dko,4327
48
- optimum/rbln/transformers/models/bart/__init__.py,sha256=F3QY3cwDpHRHxPA0wzzpvxnY1l-p_Xs9yunOZbL0PX4,1068
49
- optimum/rbln/transformers/models/bart/bart_architecture.py,sha256=5pxQhMvqEugdsXMNv3hreFu5WlsKcMPTMkjJlIYvcLI,5873
50
- optimum/rbln/transformers/models/bart/modeling_bart.py,sha256=MWtY1qFR0liOcS8JRg53EZ_FtFJeZrAAJT44PXnCtm0,5491
51
- optimum/rbln/transformers/models/bert/__init__.py,sha256=divBpVNrRAdNAPgnQkGiEZI4oJHCJtLuwdYpMbD3dMM,1034
52
- optimum/rbln/transformers/models/bert/modeling_bert.py,sha256=akbsBTsGTs7wrxPw120ryZspwYkmHAUrM4A8Kr3COw4,4111
53
- optimum/rbln/transformers/models/clip/__init__.py,sha256=iXZfPPIztzMDOkY3fbEzx9dCkFKKtWYXCpLGfjEUeZE,1092
54
- optimum/rbln/transformers/models/clip/modeling_clip.py,sha256=ranLV-NErSUcMEXgR3J4PYaWTMXZaf2qfPabztBLxJM,6099
55
- optimum/rbln/transformers/models/decoderonly/__init__.py,sha256=lok5Px8lr71TWcLCQhmBBH2qUvwgeBe5nYKUljWAoIk,1059
56
- optimum/rbln/transformers/models/decoderonly/decoderonly_architecture.py,sha256=vLJ_Xq5lukte3PzAxBB32cmkhgFtoPSN0U9n9Lf5XJs,37630
57
- optimum/rbln/transformers/models/decoderonly/modeling_decoderonly.py,sha256=B3ZmKnmBR0xAOSFhNXx1Wm6ahZqO2dh9Zi0CsHjM9xQ,25682
58
- optimum/rbln/transformers/models/dpt/__init__.py,sha256=R8OHDxOAYPjkk5t8osaPqRh85Pf1Cg1BtzqesqFRcTI,1045
59
- optimum/rbln/transformers/models/dpt/modeling_dpt.py,sha256=Re15veJwAz3NaUv2GfrHyGUblW0Jcd2KLv23GutFp64,3805
60
- optimum/rbln/transformers/models/exaone/__init__.py,sha256=CuWNwnZrbd_cLU7jDDPqC0kZIqx1ii_BYyQ98CKDag0,1253
61
- optimum/rbln/transformers/models/exaone/exaone_architecture.py,sha256=V91GyW2uP3W-DAdBEmm1eN_Qddg2ibOni7qzJaVYqIY,3423
62
- optimum/rbln/transformers/models/exaone/modeling_exaone.py,sha256=-0VjxpBOQLM3PAmrWCJXkTKQEap577bS_izn-gx8Ew8,2141
63
- optimum/rbln/transformers/models/gemma/__init__.py,sha256=L1Qfr6dufWtoUZND_ofwxXPSxivEvPR8exy16a_nM2o,1042
64
- optimum/rbln/transformers/models/gemma/gemma_architecture.py,sha256=ag0TeVt7pkZ3fNDYfi7TpQbwVvObDNvi7kvybtwEGC8,2359
65
- optimum/rbln/transformers/models/gemma/modeling_gemma.py,sha256=floBHXgogv3iAPyjhjKzbjFHeH67L3FYUKs_wtRm-gM,1924
66
- optimum/rbln/transformers/models/gpt2/__init__.py,sha256=jsOKYXUclG9G6cwUTUX4eeKqjCPfQUwev7TTFIMXS4Y,1040
67
- optimum/rbln/transformers/models/gpt2/gpt2_architecture.py,sha256=aYGzhHChNn9UvCRFLe7LwmdmZGNL5b5_x2X__swOXMA,3260
68
- optimum/rbln/transformers/models/gpt2/modeling_gpt2.py,sha256=lY9mQVEBpymz78Vkk-LpD3sFEJf69GUJaJQ1vH7zhLk,1884
69
- optimum/rbln/transformers/models/llama/__init__.py,sha256=5mX-MuKzVBj6WQeVxyPhtvFTv0jeZXAFfg4RZ2nVUh0,1042
70
- optimum/rbln/transformers/models/llama/llama_architecture.py,sha256=UkwDKUmYUtC9_7W4ffjl6M2RNXTuBAwBWVztIbMw3Fg,1122
71
- optimum/rbln/transformers/models/llama/modeling_llama.py,sha256=D9efkBVUr7TaOkAkiN_qrtQC0AyzLK7cb7UbZpo4XwI,1924
72
- optimum/rbln/transformers/models/llava_next/__init__.py,sha256=3vi2rmTeKBydGRFOtxELhxWixZggFMpGex6xqfMgi-I,1064
73
- optimum/rbln/transformers/models/llava_next/modeling_llava_next.py,sha256=vLNI64l90mAzPdwfMuzF67qhY7PBz2gPI10uYUcpFWE,25884
74
- optimum/rbln/transformers/models/midm/__init__.py,sha256=_6kYchy47frGMZ8uoUspZ9IwrmCBQJ-8kVfXM7xOMew,1249
75
- optimum/rbln/transformers/models/midm/midm_architecture.py,sha256=W6tYWsRx462CGiB7w4AdTHWUP_ej4ck98a1J3jHhwO8,5696
76
- optimum/rbln/transformers/models/midm/modeling_midm.py,sha256=9ysJgW76ikr-23XTG_OD-FwM_7uW56fuTOy30wH233U,2128
77
- optimum/rbln/transformers/models/mistral/__init__.py,sha256=XtuOmzBITjj-H1yctXobJjHF908x1Wlxr_p4hi06v8I,1046
78
- optimum/rbln/transformers/models/mistral/mistral_architecture.py,sha256=18Tp6h-vnKg524AaH3K56G6tKHMZ6uiyVwUg5cXwAGk,1127
79
- optimum/rbln/transformers/models/mistral/modeling_mistral.py,sha256=i3X3HKGNee2ocEmpxdHMxuq7UAOgUs-QWlq2OizqA4g,1954
80
- optimum/rbln/transformers/models/phi/__init__.py,sha256=LrGFTUo1oQnsPSTlxJqAJVVNUdUwq4u_Bf60RUgjLz4,1038
81
- optimum/rbln/transformers/models/phi/modeling_phi.py,sha256=JfpuUB6cign-lqcUoprgq3gbQclZFT9HGV-NYVkSads,1910
82
- optimum/rbln/transformers/models/phi/phi_architecture.py,sha256=d71CIMpijgHjGTQbJEFM7JPlmnzkYmiIW_sWLF9HvnY,4390
83
- optimum/rbln/transformers/models/qwen2/__init__.py,sha256=1PLl1rlF14C6eSk3EZaDfyEHPaC4DZ2vwVlrklTkOYg,1042
84
- optimum/rbln/transformers/models/qwen2/modeling_qwen2.py,sha256=8ldxWKk85snFX_EViA7kgcgKAZ_QSbmQxhlO4yFvhOA,1924
85
- optimum/rbln/transformers/models/qwen2/qwen2_architecture.py,sha256=HafB2wFQn4AJ-nHMFc9ftYHZ0WBREHFqucxM6LrRrlA,1114
86
- optimum/rbln/transformers/models/seq2seq/__init__.py,sha256=Oa11lBWDNQWahqvDco3JIsZldYS-lO8qjpnaGKSfR00,1045
87
- optimum/rbln/transformers/models/seq2seq/modeling_seq2seq.py,sha256=CGpzCM0wcqzTzbEsw_jA0mGloykaxjHPWQIyMnamZOs,15801
88
- optimum/rbln/transformers/models/seq2seq/seq2seq_architecture.py,sha256=PrhCrBZb24nzHClQWzllC3-FFulHQ2u7lkbbRX4a1Nc,19447
89
- optimum/rbln/transformers/models/t5/__init__.py,sha256=ZyK9sxq2_-4Ub6zofOumFUgr8BcCz164RI9yojI98EA,1069
90
- optimum/rbln/transformers/models/t5/modeling_t5.py,sha256=al83l5tKQ-Xp8rCKTHf4uIWV_VfThpfHLgXK0QEomAo,7987
91
- optimum/rbln/transformers/models/t5/t5_architecture.py,sha256=u2QyXd9864naTj7aNLlgrt7ILAFzWXvDJJCMsUtEAIE,6603
92
- optimum/rbln/transformers/models/wav2vec2/__init__.py,sha256=mz4cXqG9b0tDpTAw3qYn3FaJuolX601VmKBE3gohLSw,1043
93
- optimum/rbln/transformers/models/wav2vec2/modeling_wav2vec2.py,sha256=vRDKoujGRvMvyAlJVJhj_EHf0OtQWbZHickFLzGjmDI,4231
94
- optimum/rbln/transformers/models/whisper/__init__.py,sha256=PZ8qeAAFMas2MizwVYFxlpFWd5k1Pe1x-0IJfYAMhT8,1059
95
- optimum/rbln/transformers/models/whisper/generation_whisper.py,sha256=vBtNj7auqjekqwtZQhTIpaauCoFTmufkClz7rRPwZyU,5080
96
- optimum/rbln/transformers/models/whisper/modeling_whisper.py,sha256=1C-_mu47aJgd2sDh82mFj030NegYM-_YajZ2d8J_5xM,16215
97
- optimum/rbln/transformers/models/whisper/whisper_architecture.py,sha256=0JKv4GCDFo_hBL_J_C_AL9UaUTEDE7FGF_zn4b0Q6fk,13552
98
- optimum/rbln/transformers/models/xlm_roberta/__init__.py,sha256=NTj4hCpd8L2_i5DZuV5wp-h8OlTLYVUqTrJxzY_Dg9g,1047
99
- optimum/rbln/transformers/models/xlm_roberta/modeling_xlm_roberta.py,sha256=H5SEtmCAuG6pL1ovl4eLPGZ3tx1IPOilsxKvnbFDN-E,3821
100
- optimum/rbln/transformers/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
101
- optimum/rbln/transformers/utils/rbln_quantization.py,sha256=7islo6dn686UKyGrofvl1FKKibkmzHIxk7ZUGNF1j1E,7802
102
- optimum/rbln/utils/__init__.py,sha256=F6hJP00eV1_hT_IVwqqYwLWcLQAvZbmmrNMJTia3mjI,1106
103
- optimum/rbln/utils/decorator_utils.py,sha256=2yFVaMBDo4F1tHZxZnwcAkhaNm5Q9PXftbSGZWnHXFE,4139
104
- optimum/rbln/utils/hub.py,sha256=o-nA2I_jnB0S2AX0-q9lSpSNcdP_TeqZbHv84Gxxvi4,4592
105
- optimum/rbln/utils/import_utils.py,sha256=ZMRbqZ_UOt7kpTc3LMh8J0CEqgWPV0iz6GZP2nCF69o,4453
106
- optimum/rbln/utils/logging.py,sha256=JI9rTxtC_7mJ8dVOGSF7Mmb8TO0YjzcRV9W_4gKLABQ,3847
107
- optimum/rbln/utils/model_utils.py,sha256=Od3XYZyWIm2Kei_BgImSdtqv5zLW9Ilht7lbCWHyfL4,1672
108
- optimum/rbln/utils/runtime_utils.py,sha256=oGpsxEwI1oEXXCEb3novE2_nRCF3Wh58-G2vk1ukyuI,4093
109
- optimum/rbln/utils/save_utils.py,sha256=k2PwWStUT-eIY6btyM5A98lMxAAPFas3RxeemET6QI4,4001
110
- optimum/rbln/utils/submodule.py,sha256=lzD0HYiuo0i5OGnHQgVFdvB4AwLWnPMRCTtMumGY4bc,4465
111
- optimum_rbln-0.2.1a0.dist-info/METADATA,sha256=efBIm4ovTfE7kHguvu3rndjxjI88UwkFbcMEE38KCN8,5119
112
- optimum_rbln-0.2.1a0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
113
- optimum_rbln-0.2.1a0.dist-info/licenses/LICENSE,sha256=q7yy_9ECqQIxXbh2yiG4Hjalfp0e2-2Pbdc7psKUVs8,18079
114
- optimum_rbln-0.2.1a0.dist-info/RECORD,,
@@ -1,288 +0,0 @@
1
- Software User License Agreement
2
-
3
- This User License Agreement (this "Agreement") is a binding agreement between
4
- [Rebellions Inc.], a Korean company with its office located at [102-801, 239,
5
- Jeongjail-ro, Bundang-gu, Seongnam-si, Gyeonggi-do, Republic of Korea], ("Licensor")
6
- and you, your employer, your employees, or other entity for whose benefit you act as
7
- applicable, as the licensee of the Software (“You” or "Licensee"). DO NOT download,
8
- install, access, copy, or use the entirety or any portion of the Software until
9
- You have read and agreed to the terms and conditions of this Agreement.
10
-
11
- Licensor provides the Software solely on the terms and conditions set forth in
12
- this Agreement and on the condition that Licensee accepts and complies with them.
13
- By downloading, installing, accessing, copying, or using the Software You
14
- (a) accept this Agreement and agree that licensee is legally bound by its terms;
15
- and (b) represent and warrant that: (i) You are of legal age to enter into a
16
- binding agreement; and (ii) if Licensee is a corporation, governmental organization,
17
- or other legal entity, You have the right, power, and authority to enter into this
18
- Agreement on behalf of Licensee and bind Licensee to its terms. If Licensee does
19
- not agree to the terms of this Agreement, Licensor will not and does not license
20
- the Software to Licensee and You must not download, install, access, copy, use or
21
- otherwise utilize the Software or Documentation.
22
-
23
- This Agreement expressly excludes any right, concerning any software that Licensee
24
- did not acquire lawfully or that is not a legitimate, authorized copy of Licensor's
25
- Software.
26
-
27
- 1. Definitions. For purposes of this Agreement, the following terms have the
28
- following meanings:
29
-
30
- "Documentation" means user manuals, technical manuals, and any other materials
31
- provided by Licensor, in printed, electronic, or other form, that describe the
32
- installation, operation, use, or technical specifications of the Software.
33
-
34
- “Hardware” means cloud service provider’s proprietary device(s) supplied by
35
- Licensor and used for cloud services and which use right is purchased by
36
- Licensee for the purpose of its direct use or to provide subsequent services
37
- to end-customers.
38
-
39
- "Intellectual Property Rights" means any and all registered and unregistered
40
- rights granted, applied for, or otherwise now or hereafter in existence under
41
- or related to any patent, copyright, trademark, trade secret, database
42
- protection, or other intellectual property rights laws, and all similar or
43
- equivalent rights or forms of protection, in any part of the world.
44
-
45
- "Licensee" has the meaning set forth in the preamble.
46
-
47
- "Licensor" has the meaning set forth in the preamble.
48
-
49
- "PERSON" MEANS AN INDIVIDUAL, CORPORATION, PARTNERSHIP, JOINT VENTURE, LIMITED
50
- LIABILITY COMPANY, GOVERNMENTAL AUTHORITY, UNINCORPORATED ORGANIZATION, TRUST,
51
- ASSOCIATION, OR OTHER ENTITY.
52
-
53
- "Software" means any one or more of the developer kits, libraries, runtimes
54
- and drivers, together with any necessary updates and accompanying Documentation,
55
- that are provided by Licensor in connection with the use and/or implementation
56
- of one or more of Hardware as provided under this Agreement, excluding any
57
- Third Party files, programs, or other materials.
58
-
59
- "Term" has the meaning set forth in Section 11.
60
-
61
- "Third Party" means any Person other than Licensee or Licensor.
62
-
63
- 2. License Grant and Scope. Subject to and conditioned upon Licensee's strict
64
- compliance with all terms and conditions set forth in this Agreement, Licensor
65
- hereby grants to Licensee a non-exclusive, non-transferable, non-sublicensable,
66
- limited license during the Term to use the Software and Documentation, solely
67
- as set forth in this Section 2 and subject to all conditions and limitations set
68
- forth in Section 3 or elsewhere in this Agreement. This license grants Licensee to:
69
-
70
- (a) Download, access, copy, and install in accordance with the Documentation
71
- one (1) copy of the Software on one (1) computer owned or leased, and controlled
72
- by,Licensee for the sole purpose of utilizing the Hardware. Each such computer
73
- shall be for a single user authorized by Licensee, unless agreed otherwise. All
74
- copies of the Software made by the Licensee:
75
-
76
- (i) will be the exclusive property of the Licensor;
77
-
78
- (ii) will be subject to the terms and conditions of this Agreement; and
79
-
80
- (iii) must include all trademark, copyright, patent, and other Intellectual
81
- Property Rights notices contained in the original.
82
-
83
- (b) Use and run the Software as properly installed in accordance with this
84
- Agreement and the Documentation, solely as set forth in the Documentation and
85
- solely for Licensee's internal business purposes. No source code of the Software
86
- shall be made available or accessible to the Licensee except to the extent
87
- explicitly permitted and necessary for Licensee’s use of the Software under
88
- this Agreement.
89
-
90
- 3. Use Restrictions. Licensee shall not, and shall require its authorized users not
91
- to, directly or indirectly:
92
-
93
- (a) use (including make any copies of) the Software or Documentation beyond the
94
- scope of the license granted under Section 2;
95
-
96
- (b) use the Software separately from the Hardware except explicitly permitted
97
- by the Licensor or independently agreed between Licensor and Licensee;
98
-
99
- (c) provide any other Person, including any subcontractor, independent contractor,
100
- affiliate, or service provider of Licensee, with access to or use of the Software
101
- or Documentation;
102
-
103
- (d) modify, translate, adapt, or otherwise create derivative works or improvements,
104
- whether or not patentable, of the Software or Documentation or any part thereof;
105
-
106
- (e) combine the Software or any part thereof with, or incorporate the Software or
107
- any part thereof in, any other programs;
108
-
109
- (f) reverse engineer, disassemble, decompile, decode, or otherwise attempt to
110
- derive or gain access to the source code of the Software or any part thereof;
111
-
112
- (g) remove, delete, alter, or obscure any trademarks or any copyright, trademark,
113
- patent, or other intellectual property or proprietary rights notices provided on
114
- or with the Software or Documentation, including any copy thereof;
115
-
116
- (h) except as expressly set forth in Section 2(a), copy the Software or
117
- Documentation, in whole or in part;
118
-
119
- (i) rent, lease, lend, sell, sublicense, assign, distribute, publish, transfer,
120
- or otherwise make available the Software, or any features or functionality of the
121
- Software, to any unauthorized Third Party by any way for any reason;
122
-
123
- (j) use the Software or Documentation in, or in association with, the design,
124
- construction, maintenance, or operation of any hazardous environments or systems;
125
-
126
- (k) use the Software or Documentation in violation of any law, regulation, or rule; or
127
-
128
- (l) use the Software or Documentation for purposes of competitive analysis of the
129
- Software, the development of a competing software product or service, or any other
130
- purpose that is to the Licensor's commercial disadvantage.
131
-
132
- 4. Responsibility for Use of Software. Licensee is responsible and liable for all uses
133
- of the Software and Documentation through access thereto provided by Licensee, directly
134
- or indirectly. Specifically, and without limiting the generality of the foregoing,
135
- Licensee is responsible and liable for all actions and failures to take required
136
- actions with respect to the Software and Documentation by any Person to whom Licensee
137
- may provide access to or use of the Software and/or Documentation, whether such access
138
- or use is permitted by or in violation of this Agreement.
139
-
140
- 5. Maintenance and Support Package. Licensee acknowledges that the scope of this Agreement
141
- does not include any right for Licensee to receive maintenance, support, or mapping
142
- services with regard to the Software. Licensor has full discretion to offer maintenance,
143
- support, and/or mapping services for the Software on a separate subscription basis (the
144
- “Support Subscription”).
145
-
146
- 6. Intellectual Property Rights. Licensee acknowledges and agrees that the Software and
147
- Documentation are provided under license, and not sold, to Licensee. Licensee does not
148
- acquire any ownership interest in the Software or Documentation under this Agreement,
149
- or any other rights thereto, other than to use the same in accordance with the license
150
- granted and subject to all terms, conditions, and restrictions under this Agreement.
151
- Licensor and its licensors and service providers reserve and shall retain their entire
152
- right, title, and interest in and to the Software and all Intellectual Property Rights
153
- arising out of or relating to the Software, except as expressly granted to the Licensee
154
- in this Agreement. Licensee shall safeguard all Software (including all copies thereof)
155
- from infringement, misappropriation, theft, misuse, or unauthorized access.
156
-
157
- 7. Term and Termination.
158
-
159
- (a) This Agreement and the license granted hereunder shall remain in effect until
160
- terminated as set forth herein (the "Term").
161
-
162
- (b) Licensor may terminate this Agreement, effective immediately, if its separate
163
- agreement for use of the Hardware is terminated.
164
-
165
- (c) Licensor may terminate this Agreement without cause and effective immediately
166
- upon written notice to Licensee.
167
-
168
- (d) Licensor may terminate this Agreement, effective upon notice to Licensee, if
169
- Licensee fails to comply with any of the terms and conditions in this Agreement
170
- during the Term.
171
-
172
- (e) Upon expiration or termination of this Agreement, the license granted hereunder
173
- shall also terminate, and Licensee shall cease using and destroy all copies of the
174
- Software and Documentation.
175
-
176
- (f) Licensor may suspend the Software licensed hereunder or terminate this Agreement,
177
- if the Licensee commences, participates or threatens to commence or participate in
178
- any legal proceeding against Licensor.
179
-
180
- 8. Exclusion of Warranties. The Software is provided “as is” without any express or
181
- implied warranty of any kind, including warranties of merchantability, non-infringement,
182
- or fitness for a particular purpose. Licensor does not warrant or assume responsibility
183
- for the accuracy or completeness of any information, text, graphics, links, or other
184
- items within the Software.
185
-
186
- 9. Limitation of Liability. TO THE FULLEST EXTENT PERMITTED UNDER APPLICABLE LAW:
187
-
188
- (a) IN NO EVENT WILL LICENSOR OR ITS AFFILIATES, OR ANY OF ITS OR THEIR RESPECTIVE
189
- LICENSORS OR SERVICE PROVIDERS, BE LIABLE TO LICENSEE OR ANY THIRD PARTY FOR ANY USE,
190
- INTERRUPTION, DELAY, OR INABILITY TO USE THE SOFTWARE; LOST REVENUES OR PROFITS;
191
- DELAYS, INTERRUPTION, OR LOSS OF SERVICES, BUSINESS, OR GOODWILL; LOSS OR CORRUPTION
192
- OF DATA; LOSS RESULTING FROM SYSTEM OR SYSTEM SERVICE FAILURE, MALFUNCTION, OR
193
- SHUTDOWN; FAILURE TO ACCURATELY TRANSFER, READ, OR TRANSMIT INFORMATION; FAILURE TO
194
- UPDATE OR PROVIDE CORRECT INFORMATION; SYSTEM INCOMPATIBILITY OR PROVISION OF INCORRECT
195
- COMPATIBILITY INFORMATION; OR BREACHES IN SYSTEM SECURITY; OR FOR ANY CONSEQUENTIAL,
196
- INCIDENTAL, INDIRECT, EXEMPLARY, SPECIAL, OR PUNITIVE DAMAGES, WHETHER ARISING OUT
197
- OF OR IN CONNECTION WITH THIS AGREEMENT, BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE),
198
- OR OTHERWISE, REGARDLESS OF WHETHER SUCH DAMAGES WERE FORESEEABLE AND WHETHER OR NOT THE
199
- LICENSOR WAS ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
200
-
201
- (b) THE LIMITATIONS SET FORTH IN SECTION 9(a) SHALL APPLY EVEN IF THE LICENSEE'S
202
- REMEDIES UNDER THIS AGREEMENT FAIL OF THEIR ESSENTIAL PURPOSE.
203
-
204
- 10. Open Source Statement. The Software may include open source software (“OSS”) licensed
205
- pursuant to OSS license agreement(s) identified in the OSS comments in the applicable
206
- source code file(s) or file header(s) provided with or otherwise associated with the
207
- Software. Neither Licensee nor any OEM, ODM, customer, distributor or other end user
208
- may subject any proprietary portion of the Software to any OSS license obligations
209
- including, without limitation, combining or distributing the Software with OSS in a
210
- manner that subjects Licensee, the Software or any portion thereof to any OSS license
211
- obligation. Nothing in this Agreement limits any rights under, or grants rights that
212
- supersede, the terms of any applicable OSS license.
213
-
214
- 11. Export Regulation. The Software and Documentation may be subject to export control
215
- laws of relevant jurisdictions. The Licensee shall not, directly or indirectly, export,
216
- re-export, or release the Software or Documentation to, or make the Software or
217
- Documentation accessible from, any jurisdiction or country to which export, re-export,
218
- or release is prohibited by law, rule, or regulation. The Licensee shall comply with
219
- all applicable laws, regulations, and rules, and complete all required undertakings
220
- (including obtaining any necessary export license or other governmental approval),
221
- prior to exporting, re-exporting, releasing, or otherwise making the Software or
222
- Documentation available outside the Republic of Korea.
223
-
224
- 12. Miscellaneous.
225
-
226
- (a) This Agreement and any dispute arising out of or relating to it will be governed
227
- by the laws of the Republic of Korea, without regard to conflict of laws principles.
228
- The Parties exclude the application of the United Nations Convention on Contracts for
229
- the International Sale of Goods (1980). The Seoul Central District Court will have
230
- exclusive jurisdiction over any dispute arising out of or relating to this Agreement.
231
- The Parties consent to personal jurisdiction and venue in the aforementioned court.
232
- A Party that obtains a judgment against the other Party in the courts identified in
233
- this section may enforce that judgment in any court that has jurisdiction over the
234
- Parties.
235
-
236
- (b) Licensor will not be responsible or liable to Licensee, or deemed in default or
237
- breach hereunder by reason of any failure or delay in the performance of its obligations
238
- hereunder where such failure or delay is due to strikes, labor disputes, civil
239
- disturbances, riot, rebellion, invasion, epidemic, hostilities, war, terrorist attack,
240
- embargo, natural disaster, acts of God, flood, fire, sabotage, fluctuations or
241
- non-availability of electrical power, heat, light, air conditioning, or Licensee
242
- equipment, loss and destruction of property, or any other circumstances or causes
243
- beyond Licensor's reasonable control.
244
-
245
- (c) This Agreement, together with all annexes, schedules, and exhibits attached hereto
246
- and all other documents that are incorporated by reference herein, constitutes the sole
247
- and entire agreement between Licensee and Licensor with respect to the subject matter
248
- contained herein, and supersedes all prior and contemporaneous understandings,
249
- agreements, representations, and warranties, both written and oral, with respect to
250
- such subject matter.
251
-
252
- (d) Licensee shall not assign or otherwise transfer any of its rights, or delegate or
253
- otherwise transfer any of its obligations or performance, under this Agreement, in
254
- each case whether voluntarily, involuntarily, by operation of law, or otherwise,
255
- without Licensor's prior written consent, which consent Licensor may give or withhold
256
- in its sole discretion. For purposes of the preceding sentence, and without limiting
257
- its generality, any merger, consolidation, or reorganization involving Licensee
258
- (regardless of whether Licensee is a surviving or disappearing entity) will be deemed
259
- to be a transfer of rights, obligations, or performance under this Agreement for which
260
- Licensor's prior written consent is required. No delegation or other transfer will
261
- relieve Licensee of any of its obligations or performance under this Agreement.
262
- Any purported assignment, delegation, or transfer in violation of this Section is void.
263
- Licensor may freely assign or otherwise transfer all or any of its rights, or delegate
264
- or otherwise transfer all or any of its obligations or performance, under this Agreement
265
- without Licensee's consent. This Agreement is binding upon and inures to the benefit
266
- of the parties hereto and their respective permitted successors and assigns.
267
-
268
- (e) This Agreement is for the sole benefit of the parties hereto and their respective
269
- successors and permitted assigns and nothing herein, express or implied, is intended
270
- to or shall confer on any other Person any legal or equitable right, benefit, or remedy
271
- of any nature whatsoever under or by reason of this Agreement.
272
-
273
- (f) No waiver by any party of any of the provisions hereof shall be effective unless
274
- explicitly set forth in writing and signed by the party so waiving. Except as otherwise
275
- set forth in this Agreement, no failure to exercise, or delay in exercising, any right,
276
- remedy, power, or privilege arising from this Agreement shall operate or be construed
277
- as a waiver thereof; nor shall any single or partial exercise of any right, remedy,
278
- power, or privilege hereunder preclude any other or further exercise thereof or the
279
- exercise of any other right, remedy, power, or privilege.
280
-
281
- (g) If any term or provision of this Agreement is invalid, illegal, or unenforceable in
282
- any jurisdiction, such invalidity, illegality, or unenforceability shall not affect
283
- any other term or provision of this Agreement or invalidate or render unenforceable
284
- such term or provision in any other jurisdiction.
285
-
286
- (h) The headings in this Agreement are for reference only and do not affect the
287
- interpretation of this Agreement.
288
-