Skip to content

Commit d97e790

Browse files
committed
Fixed errors.
1 parent c57013a commit d97e790

1 file changed

Lines changed: 1 addition & 9 deletions

File tree

openequivariance_extjax/src/libjax_tp_jit.cpp

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,24 +19,16 @@ using json = json11::Json;
1919
#include <cuda_runtime.h>
2020

2121
#include "backend/backend_cuda.hpp"
22-
#include "group_mm_cuda.hpp"
2322
using JITKernel = CUJITKernel;
2423
using GPU_Allocator = CUDA_Allocator;
25-
26-
template<typename T>
27-
using GroupMM = GroupMMCUDA<T>;
2824
using stream_t = cudaStream_t;
2925
#endif
3026

3127
#ifdef HIP_BACKEND
3228
#include "backend/backend_hip.hpp"
33-
#include "group_mm_hip.hpp"
3429
using JITKernel = HIPJITKernel;
3530
using GPU_Allocator = HIP_Allocator;
36-
37-
template<typename T>
38-
using GroupMM = GroupMMHIP<T>;
39-
using stream_t = hipStream_t;
31+
using stream_t = hipStream_t;
4032
#endif
4133

4234
#include "tensorproducts.hpp"

0 commit comments

Comments
 (0)