mirror of https://github.com/google/gemma.cpp.git
parent
a3a0f78fda
commit
4326249d0a
|
|
@ -167,6 +167,6 @@ cc_binary(
|
|||
"@hwy//:nanobenchmark",
|
||||
"@hwy//:profiler",
|
||||
"@hwy//:thread_pool",
|
||||
"//third_party/json",
|
||||
"@nlohmann_json//:json",
|
||||
],
|
||||
)
|
||||
|
|
|
|||
|
|
@ -3,18 +3,20 @@
|
|||
#include <iostream>
|
||||
#include <ostream>
|
||||
#include <sstream>
|
||||
#include <string>
|
||||
#include <utility> // std::pair
|
||||
#include <vector>
|
||||
|
||||
#include "nlohmann/json.hpp"
|
||||
// copybara:import_next_line:gemma_cpp
|
||||
#include "gemma.h"
|
||||
// copybara:import_next_line:gemma_cpp
|
||||
#include "util/app.h"
|
||||
// copybara:import_next_line:gemma_cpp
|
||||
#include "util/args.h"
|
||||
#include "hwy/base.h"
|
||||
#include "hwy/contrib/thread_pool/thread_pool.h"
|
||||
#include "hwy/highway.h"
|
||||
#include "hwy/per_target.h"
|
||||
#include "hwy/profiler.h"
|
||||
#include "hwy/timer.h"
|
||||
|
||||
using json = nlohmann::json;
|
||||
|
|
|
|||
Loading…
Reference in New Issue