summaryrefslogtreecommitdiff
path: root/ggml-cuda.cu
diff options
context:
space:
mode:
authorGeorgi Gerganov <ggerganov@gmail.com>2024-01-03 14:18:46 +0200
committerGeorgi Gerganov <ggerganov@gmail.com>2024-01-03 14:38:38 +0200
commit7bed7eba359b0fa8e575345dc5467a46b4ba509f (patch)
tree73a8aa7a02a6ad4360a3fe5f3499febb877a5b8c /ggml-cuda.cu
parentd55356d3baa58a6c3a9171cb67a67094b9aa9dff (diff)
cuda : simplify expression
Co-authored-by: slaren <slarengh@gmail.com>
Diffstat (limited to 'ggml-cuda.cu')
-rw-r--r--ggml-cuda.cu5
1 files changed, 1 insertions, 4 deletions
diff --git a/ggml-cuda.cu b/ggml-cuda.cu
index 2e759d43..52d3cc6a 100644
--- a/ggml-cuda.cu
+++ b/ggml-cuda.cu
@@ -10044,10 +10044,7 @@ static bool ggml_backend_cuda_supports_op(ggml_backend_t backend, const ggml_ten
case GGML_OP_CONCAT:
{
ggml_type src0_type = op->src[0]->type;
- if (src0_type != GGML_TYPE_I32 && src0_type != GGML_TYPE_I16) {
- return true;
- }
- return false;
+ return src0_type != GGML_TYPE_I32 && src0_type != GGML_TYPE_I16;
} break;
case GGML_OP_NONE:
case GGML_OP_RESHAPE: