Skip to content

Commit

Permalink
organization
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Fioti authored and Joe Fioti committed Jan 9, 2024
1 parent 67366e1 commit e1cf44a
Show file tree
Hide file tree
Showing 3 changed files with 587 additions and 617 deletions.
6 changes: 4 additions & 2 deletions src/compilers/metal/fp16/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ use half::f16;

mod matmul;
mod mean_reduce;
pub mod other;
mod rms_norm;

pub type MetalFp16Compiler = (
Expand All @@ -13,7 +12,10 @@ pub type MetalFp16Compiler = (
super::other::ARangeCompiler<f16>,
super::binary::MetalGatherCompiler<f16>,
),
(other::MetalExpCompiler, other::MetalSwishCompiler),
(
super::other::MetalExpCompiler<f16>,
super::other::MetalSwishCompiler<f16>,
),
matmul::MetalMatMulCompiler,
mean_reduce::MeanReduceCompiler,
rms_norm::RMSNormCompiler,
Expand Down
Loading

0 comments on commit e1cf44a

Please sign in to comment.