diff options
author | laurent <laurent.mazare@gmail.com> | 2023-06-20 19:15:39 +0100 |
---|---|---|
committer | laurent <laurent.mazare@gmail.com> | 2023-06-20 19:15:39 +0100 |
commit | 9ff8d2076ac48192408211577f3e79d03ee14011 (patch) | |
tree | 27f6fd224926e733463dccbf340ea221730117f7 /.cargo | |
parent | 671bcf060efb8b536b70fce8a54c2a7fa96023cd (diff) | |
download | candle-9ff8d2076ac48192408211577f3e79d03ee14011.tar.gz candle-9ff8d2076ac48192408211577f3e79d03ee14011.tar.bz2 candle-9ff8d2076ac48192408211577f3e79d03ee14011.zip |
Add the topological sort for backprop.
Diffstat (limited to '.cargo')
-rw-r--r-- | .cargo/config.toml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 00000000..a6c6276e --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,5 @@ +[target.x86_64-unknown-linux-gnu] +rustflags = ["-C", "target-cpu=native"] + +[target.aarch64-apple-darwin] +rustflags = ["-C", "target-cpu=native"] |