Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Adapt to changes introduced by the CUDA execution refactoring in boojum-cuda #16

Merged
merged 1 commit into from
Dec 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/primitives/arith.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use super::*;

use boojum_cuda::device_structures::{DeviceMatrix, DeviceMatrixMut};
use boojum_cuda::device_structures::{DeviceMatrix, DeviceMatrixMut, Vectorized};
use boojum_cuda::extension_field::VectorizedExtensionField;
// arithmetic operations
use boojum_cuda::ops_cub::device_scan::*;
Expand Down Expand Up @@ -483,7 +483,7 @@ pub fn barycentric_evaluate_ext_at_ext<A: GoodAllocator>(
}

fn barycentric_evaluate<E: boojum_cuda::barycentric::EvalImpl, A: GoodAllocator>(
values: &[E::YsVec],
values: &[<E::Y as Vectorized>::Type],
bases: &[F],
domain_size: usize,
num_polys: usize,
Expand Down