Skip to content

Commit 8bffbd9

Browse files
committed
Merge branch 'upstream' into concedo_experimental
# Conflicts: # ggml/src/ggml-sycl/ggml-sycl.cpp
2 parents 8323d8a + 3306cea commit 8bffbd9

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
lines changed

src/llama-model.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13900,10 +13900,6 @@ struct llm_build_glm4_moe : public llm_graph_context {
1390013900
LLM_FFN_SILU, LLM_FFN_PAR, il);
1390113901
cb(cur, "ffn_out", il);
1390213902
} else {
13903-
// MoE layer with shared experts
13904-
const int64_t n_expert = hparams.n_expert;
13905-
const int64_t n_expert_used = hparams.n_expert_used;
13906-
1390713903
// Process routed experts using existing MoE infrastructure
1390813904
ggml_tensor * routed_out = build_moe_ffn(cur,
1390913905
model.layers[il].ffn_gate_inp,

tools/server/public/index.html.gz

122 Bytes
Binary file not shown.

tools/server/webui/src/index.scss

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,24 @@ html {
3131
hr {
3232
@apply my-4 border-base-content/20 border-1;
3333
}
34-
/* TODO: fix markdown table */
34+
table {
35+
@apply w-full border-collapse text-sm font-sans my-4 text-base-content;
36+
}
37+
thead {
38+
@apply bg-base-200 text-base-content;
39+
}
40+
th {
41+
@apply border border-base-300 px-4 py-2 text-left font-semibold;
42+
}
43+
td {
44+
@apply border border-base-300 px-4 py-2 align-top;
45+
}
46+
tbody tr:nth-child(even) {
47+
@apply bg-base-100;
48+
}
49+
tbody tr:hover {
50+
@apply bg-base-200;
51+
}
3552
}
3653

3754
.btn-mini {

0 commit comments

Comments
 (0)