Skip to content
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ members = [
"examples/causal_llm",
"examples/stable-diffusion",
"examples/stable-diffusion-xl",
"examples/flux-schnell",

"harness/core-proptest-pulse",
"harness/nnef-inceptionv3",
Expand Down
3 changes: 2 additions & 1 deletion cuda/src/kernels/conv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ impl ConvKernel for ConvGeneric {
let input_shape = op.pool_spec.data_format.shape(input.shape())?;

let ctx = cuda_context();
let func_name = format!("conv{}d_f32_generic", input_shape.hw_rank());
let dt_name = if input.datum_type() == DatumType::F16 { "f16" } else { "f32" };
let func_name = format!("conv{}d_{}_generic", input_shape.hw_rank(), dt_name);
let func = ctx.load_pipeline(crate::kernels::LibraryName::Cnn, func_name)?;
let null = stream.null::<u8>()?;
let null_view = null.as_view();
Expand Down
Loading
Loading