Skip to content

Commit

Permalink
ggml : make more compatible with c99 (ggerganov#262)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggerganov committed Dec 16, 2022
1 parent 5a5c5dd commit 0f11759
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 30 deletions.
5 changes: 3 additions & 2 deletions ggml.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@
#include <stdint.h>
#include <stdio.h>

// if C99 - static_assert is nop
// if C99 - static_assert is noop
// ref: https://stackoverflow.com/a/53923785/4039976
#ifndef static_assert
#define static_assert(cond, msg)
#define static_assert(cond, msg) struct global_scope_noop_trick
#endif

#if defined _MSC_VER || defined(__MINGW32__)
Expand Down
54 changes: 26 additions & 28 deletions ggml.h
Original file line number Diff line number Diff line change
Expand Up @@ -681,34 +681,32 @@ struct ggml_opt_params {
bool print_forward_graph;
bool print_backward_graph;

union {
// ADAM parameters
struct {
int n_iter;

float alpha; // learning rate
float beta1;
float beta2;
float eps; // epsilon for numerical stability
float eps_f; // epsilon for convergence test
float eps_g; // epsilon for convergence test
} adam;

// LBFGS parameters
struct {
int m; // number of corrections to approximate the inv. Hessian
int n_iter;
int max_linesearch;

float eps; // convergence tolerance
float ftol; // line search tolerance
float wolfe;
float min_step;
float max_step;

enum ggml_linesearch linesearch;
} lbfgs;
};
// ADAM parameters
struct {
int n_iter;

float alpha; // learning rate
float beta1;
float beta2;
float eps; // epsilon for numerical stability
float eps_f; // epsilon for convergence test
float eps_g; // epsilon for convergence test
} adam;

// LBFGS parameters
struct {
int m; // number of corrections to approximate the inv. Hessian
int n_iter;
int max_linesearch;

float eps; // convergence tolerance
float ftol; // line search tolerance
float wolfe;
float min_step;
float max_step;

enum ggml_linesearch linesearch;
} lbfgs;
};

struct ggml_opt_params ggml_opt_default_params(enum ggml_opt_type type);
Expand Down

0 comments on commit 0f11759

Please sign in to comment.