Skip to content

Commit

Permalink
metal : fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
ggerganov committed Oct 6, 2024
1 parent 5ea66f4 commit 4b161bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ggml/src/ggml-metal.m
Original file line number Diff line number Diff line change
Expand Up @@ -3691,13 +3691,13 @@ ggml_backend_reg_t ggml_backend_metal_reg(void) {
{
g_ggml_backend_metal_reg = (struct ggml_backend_reg) {
/* .iface = */ ggml_backend_metal_reg_i,
/* .context = */ NULL,
/* .context = */ NULL,
};

g_ggml_backend_metal_device = (struct ggml_backend_device) {
/* .iface = */ ggml_backend_metal_device_i,
/* .reg = */ &g_ggml_backend_metal_reg,
/* .context = */ NULL,
/* .reg = */ &g_ggml_backend_metal_reg,
/* .context = */ NULL,
};
}

Expand Down

0 comments on commit 4b161bc

Please sign in to comment.