aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sci-libs/pytorch/files/pytorch-1.9.1-fix-wrong-hipify.patch')
-rw-r--r--sci-libs/pytorch/files/pytorch-1.9.1-fix-wrong-hipify.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/sci-libs/pytorch/files/pytorch-1.9.1-fix-wrong-hipify.patch b/sci-libs/pytorch/files/pytorch-1.9.1-fix-wrong-hipify.patch
deleted file mode 100644
index 4e37acd3f..000000000
--- a/sci-libs/pytorch/files/pytorch-1.9.1-fix-wrong-hipify.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-The hipify misadd a ) and causes compilation error
-
---- orig/aten/src/ATen/native/sparse/hip/SparseHIPTensor.hip
-+++ pytorch-1.9.1/aten/src/ATen/native/sparse/hip/SparseHIPTensor.hip
-@@ -282,7 +282,7 @@ Tensor sparse_mask_helper_cuda(
- mask_indices_ti,
- t_indices_pos_ti,
- t_values_ti,
-- r_values_ti);
-+ r_values_ti;
- C10_HIP_KERNEL_LAUNCH_CHECK();
- });
- }