Skip to content

Commit 6b4a482

Browse files
committedJan 25, 2023
[FA] Remove unused variable rng_engine_inputs
1 parent 78b7a1d commit 6b4a482

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed
 

‎csrc/flash_attn/fmha_api.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,6 @@ mha_fwd(const at::Tensor &q, // total_q x num_heads x head_size, total_q
309309
// state
310310
// We use a custom RNG that increases the offset by batch_size * nheads * 32.
311311
int64_t counter_offset = launch_params.params.b * launch_params.params.h * 32;
312-
at::PhiloxCudaState rng_engine_inputs;
313312

314313
if( is_dropout ) {
315314
// See Note [Acquire lock when using random generators]
@@ -612,7 +611,6 @@ mha_fwd_block(const at::Tensor &q, // total_q x num_heads x head_size, t
612611
// number of times random will be generated per thread, to offset philox counter in thc random
613612
// state
614613
int64_t counter_offset = launch_params.elts_per_thread;
615-
at::PhiloxCudaState rng_engine_inputs;
616614

617615
if( is_dropout ) {
618616
// See Note [Acquire lock when using random generators]

0 commit comments

Comments
 (0)