Skip to content

Commit

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

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

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

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

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

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

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

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

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

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

Expand Down

0 comments on commit 72c16d2

Please sign in to comment.