Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ add_library(llama
llama-model-saver.cpp
llama-model.cpp
llama-quant.cpp
llama-sampling.cpp
llama-sampler.cpp
llama-vocab.cpp
unicode-data.cpp
unicode.cpp
Expand Down
2 changes: 1 addition & 1 deletion src/llama-grammar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#include "llama-impl.h"
#include "llama-vocab.h"
#include "llama-sampling.h"
#include "llama-sampler.h"

#include <cmath>
#include <algorithm>
Expand Down
2 changes: 1 addition & 1 deletion src/llama-sampling.cpp → src/llama-sampler.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "llama-sampling.h"
#include "llama-sampler.h"

#include "llama-impl.h"
#include "llama-vocab.h"
Expand Down
2 changes: 0 additions & 2 deletions src/llama-sampling.h → src/llama-sampler.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#pragma once

// TODO: rename llama-sampling.h/.cpp to llama-sampler.h/.cpp ?

#include "llama.h"

#include <vector>
Expand Down
Loading