Skip to content

Commit

Permalink
Fix typo and missing header (ml-explore#1266)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjfeng1999 authored Jul 15, 2024
1 parent 8c01a78 commit 987785d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion mlx/primitives.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ std::vector<array> Primitive::vjp(
const std::vector<int>&,
const std::vector<array>&) {
std::ostringstream msg;
msg << "[Primitive::vip] Not implemented for ";
msg << "[Primitive::vjp] Not implemented for ";
print(msg);
msg << ".";
throw std::invalid_argument(msg.str());
Expand Down
1 change: 1 addition & 0 deletions mlx/random.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

#include "mlx/array.h"
#include "mlx/stream.h"
#include "mlx/utils.h"

namespace mlx::core::random {

Expand Down

0 comments on commit 987785d

Please sign in to comment.