| 180 | } |
| 181 | |
| 182 | size_t Model::forward(const std::vector<float>& /*mel_bins*/, const std::vector<uint32_t>& tokens, bool use_cache){ |
| 183 | return forward(tokens, use_cache); |
| 184 | } |
| 185 | |
| 186 | void Model::prefill(const std::vector<uint32_t>& tokens, size_t chunk_size, const std::string& profile_file) { |
| 187 | if (tokens.empty()) { |
nothing calls this directly
no outgoing calls
no test coverage detected