Skip to content

Commit

Permalink
fix hip
Browse files Browse the repository at this point in the history
  • Loading branch information
xinhaoc committed Jan 19, 2024
1 parent fb91122 commit c162d4c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/ops/fused.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,7 @@ __host__ void FusedOp::forward_task(Task const *task,
assert(fused->op_num_outputs[op] == 1);
DropoutMeta *m = (DropoutMeta *)metas->meta[op];
Kernels::Dropout::forward_kernel_wrapper(
m,
my_input_accessor[0].get_float_ptr(),
my_output_accessor[0].get_float_ptr());
m, my_input_accessor[0], my_output_accessor[0]);
break;
}
case OP_LINEAR: {
Expand Down

0 comments on commit c162d4c

Please sign in to comment.