LICENSE
MANIFEST.in
README.md
pyproject.toml
setup.py
clu/__init__.py
clu/__version__.py
clu/exceptions.py
clu/benchmarks/__init__.py
clu/cli/__init__.py
clu/cli/main.py
clu/cli/update_command.py
clu/compiler/__init__.py
clu/compiler/advanced_graph_optimizer.py
clu/compiler/advanced_kernels.py
clu/compiler/attention_avx2.c
clu/compiler/attention_avx2.dll
clu/compiler/attention_c_wrapper.py
clu/compiler/autotuner_v2.py
clu/compiler/avx2_kernels.c
clu/compiler/avx2_kernels.dll
clu/compiler/avx2_kernels_mt.dll
clu/compiler/avx2_wrapper.py
clu/compiler/avx512_kernels.c
clu/compiler/avx512_kernels.dll
clu/compiler/build_kernels.py
clu/compiler/calibration_engine.py
clu/compiler/conv_avx2.c
clu/compiler/conv_avx2.dll
clu/compiler/cpu_kernel_library.py
clu/compiler/fused_attention.py
clu/compiler/fusion_engine.py
clu/compiler/gemm_optimized.c
clu/compiler/gemm_optimized.dll
clu/compiler/gemm_strassen.c
clu/compiler/gemm_strassen.dll
clu/compiler/graph_compiler.py
clu/compiler/graph_ir.py
clu/compiler/graph_optimizer.py
clu/compiler/graph_scheduler.py
clu/compiler/kernel_autotuner.py
clu/compiler/kernel_compiler.py
clu/compiler/kernel_dispatch.py
clu/compiler/kernel_registry.py
clu/compiler/memory_layout.py
clu/compiler/mixed_precision.py
clu/compiler/onnx_export.py
clu/compiler/onnx_quantizer.py
clu/compiler/onnx_surgery.py
clu/compiler/op_lowering.py
clu/compiler/quant_int4.py
clu/compiler/quantizer.py
clu/compiler/sparsity_engine.py
clu/compiler/static_scheduler.py
clu/compiler/tensor_fusion.py
clu/distributed/__init__.py
clu/distributed/cluster.py
clu/distributed/coordinator.py
clu/distributed/shared_memory.py
clu/distributed/transport.py
clu/edge/__init__.py
clu/edge/deploy_toolkit.py
clu/edge/model_compressor.py
clu/edge/offline_inference.py
clu/edge/power_profiles.py
clu/edge/thermal_manager.py
clu/engine/__init__.py
clu/engine/inference_engine.py
clu/enterprise/__init__.py
clu/enterprise/cloud_deploy.py
clu/enterprise/model_isolation.py
clu/enterprise/signed_plugins.py
clu/hardware/__init__.py
clu/hardware/arm_backend.py
clu/hardware/cpu_backend.py
clu/hardware/cuda_backend.py
clu/hardware/gpu_kernel_dispatcher.py
clu/hardware/gpu_memory_manager.py
clu/hardware/hardware_abstraction.py
clu/hardware/igpu_attention_kernel.py
clu/hardware/igpu_fp16_kernels.py
clu/hardware/igpu_kernels.py
clu/hardware/intel_igpu_backend.py
clu/hardware/level_zero_backend.py
clu/hardware/multi_gpu_executor.py
clu/hardware/performance_counters.py
clu/hardware/universal_gpu_backend.py
clu/integrations/__init__.py
clu/integrations/gguf_bridge.py
clu/integrations/jupyter_magic.py
clu/integrations/langchain_detect.py
clu/integrations/wasm_export.py
clu/integrations/web_frameworks.py
clu/learning/__init__.py
clu/learning/advanced_predictor.py
clu/learning/auto_tuner.py
clu/learning/clu_optimizer.py
clu/learning/continual_trainer.py
clu/learning/ewc_engine.py
clu/learning/execution_history.py
clu/learning/execution_history_db.py
clu/learning/forgetting_metrics.py
clu/learning/hardware_state.py
clu/learning/pattern_recognizer.py
clu/learning/performance_feedback.py
clu/learning/predictive_engine.py
clu/learning/predictive_engine_dl.py
clu/learning/qat.py
clu/learning/replay_memory.py
clu/learning/sensitivity_analyzer.py
clu/learning/task_boundary.py
clu/marketplace/__init__.py
clu/marketplace/registry.py
clu/memory/__init__.py
clu/memory/cache_manager.py
clu/memory/execution_cache.py
clu/memory/memory_compression.py
clu/memory/memory_intelligence.py
clu/memory/persistent_store.py
clu/memory/tensor_cache.py
clu/model_zoo/__init__.py
clu/model_zoo/model_registry.py
clu/models/__init__.py
clu/models/gguf_native.py
clu/models/model_loader.py
clu/models/model_registry.py
clu/models/model_specific_paths.py
clu/observability/__init__.py
clu/observability/benchmark_report.py
clu/observability/dashboard.py
clu/observability/metrics.py
clu/observability/tracer.py
clu/patch/__init__.py
clu/patch/monkey_patch.py
clu/plugins/__init__.py
clu/plugins/plugin_api.py
clu/runtime/__init__.py
clu/runtime/adaptive_scheduler.py
clu/runtime/async_executor.py
clu/runtime/clu_executor.py
clu/runtime/device_manager.py
clu/runtime/distributed_engine.py
clu/runtime/execution_engine.py
clu/runtime/hardware_detector.py
clu/runtime/hybrid_device_router.py
clu/runtime/hybrid_scheduler_v2.py
clu/runtime/latency_balancer.py
clu/runtime/memory_manager.py
clu/runtime/memory_pool.py
clu/runtime/model_profiler.py
clu/runtime/pipeline_executor.py
clu/runtime/production_runtime.py
clu/runtime/thread_manager.py
clu/serving/__init__.py
clu/serving/api.py
clu/serving/batch_scheduler.py
clu/serving/continuous_batcher.py
clu/serving/health.py
clu/serving/kv_cache.py
clu/serving/llm_decode.py
clu/serving/llm_pipeline.py
clu/serving/lora_server.py
clu/serving/pipeline_orchestrator.py
clu/serving/prefix_cache.py
clu/serving/server.py
clu/serving/speculative.py
clu/serving/stream_handler.py
clu/serving/token_generator.py
clu/tools/__init__.py
clu/tools/cost_calculator.py
clu_runtime.egg-info/PKG-INFO
clu_runtime.egg-info/SOURCES.txt
clu_runtime.egg-info/dependency_links.txt
clu_runtime.egg-info/entry_points.txt
clu_runtime.egg-info/requires.txt
clu_runtime.egg-info/top_level.txt
sdk/__init__.py
sdk/clu_runtime.py
tests/test_compiler_new.py
tests/test_compiler_v2.py
tests/test_compiler_v3.py
tests/test_compiler_v4.py
tests/test_compiler_v5.py
tests/test_continual_learning.py
tests/test_cross_platform.py
tests/test_edge_v2.py
tests/test_hardware_v2.py
tests/test_integration.py
tests/test_layer1.py
tests/test_layer2.py
tests/test_layer3.py
tests/test_layer4.py
tests/test_layer5.py
tests/test_layer6.py
tests/test_learning_v2.py
tests/test_learning_v3.py
tests/test_memory_v2.py
tests/test_memory_v3.py
tests/test_release_readiness.py
tests/test_runtime_v2.py
tests/test_runtime_v3.py
tests/test_runtime_v4.py
tests/test_runtime_v5.py
tests/test_server_hardening.py
tests/test_strassen_gemm.py