You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use Enzyme's optimization and late lowering mechanisms (#63)
* Use Enzyme's optimization and late lowering mechanisms
* BLAS calls work again
* update README
* add another test case
* re-enable the `@test_skip` on remotely calling BLAS
This is an experimental package to compile Julia code to standalone libraries. A system image is not needed. It is also meant for cross compilation, so Julia code can be compiled for other targets, including WebAssembly and embedded targets.
6
+
This is an experimental package to compile Julia code to standalone libraries. A system image is not needed.
10
7
11
8
## Installation and Usage
12
9
@@ -41,6 +38,9 @@ julia> fib_compiled(10)
41
38
55
42
39
```
43
40
41
+
See the file `tests/runtests.jl` for some examples of functions that work with static compilation (and some that don't,
42
+
marked with `@test_skip`)
43
+
44
44
## Approach
45
45
46
46
This package uses the [GPUCompiler package](https://github.com/JuliaGPU/GPUCompiler.jl) to generate code.
0 commit comments