selective_scan_fwd_fp16.cu 492 B

12345678910
  1. /******************************************************************************
  2. * Copyright (c) 2023, Tri Dao.
  3. ******************************************************************************/
  4. // Split into multiple files to compile in parallel
  5. #include "selective_scan_fwd_kernel.cuh"
  6. template void selective_scan_fwd_cuda<at::Half, float>(SSMParamsBase &params, cudaStream_t stream);
  7. template void selective_scan_fwd_cuda<at::Half, complex_t>(SSMParamsBase &params, cudaStream_t stream);