Skip to content

Commit

Permalink
Renamed Native to NativeSimd
Browse files Browse the repository at this point in the history
  • Loading branch information
tjake committed Dec 27, 2024
1 parent 7eda3aa commit 1569d44
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ private TensorOperations pickFastestImplementation() {
if (!forcePanama) {
try {
Class<? extends TensorOperations> nativeClazz = (Class<? extends TensorOperations>) Class.forName(
"com.github.tjake.jlama.tensor.operations.NativeTensorOperations"
"com.github.tjake.jlama.tensor.operations.NativeSimdTensorOperations"
);
pick = nativeClazz.getConstructor().newInstance();
// This will throw if no shared lib found
Expand Down

0 comments on commit 1569d44

Please sign in to comment.