| 4425 | |
| 4426 | static bool tensor_is_routed_expert_type(uint32_t type) { |
| 4427 | return type == DS4_TENSOR_Q8_0 || |
| 4428 | type == DS4_TENSOR_IQ2_XXS || |
| 4429 | type == DS4_TENSOR_Q2_K || |
| 4430 | type == DS4_TENSOR_Q4_K || |
| 4431 | type == DS4_TENSOR_Q5_K || |
| 4432 | type == DS4_TENSOR_Q6_K || |
| 4433 | type == DS4_TENSOR_MXFP4; |
| 4434 | } |
| 4435 | |
| 4436 | static DS4_MAYBE_UNUSED uint64_t routed_expert_block_bytes(uint32_t type) { |
| 4437 | switch (type) { |
no test coverage detected