remove unused includes

This commit is contained in:
Awni Hannun 2023-12-26 10:58:02 -08:00
parent f7cea9563d
commit 49e3e99da3
2 changed files with 0 additions and 17 deletions

View File

@ -1,22 +1,13 @@
// Copyright © 2023 Apple Inc. // Copyright © 2023 Apple Inc.
#include <limits>
#include <numeric>
#include <ostream>
#include <string>
#include <variant> #include <variant>
#include <pybind11/iostream.h>
#include <pybind11/pybind11.h> #include <pybind11/pybind11.h>
#include <pybind11/stl.h> #include <pybind11/stl.h>
#include "mlx/linalg.h" #include "mlx/linalg.h"
#include "mlx/ops.h"
#include "mlx/utils.h"
#include "python/src/load.h" #include "python/src/load.h"
#include "python/src/overloaded.h"
#include "python/src/utils.h" #include "python/src/utils.h"
namespace py = pybind11; namespace py = pybind11;

View File

@ -1,8 +0,0 @@
// Copyright © 2023 Apple Inc.
template <typename... Ts>
struct overloaded : Ts... {
using Ts::operator()...;
};
template <class... Ts>
overloaded(Ts...) -> overloaded<Ts...>;