MANIFEST.in
README.md
pyproject.toml
src/cortex/__init__.py
src/cortex/cells.py
src/cortex/config.py
src/cortex/consistent_dropout.py
src/cortex/factory.py
src/cortex/prewarm.py
src/cortex/py.typed
src/cortex/routed_adapter.py
src/cortex/torch_init.py
src/cortex/types.py
src/cortex/utils.py
src/cortex/cognitive_substrate/__init__.py
src/cortex/cognitive_substrate/_shared.py
src/cortex/cognitive_substrate/decision.py
src/cortex/cognitive_substrate/exploration.py
src/cortex/cognitive_substrate/predictive.py
src/cortex/cognitive_substrate/successor.py
src/cortex/cores/__init__.py
src/cortex/cores/agalite.py
src/cortex/cores/base.py
src/cortex/cores/conv.py
src/cortex/cores/hf_llama.py
src/cortex/cores/lstm.py
src/cortex/cores/mlstm.py
src/cortex/cores/registry.py
src/cortex/cores/slstm.py
src/cortex/cores/xl.py
src/cortex/cores/core/__init__.py
src/cortex/cores/core/axon_core.py
src/cortex/cores/core/axon_layer.py
src/cortex/fabric/__init__.py
src/cortex/fabric/anatomy.py
src/cortex/fabric/config.py
src/cortex/fabric/families.py
src/cortex/fabric/runtime.py
src/cortex/kernels/dispatch.py
src/cortex/kernels/cuda/__init__.py
src/cortex/kernels/cuda/extension_loader.py
src/cortex/kernels/cuda/agalite/__init__.py
src/cortex/kernels/cuda/agalite/discounted_sum_binding.cpp
src/cortex/kernels/cuda/agalite/discounted_sum_cuda.py
src/cortex/kernels/cuda/agalite/discounted_sum_kernels.cu
src/cortex/kernels/cuda/fabric/__init__.py
src/cortex/kernels/cuda/fabric/sparse_message_binding.cpp
src/cortex/kernels/cuda/fabric/sparse_message_cuda.py
src/cortex/kernels/cuda/fabric/sparse_message_kernels.cu
src/cortex/kernels/cuda/rtu/__init__.py
src/cortex/kernels/cuda/rtu/rtu_seq_allin.py
src/cortex/kernels/cuda/rtu/rtu_seq_allin_binding.cpp
src/cortex/kernels/cuda/rtu/rtu_seq_allin_kernels.cu
src/cortex/kernels/cuda/rtu/rtu_seq_full_binding.cpp
src/cortex/kernels/cuda/rtu/rtu_seq_full_kernels.cu
src/cortex/kernels/cuda/rtu/rtu_stream_diag_cuda.py
src/cortex/kernels/cuda/rtu/rtu_stream_full_cuda.py
src/cortex/kernels/cuda/srht/srht_binding.cpp
src/cortex/kernels/cuda/srht/srht_cuda.py
src/cortex/kernels/cuda/srht/srht_kernels.cu
src/cortex/kernels/pytorch/__init__.py
src/cortex/kernels/pytorch/agalite.py
src/cortex/kernels/pytorch/conv1d.py
src/cortex/kernels/pytorch/lstm.py
src/cortex/kernels/pytorch/mlstm.py
src/cortex/kernels/pytorch/slstm.py
src/cortex/kernels/pytorch/srht.py
src/cortex/kernels/pytorch/txl.py
src/cortex/kernels/pytorch/rtu/__init__.py
src/cortex/kernels/pytorch/rtu/rtu_stream_diag.py
src/cortex/kernels/pytorch/rtu/rtu_stream_fullrank.py
src/cortex/kernels/triton/lstm.py
src/cortex/kernels/triton/conv1d/__init__.py
src/cortex/kernels/triton/conv1d/channel_mixing.py
src/cortex/kernels/triton/mlstm/__init__.py
src/cortex/kernels/triton/mlstm/torch/bw.py
src/cortex/kernels/triton/mlstm/torch/bw_parallel_dK.py
src/cortex/kernels/triton/mlstm/torch/bw_parallel_dQ.py
src/cortex/kernels/triton/mlstm/torch/bw_parallel_dV.py
src/cortex/kernels/triton/mlstm/torch/bw_recurrent.py
src/cortex/kernels/triton/mlstm/torch/chunkwise_gates.py
src/cortex/kernels/triton/mlstm/torch/fw.py
src/cortex/kernels/triton/mlstm/torch/fw_parallel.py
src/cortex/kernels/triton/mlstm/torch/fw_recurrent.py
src/cortex/kernels/triton/mlstm/torch/fwbw.py
src/cortex/kernels/triton/mlstm/torch/utils.py
src/cortex/kernels/triton/mlstm/triton/bw_kernel_parallel_dK.py
src/cortex/kernels/triton/mlstm/triton/bw_kernel_parallel_dQ.py
src/cortex/kernels/triton/mlstm/triton/bw_kernel_parallel_dV.py
src/cortex/kernels/triton/mlstm/triton/bw_kernel_recurrent.py
src/cortex/kernels/triton/mlstm/triton/chunkwise_kernel_param_heuristics.py
src/cortex/kernels/triton/mlstm/triton/fw_kernel_parallel.py
src/cortex/kernels/triton/mlstm/triton/fw_kernel_recurrent.py
src/cortex/kernels/triton/mlstm/triton/kernel_param_heuristics.py
src/cortex/kernels/triton/mlstm/utils/kernels.py
src/cortex/kernels/triton/rtu/__init__.py
src/cortex/kernels/triton/rtu/lowrank.py
src/cortex/kernels/triton/rtu/stream_diag.py
src/cortex/kernels/triton/rtu/utils.py
src/cortex/kernels/triton/slstm/__init__.py
src/cortex/kernels/triton/slstm/torch/fwbw.py
src/cortex/kernels/triton/slstm/triton_fused/slstm_bw.py
src/cortex/kernels/triton/slstm/triton_fused/slstm_fw.py
src/cortex/kernels/triton/slstm/triton_fused/triton_utils.py
src/cortex/rl/__init__.py
src/cortex/rl/diff_horde.py
src/cortex/rl/feature_extractors/__init__.py
src/cortex/rl/feature_extractors/box_cnn.py
src/cortex/rl/feature_extractors/box_mlp.py
src/cortex/rl/feature_extractors/config.py
src/cortex/rl/feature_extractors/factory.py
src/cortex/rl/feature_extractors/token_embed.py
src/cortex/rl/feature_extractors/token_mlp.py
src/cortex/rl/feature_extractors/token_perceiver.py
src/cortex/scaffolds/__init__.py
src/cortex/scaffolds/adapter.py
src/cortex/scaffolds/base.py
src/cortex/scaffolds/gru_gating.py
src/cortex/scaffolds/passthrough.py
src/cortex/scaffolds/postup.py
src/cortex/scaffolds/postup_gated.py
src/cortex/scaffolds/preup.py
src/cortex/scaffolds/preup_gated.py
src/cortex/scaffolds/registry.py
src/cortex/scaffolds/column/__init__.py
src/cortex/scaffolds/column/auto.py
src/cortex/scaffolds/column/column.py
src/cortex/scaffolds/column/routers.py
src/cortex/stacks/__init__.py
src/cortex/stacks/auto.py
src/cortex/stacks/base.py
src/cortex/stacks/hf.py
src/cortex/stacks/multiscale.py
src/cortex/visualization/__init__.py
src/cortex/visualization/fabric.py
src/cortexcore.egg-info/PKG-INFO
src/cortexcore.egg-info/SOURCES.txt
src/cortexcore.egg-info/dependency_links.txt
src/cortexcore.egg-info/requires.txt
src/cortexcore.egg-info/top_level.txt
tests/test_adapter.py
tests/test_agalite.py
tests/test_amp_setup_context.py
tests/test_axon_layer.py
tests/test_causal_conv1d_kernel.py
tests/test_cognitive_substrate_exploration.py
tests/test_cognitive_substrate_successor.py
tests/test_column_scaffold.py
tests/test_consistent_dropout.py
tests/test_cortex_stack.py
tests/test_diff_horde.py
tests/test_evaluation_run.py
tests/test_evaluation_stacks.py
tests/test_extension_loader.py
tests/test_fabric_anatomy.py
tests/test_fabric_public_api.py
tests/test_fabric_runtime.py
tests/test_fabric_visualizer.py
tests/test_hf_llama_parity.py
tests/test_layernorm_skip.py
tests/test_lstm_core.py
tests/test_mlstm_core.py
tests/test_multiscale_stack.py
tests/test_param_batched_vmap.py
tests/test_routed_adapter.py
tests/test_rtu_stream_diag.py
tests/test_rtu_stream_fullrank.py
tests/test_sequential_mnist.py
tests/test_slstm_core.py
tests/test_stacks_imports.py
tests/test_synthetic_datasets.py
tests/test_utils.py
tests/test_xl_core.py