File tree Expand file tree Collapse file tree 3 files changed +0
-4
lines changed Expand file tree Collapse file tree 3 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -436,7 +436,6 @@ class MODEL_TENSOR(IntEnum):
436436 SSM_B_NORM = auto ()
437437 SSM_C_NORM = auto ()
438438 SSM_D = auto ()
439- SSM_BCDT = auto () # PLaMo-2
440439 SSM_NORM = auto ()
441440 SSM_OUT = auto ()
442441 TIME_MIX_W0 = auto ()
@@ -1379,7 +1378,6 @@ class MODEL_TENSOR(IntEnum):
13791378 MODEL_TENSOR .SSM_A ,
13801379 MODEL_TENSOR .SSM_D ,
13811380 MODEL_TENSOR .SSM_OUT ,
1382- MODEL_TENSOR .SSM_BCDT ,
13831381 MODEL_TENSOR .SSM_DT_NORM ,
13841382 MODEL_TENSOR .SSM_B_NORM ,
13851383 MODEL_TENSOR .SSM_C_NORM ,
Original file line number Diff line number Diff line change @@ -294,7 +294,6 @@ enum llm_tensor {
294294 LLM_TENSOR_SSM_IN,
295295 LLM_TENSOR_SSM_CONV1D,
296296 LLM_TENSOR_SSM_X,
297- LLM_TENSOR_SSM_BCDT,
298297 LLM_TENSOR_SSM_DT,
299298 LLM_TENSOR_SSM_DT_NORM,
300299 LLM_TENSOR_SSM_A,
Original file line number Diff line number Diff line change @@ -249,7 +249,6 @@ struct llama_layer {
249249 // mamba proj
250250 struct ggml_tensor * ssm_in = nullptr ;
251251 struct ggml_tensor * ssm_x = nullptr ;
252- struct ggml_tensor * ssm_bcdt = nullptr ; // PLaMo-2
253252 struct ggml_tensor * ssm_dt = nullptr ;
254253 struct ggml_tensor * ssm_out = nullptr ;
255254
You can’t perform that action at this time.
0 commit comments