Replies: 1 comment
-
AOT mode is more convient |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
JIT code can be splited two parts? one is initial JIT, one is called JIT Pipline?
void InitHalDLL()
{
BlurWiti_Pipeline = BlurWiti( );
const Target target = get_jit_target_from_environment();
BlurWiti_Pipeline.compile_jit(target);
std::cout << "target: " << target << std::endl;
}
void funs()
{
BlurWiti_Pipeline1.realize(output);
}
i saw another question:
Is JIT code cached once it's compiled?
#8121
It's cached within the same process, but it isn't stored to disk, so it's not cache across launches of the process.
hence, JIT code can not be splited two parts ? within the same process?
Beta Was this translation helpful? Give feedback.
All reactions