| 686 | |
| 687 | template <typename scalar_t, int BLOCK_M, int BLOCK_N, int DATA_TYPE> struct tinygemm_kernel_nn { |
| 688 | static inline void apply( |
| 689 | const scalar_t*, const unsigned char*, scalar_t*, const scalar_t*, int64_t, int, int64_t, int64_t, int64_t, |
| 690 | int64_t, int64_t |
| 691 | ) { |
| 692 | static_assert(sizeof(scalar_t) == 0, "tinygemm_kernel_nn primary template should never be instantiated"); |
| 693 | } |
| 694 | }; |
| 695 | |
| 696 | template <int BLOCK_M, int BLOCK_N, int DATA_TYPE> struct tinygemm_kernel_nn<bf16_t, BLOCK_M, BLOCK_N, DATA_TYPE> { |
no outgoing calls
no test coverage detected