Skip to content

Commit

Permalink
fix my mistake that broke other arches
Browse files Browse the repository at this point in the history
  • Loading branch information
YellowRoseCx committed Jul 3, 2023
1 parent 27780a9 commit 777aed5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 10 deletions.
3 changes: 1 addition & 2 deletions otherarch/gpt2_v3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@

#ifdef GGML_USE_CUBLAS
#include "ggml-cuda.h"
#endif
#if defined(GGML_USE_CLBLAST)
#elif defined(GGML_USE_CLBLAST)
#include "ggml-opencl.h"
#endif

Expand Down
3 changes: 1 addition & 2 deletions otherarch/gptj_v3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@

#ifdef GGML_USE_CUBLAS
#include "ggml-cuda.h"
#endif
#if defined(GGML_USE_CLBLAST)
#elif defined(GGML_USE_CLBLAST)
#include "ggml-opencl.h"
#endif

Expand Down
3 changes: 1 addition & 2 deletions otherarch/llama_v2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@

#ifdef GGML_USE_CUBLAS
#include "ggml_v2-cuda.h"
#endif
#if defined(GGML_USE_CLBLAST)
#elif defined(GGML_USE_CLBLAST)
#include "ggml_v2-opencl.h"
#endif

Expand Down
3 changes: 1 addition & 2 deletions otherarch/mpt_v3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@

#ifdef GGML_USE_CUBLAS
#include "ggml-cuda.h"
#endif
#if defined(GGML_USE_CLBLAST)
#elif defined(GGML_USE_CLBLAST)
#include "ggml-opencl.h"
#endif

Expand Down
3 changes: 1 addition & 2 deletions otherarch/neox_v3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@

#ifdef GGML_USE_CUBLAS
#include "ggml-cuda.h"
#endif
#if defined(GGML_USE_CLBLAST)
#elif defined(GGML_USE_CLBLAST)
#include "ggml-opencl.h"
#endif

Expand Down

0 comments on commit 777aed5

Please sign in to comment.