Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
DeepEP
Commits
38cdaf39
Commit
38cdaf39
authored
Mar 14, 2025
by
Shangyan Zhou
Browse files
Fix style.
parent
2d0cf41d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
csrc/kernels/ibgda_device.cuh
csrc/kernels/ibgda_device.cuh
+2
-3
No files found.
csrc/kernels/ibgda_device.cuh
View file @
38cdaf39
...
@@ -417,12 +417,11 @@ __device__ __forceinline__ void nvshmemi_ibgda_amo_nonfetch_add(void *rptr, cons
...
@@ -417,12 +417,11 @@ __device__ __forceinline__ void nvshmemi_ibgda_amo_nonfetch_add(void *rptr, cons
uint64_t
raddr
;
uint64_t
raddr
;
ibgda_get_rkey
(
reinterpret_cast
<
uint64_t
>
(
rptr
),
pe
,
&
raddr
,
&
rkey
);
ibgda_get_rkey
(
reinterpret_cast
<
uint64_t
>
(
rptr
),
pe
,
&
raddr
,
&
rkey
);
void
*
wqe_ptrs
[
1
];
uint64_t
my_wqe_idx
=
ibgda_reserve_wqe_slots
(
qp
,
1
);
uint64_t
my_wqe_idx
=
ibgda_reserve_wqe_slots
(
qp
,
1
);
wqe_ptrs
[
0
]
=
ibgda_get_wqe_ptr
(
qp
,
my_wqe_idx
);
void
*
wqe_ptrs
=
ibgda_get_wqe_ptr
(
qp
,
my_wqe_idx
);
ibgda_write_amo_add_wqe
(
qp
,
value
,
reinterpret_cast
<
uint64_t
>
(
qp
->
ibuf
.
buf
),
ibgda_write_amo_add_wqe
(
qp
,
value
,
reinterpret_cast
<
uint64_t
>
(
qp
->
ibuf
.
buf
),
qp
->
ibuf
.
lkey
,
raddr
,
rkey
,
my_wqe_idx
,
wqe_ptrs
);
qp
->
ibuf
.
lkey
,
raddr
,
rkey
,
my_wqe_idx
,
&
wqe_ptrs
);
ibgda_submit_requests
<
true
>
(
qp
,
my_wqe_idx
,
1
);
ibgda_submit_requests
<
true
>
(
qp
,
my_wqe_idx
,
1
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment