-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow cache module to be given in RGF constructor
This exposes the full constructor (without the need for specifying module tags), as we seem to need this for utility functions which want to cache the RGF in a user-specified module.
- Loading branch information
Showing
4 changed files
with
46 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "RuntimeGeneratedFunctions" | ||
uuid = "7e49a35a-f44a-4d26-94aa-eba1b4ca6b47" | ||
authors = ["Chris Rackauckas <[email protected]> and contributors"] | ||
version = "0.5.0" | ||
version = "0.5.1" | ||
|
||
[deps] | ||
ExprTools = "e2ba6199-217a-4e67-a87a-7c52f15ade04" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
module RGFPrecompTest | ||
using RuntimeGeneratedFunctions | ||
using RGFPrecompTest2 | ||
RuntimeGeneratedFunctions.init(@__MODULE__) | ||
|
||
f = @RuntimeGeneratedFunction(:((x,y)->x+y)) | ||
|
||
g = RGFPrecompTest2.generate_rgf(@__MODULE__) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters