test-ylang 0.8.0__tar.gz → 0.9.0__tar.gz

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.

Potentially problematic release.


This version of test-ylang might be problematic. Click here for more details.

Files changed (72) hide show
  1. {test_ylang-0.8.0/test_ylang.egg-info → test_ylang-0.9.0}/PKG-INFO +1 -1
  2. {test_ylang-0.8.0 → test_ylang-0.9.0/test_ylang.egg-info}/PKG-INFO +1 -1
  3. {test_ylang-0.8.0 → test_ylang-0.9.0}/LICENSE +0 -0
  4. {test_ylang-0.8.0 → test_ylang-0.9.0}/MANIFEST.in +0 -0
  5. {test_ylang-0.8.0 → test_ylang-0.9.0}/README.md +0 -0
  6. {test_ylang-0.8.0 → test_ylang-0.9.0}/pyproject.toml +0 -0
  7. {test_ylang-0.8.0 → test_ylang-0.9.0}/requirements.txt +0 -0
  8. {test_ylang-0.8.0 → test_ylang-0.9.0}/setup.cfg +0 -0
  9. {test_ylang-0.8.0 → test_ylang-0.9.0}/setup.py +0 -0
  10. {test_ylang-0.8.0 → test_ylang-0.9.0}/test_ylang.egg-info/SOURCES.txt +0 -0
  11. {test_ylang-0.8.0 → test_ylang-0.9.0}/test_ylang.egg-info/dependency_links.txt +0 -0
  12. {test_ylang-0.8.0 → test_ylang-0.9.0}/test_ylang.egg-info/requires.txt +0 -0
  13. {test_ylang-0.8.0 → test_ylang-0.9.0}/test_ylang.egg-info/top_level.txt +0 -0
  14. {test_ylang-0.8.0 → test_ylang-0.9.0}/tests/__init__.py +0 -0
  15. {test_ylang-0.8.0 → test_ylang-0.9.0}/tests/core/__init__.py +0 -0
  16. {test_ylang-0.8.0 → test_ylang-0.9.0}/tests/core/test_adapters.py +0 -0
  17. {test_ylang-0.8.0 → test_ylang-0.9.0}/tests/core/test_core_tpu.py +0 -0
  18. {test_ylang-0.8.0 → test_ylang-0.9.0}/tests/core/test_disagg_executor.py +0 -0
  19. {test_ylang-0.8.0 → test_ylang-0.9.0}/tests/core/test_disagg_utils.py +0 -0
  20. {test_ylang-0.8.0 → test_ylang-0.9.0}/tests/core/test_init.py +0 -0
  21. {test_ylang-0.8.0 → test_ylang-0.9.0}/tests/kernels/__init__.py +0 -0
  22. {test_ylang-0.8.0 → test_ylang-0.9.0}/tests/kernels/flash_attention_kernel_test.py +0 -0
  23. {test_ylang-0.8.0 → test_ylang-0.9.0}/tests/kernels/quantized_matmul_kernel_test.py +0 -0
  24. {test_ylang-0.8.0 → test_ylang-0.9.0}/tests/kernels/ragged_kv_cache_update_v2_test.py +0 -0
  25. {test_ylang-0.8.0 → test_ylang-0.9.0}/tests/kernels/ragged_paged_attention_kernel_v2_test.py +0 -0
  26. {test_ylang-0.8.0 → test_ylang-0.9.0}/tests/kernels/ragged_paged_attention_kernel_v3_test.py +0 -0
  27. {test_ylang-0.8.0 → test_ylang-0.9.0}/tests/test_base.py +0 -0
  28. {test_ylang-0.8.0 → test_ylang-0.9.0}/tests/test_quantization.py +0 -0
  29. {test_ylang-0.8.0 → test_ylang-0.9.0}/tests/test_tpu_info.py +0 -0
  30. {test_ylang-0.8.0 → test_ylang-0.9.0}/tests/test_utils.py +0 -0
  31. {test_ylang-0.8.0 → test_ylang-0.9.0}/tests/tpu_backend_test.py +0 -0
  32. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/__init__.py +0 -0
  33. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/attention/__init__.py +0 -0
  34. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/attention/backends/__init__.py +0 -0
  35. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/attention/backends/pallas_torchax.py +0 -0
  36. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/backend.py +0 -0
  37. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/core/__init__.py +0 -0
  38. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/core/adapters.py +0 -0
  39. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/core/core_tpu.py +0 -0
  40. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/core/disagg_executor.py +0 -0
  41. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/core/disagg_utils.py +0 -0
  42. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/distributed/__init__.py +0 -0
  43. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/distributed/tpu_connector.py +0 -0
  44. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/kernels/__init__.py +0 -0
  45. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/kernels/quantized_matmul/__init__.py +0 -0
  46. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/kernels/quantized_matmul/kernel.py +0 -0
  47. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/kernels/quantized_matmul/tuned_block_sizes.py +0 -0
  48. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/kernels/quantized_matmul/util.py +0 -0
  49. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/kernels/ragged_paged_attention/__init__.py +0 -0
  50. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/logger.py +0 -0
  51. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/platforms/__init__.py +0 -0
  52. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/platforms/tpu_jax.py +0 -0
  53. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/platforms/tpu_torchax.py +0 -0
  54. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/runner/__init__.py +0 -0
  55. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/runner/block_table_jax.py +0 -0
  56. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/runner/compilation_manager.py +0 -0
  57. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/runner/input_batch_jax.py +0 -0
  58. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/runner/kv_cache.py +0 -0
  59. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/runner/kv_cache_manager.py +0 -0
  60. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/runner/multimodal_manager.py +0 -0
  61. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/runner/persistent_batch_manager.py +0 -0
  62. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/runner/speculative_decoding_manager.py +0 -0
  63. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/runner/structured_decoding_manager.py +0 -0
  64. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/runner/tpu_jax_runner.py +0 -0
  65. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/runner/utils.py +0 -0
  66. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/tpu_info.py +0 -0
  67. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/utils.py +0 -0
  68. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/worker/__init__.py +0 -0
  69. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/worker/_temporary_vllm_compat.py +0 -0
  70. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/worker/base.py +0 -0
  71. {test_ylang-0.8.0 → test_ylang-0.9.0}/tpu_commons/worker/tpu_worker_jax.py +0 -0
  72. {test_ylang-0.8.0 → test_ylang-0.9.0}/version.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: test-ylang
3
- Version: 0.8.0
3
+ Version: 0.9.0
4
4
  Author: tpu_commons Contributors
5
5
  Classifier: Development Status :: 3 - Alpha
6
6
  Classifier: Intended Audience :: Developers
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: test-ylang
3
- Version: 0.8.0
3
+ Version: 0.9.0
4
4
  Author: tpu_commons Contributors
5
5
  Classifier: Development Status :: 3 - Alpha
6
6
  Classifier: Intended Audience :: Developers
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes