Skip to content

Commit 0a59450

Browse files
jeffdailyfacebook-github-bot
authored andcommitted
remove IntWrapper (#1964)
Summary: I could not access https://github.com/NVlabs/cub/issues/172 to understand whether IntWrapper was still necessary but the comment is from 5 years ago and causes problems for the ROCm build. Pull Request resolved: #1964 Reviewed By: MichaelRamamonjisoa Differential Revision: D71937895 Pulled By: bottler fbshipit-source-id: 5e0351e1bd8599b670436cd3464796eca33156f6
1 parent 3987612 commit 0a59450

File tree

3 files changed

+2
-12
lines changed

3 files changed

+2
-12
lines changed

pytorch3d/csrc/pulsar/include/camera.h

-5
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,6 @@ struct CamGradInfo {
7070
float3 pixel_dir_y;
7171
};
7272

73-
// TODO: remove once https://github.com/NVlabs/cub/issues/172 is resolved.
74-
struct IntWrapper {
75-
int val;
76-
};
77-
7873
} // namespace pulsar
7974

8075
#endif

pytorch3d/csrc/pulsar/include/math.h

-5
Original file line numberDiff line numberDiff line change
@@ -149,11 +149,6 @@ IHD CamGradInfo operator*(const CamGradInfo& a, const float& b) {
149149
return res;
150150
}
151151

152-
IHD IntWrapper operator+(const IntWrapper& a, const IntWrapper& b) {
153-
IntWrapper res;
154-
res.val = a.val + b.val;
155-
return res;
156-
}
157152
} // namespace pulsar
158153

159154
#endif

pytorch3d/csrc/pulsar/include/renderer.backward.device.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,8 @@ void backward(
155155
stream);
156156
CHECKLAUNCH();
157157
SUM_WS(
158-
(IntWrapper*)(self->ids_sorted_d),
159-
(IntWrapper*)(self->n_grad_contributions_d),
158+
self->ids_sorted_d,
159+
self->n_grad_contributions_d,
160160
static_cast<int>(num_balls),
161161
self->workspace_d,
162162
self->workspace_size,

0 commit comments

Comments
 (0)