-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add optimization callbacks that fire on a marker function
- Loading branch information
Showing
5 changed files
with
94 additions
and
3 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
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
@testsetup module Plugin | ||
|
||
using Test | ||
using ReTestItems | ||
import LLVM | ||
import GPUCompiler | ||
|
||
function mark(x) | ||
ccall("extern gpucompiler.mark", llvmcall, Nothing, (Int,), x) | ||
end | ||
|
||
function remove_mark!(@nospecialize(job), intrinsic, mod::LLVM.Module) | ||
changed = false | ||
|
||
for use in LLVM.uses(intrinsic) | ||
val = LLVM.user(use) | ||
if isempty(LLVM.uses(val)) | ||
LLVM.erase!(val) | ||
changed = true | ||
else | ||
# the validator will detect this | ||
end | ||
end | ||
|
||
return changed | ||
end | ||
|
||
GPUCompiler.register_plugin!("gpucompiler.mark", false, | ||
pipeline_callback=remove_mark!) | ||
|
||
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
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