I don't think you need to use rustup for that. Additionally, rustup will not work on Hydra.
Only the x86_64
version libstd was provided by default in the toolchain, so used rustup
to build…
Globbing was needed when linalg was used as dependency of standalone (cargo puts dependencies separately with a hash in front of their names). After delegating the compilation to run_demo.sh
,…
This is part of the demo and the demo only. Shouldn't the demo runner build that part, instead of building it when nac3standalone is built?
Will delegate its compilation to run_demo.sh
…
Reimplemented simple functions (np_transpose
and np_dot
) using LLVM IR and added additional functions.
Is it really OK to use a formatted string in artiq_raise? Where is the memory allocated?
Not sure about the memory allocation, but formatted string is being used in other parts of code base…
Since other functions like np_array
and np_zero
are already written using LLVM IR in core/codegen/numpy
I think keeping things consistent is more important.