mirror of
https://github.com/ml-explore/mlx.git
synced 2025-07-03 07:41:13 +08:00
fix for non-macos build issue on cblas.h (#227)
This commit is contained in:
parent
37024d899c
commit
de892cb66c
@ -1,6 +1,10 @@
|
||||
// Copyright © 2023 Apple Inc.
|
||||
|
||||
#include <VecLib/cblas.h>
|
||||
#ifdef ACCELERATE_NEW_LAPACK
|
||||
#include <vecLib/cblas_new.h>
|
||||
#else
|
||||
#include <cblas.h>
|
||||
#endif
|
||||
|
||||
#include "mlx/array.h"
|
||||
#include "mlx/backend/common/copy.h"
|
||||
|
Loading…
Reference in New Issue
Block a user