File size: 231 Bytes
712dbf0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | // Copyright © 2024 Apple Inc.
#include <iostream>
#include "mlx/mlx.h"
namespace mx = mlx::core;
int main() {
auto x = mx::array({1, 2, 3});
auto y = mx::array({1, 2, 3});
std::cout << x + y << std::endl;
return 0;
}
|