remove trailing whitespace

This commit is contained in:
xaedes 2023-08-30 16:01:08 +02:00
parent fc456edda6
commit f3590ad8d9
No known key found for this signature in database
GPG key ID: 30030EDD817EA2B1
2 changed files with 3 additions and 3 deletions

4
ggml.c
View file

@ -16191,9 +16191,9 @@ static size_t hash_find(void * hash_table[], void * p) {
static bool hash_insert(void * hash_table[], void * p) {
size_t i = hash_find(hash_table, p);
GGML_ASSERT(i < GGML_GRAPH_HASHTABLE_SIZE); // assert that not full
if (hash_table[i] == p) {
return true;
}

2
ggml.h
View file

@ -1665,7 +1665,7 @@ extern "C" {
GGML_API void ggml_graph_dump_dot(const struct ggml_cgraph * gb, const struct ggml_cgraph * gf, const char * filename);
// build gradient checkpointing backward graph gb for gf using provided checkpoints
// gb_tmp will contain original backward graph with rewritten backward process nodes,
// gb_tmp will contain original backward graph with rewritten backward process nodes,
// but without the second forward pass nodes.
GGML_API void ggml_build_backward_gradient_checkpointing(
struct ggml_context * ctx,