Fix the import path in python samples

pull/176/head
Yi Zhang 2021-03-02 21:23:39 +00:00 committed by Sean Silva
parent c837dbb077
commit 7bb3b2eb6e
1 changed files with 4 additions and 4 deletions

View File

@ -1,9 +1,9 @@
import numpy as np import numpy as np
from npcomp.compiler import test_config from npcomp.compiler.numpy import test_config
from npcomp.compiler.backend import refjit from npcomp.compiler.numpy.backend import refjit
from npcomp.compiler.frontend import * from npcomp.compiler.numpy.frontend import *
from npcomp.compiler.target import * from npcomp.compiler.numpy.target import *
def compile_function(f): def compile_function(f):