File tree Expand file tree Collapse file tree 3 files changed +18
-5
lines changed Expand file tree Collapse file tree 3 files changed +18
-5
lines changed Original file line number Diff line number Diff 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,
Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments