Skip to content

Commit

Permalink
remove redundant fields
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieupoumeyrolsonos authored and kali committed Sep 26, 2024
1 parent d56eec3 commit 2fdb305
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions metal/src/kernels/bin_ops.rs
Original file line number Diff line number Diff line change
Expand Up @@ -410,9 +410,6 @@ mod tests {
F: Datum + Copy,
usize: AsPrimitive<F>,
{
pub b: usize,
pub m: usize,
pub n: usize,
pub lhs: Tensor,
pub rhs: Tensor,
_phantom: std::marker::PhantomData<F>,
Expand Down Expand Up @@ -442,9 +439,6 @@ mod tests {
)
})
.prop_map(|(b, m, n, lhs, rhs)| Self {
b,
m,
n,
lhs: Tensor::from_shape(&[b, m, n], &lhs).unwrap(),
rhs: Tensor::from_shape(&[b, m, n], &rhs).unwrap(),
_phantom: std::marker::PhantomData,
Expand Down

0 comments on commit 2fdb305

Please sign in to comment.