llm_build_jamba.h 268 B

1234567891011
  1. #pragma once
  2. #include "../llama-model.h"
  3. #include "llm_graph_context_mamba.h"
  4. #include "../llama-graph.h"
  5. #include <cmath>
  6. struct llm_build_jamba : public llm_graph_context_mamba {
  7. llm_build_jamba(const llama_model & model, const llm_graph_params & params);
  8. };