Skip to content

Commit 5e140c5

Browse files
committed
fix: typo
1 parent 086bbb4 commit 5e140c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

torchlpc/csrc/scan_cpu.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ void lpc_cpu_core(const torch::Tensor &a, const torch::Tensor &padded_out) {
104104
auto a_contiguous = a.contiguous();
105105

106106
const scalar_t *a_ptr = a_contiguous.const_data_ptr<scalar_t>();
107-
scalar_t *out_ptr = padded_out.mutable_data_ptrscalar_t>();
107+
scalar_t *out_ptr = padded_out.mutable_data_ptr<scalar_t>();
108108

109109
at::parallel_for(0, B, 1, [&](int64_t start, int64_t end) {
110110
for (auto b = start; b < end; b++) {

0 commit comments

Comments
 (0)