Home
last modified time | relevance | path

Searched refs:run_frontend (Results 1 – 21 of 21) sorted by relevance

/dports/devel/py-numba/numba-0.51.2/numba/tests/
H A Dtest_byteflow.py5 from numba.core.compiler import run_frontend
67 run_frontend(udt)
H A Dtest_copy_propagate.py56 test_ir = compiler.run_frontend(test_will_propagate)
83 test_ir = compiler.run_frontend(test_wont_propagate)
H A Dtest_ir.py341 def run_frontend(x): function
342 return compiler.run_frontend(x, emit_dels=True)
389 x_ir = run_frontend(x)
390 y_ir = run_frontend(y)
419 z_ir = run_frontend(z)
466 foo_ir = run_frontend(foo)
467 bar_ir = run_frontend(bar)
471 baz_ir = run_frontend(baz)
H A Dtest_ir_utils.py37 test_ir = compiler.run_frontend(test_func)
165 f_ir = compiler.run_frontend(foo)
H A Dtest_inlining.py186 func_ir = compiler.run_frontend(test_impl)
215 func_ir = compiler.run_frontend(test_impl)
H A Dtest_remove_dead.py73 test_ir = compiler.run_frontend(test_will_propagate)
108 test_ir = compiler.run_frontend(call_np_random_seed)
H A Dtest_analysis.py6 from numba.core.compiler import compile_isolated, run_frontend, Flags, StateDict
20 func_ir = run_frontend(func)
H A Dtest_parfors_passes.py47 test_ir = compiler.run_frontend(test_func)
H A Dtest_extending.py544 test_ir = compiler.run_frontend(mk_func_test_impl)
H A Dtest_parfors.py303 test_ir = compiler.run_frontend(test_func)
/dports/cad/yosys/yosys-yosys-0.12/kernel/
H A Ddriver.cc121 run_frontend(argv[1], "script", 0, 0, 0); in main()
523 run_frontend(argv[optind++], frontend_command, output_filename == "-" ? &backend_command : NULL);
534 run_frontend(scriptfile, "script", output_filename == "-" ? &backend_command : NULL);
H A Dyosys.h350 void run_frontend(std::string filename, std::string command, std::string *backend_command, std::str…
351 void run_frontend(std::string filename, std::string command, RTLIL::Design *design = nullptr);
H A Dyosys.cc959 void run_frontend(std::string filename, std::string command, std::string *backend_command, std::str… in run_frontend() function
1078 void run_frontend(std::string filename, std::string command, RTLIL::Design *design) in run_frontend() function
1080 run_frontend(filename, command, nullptr, nullptr, design); in run_frontend()
1392 run_frontend(args[1], "script", design);
1394 run_frontend(args[1], "script", NULL, &args[2], design);
/dports/devel/py-numba/numba-0.51.2/numba/stencils/
H A Dstencil.py644 stencil_ir = compiler.run_frontend(stencil_func)
795 kernel_ir = compiler.run_frontend(func)
/dports/devel/py-numba/numba-0.51.2/numba/core/
H A Dcompiler.py217 def run_frontend(func, inline_closures=False, emit_dels=False): function
H A Duntyped_passes.py334 from numba.core.compiler import run_frontend
385 py_func_ir = run_frontend(pyfunc)
H A Dinline_closurecall.py561 callee_ir = compiler.run_frontend(callee, inline_closures=True)
H A Dir_utils.py1658 ir = compiler.run_frontend(f)
/dports/devel/py-numba/numba-0.51.2/docs/source/developer/
H A Dstencil.rst133 access to the corresponding function on which ``run_frontend`` is
H A Darchitecture.rst757 is then ``eval``'ed into existence and the Numba compiler's run_frontend
/dports/devel/py-numba/numba-0.51.2/numba/parfors/
H A Dparfor_lowering.py1194 gufunc_ir = compiler.run_frontend(gufunc_func)