Home
last modified time | relevance | path

Searched refs:compile_func (Results 1 – 20 of 20) sorted by relevance

/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/tvm/python/tvm/contrib/
H A Dcc.py118 compile_func, options=None, output_format=None, get_target_triple=None, add_files=None argument
169 if isinstance(compile_func, str):
170 kwargs = {"cc": compile_func}
171 compile_func = create_shared
177 compile_func(outputs, objects + add_files, options=all_options, **kwargs)
179 if not output_format and hasattr(compile_func, "output_format"):
180 output_format = compile_func.output_format
183 if not get_target_triple and hasattr(compile_func, "get_target_triple"):
184 get_target_triple = compile_func.get_target_triple
/dports/devel/py-numba/numba-0.51.2/numba/tests/
H A Dtest_nested_calls.py64 def compile_func(self, pyfunc, objmode=False): member in TestNestedCall
92 cfunc, check = self.compile_func(f, objmode)
103 cfunc, check = self.compile_func(g, objmode)
114 cfunc, check = self.compile_func(star)
121 cfunc, check = self.compile_func(star_call, objmode)
132 cfunc, check = self.compile_func(argcast)
H A Dtest_dispatcher.py108 def compile_func(self, pyfunc): member in BaseTest
629 f, check = self.compile_func(addsub)
652 f, check = self.compile_func(addsub_defaults)
679 f, check = self.compile_func(star_defaults)
H A Dtest_indexing.py670 def compile_func(arr): function
677 cfunc = compile_func(a)
/dports/sysutils/py-diffoscope/diffoscope-204/diffoscope/
H A Dfeeders.py55 compile_func = compile_string_regex
58 compile_func = compile_bytes_regex
62 buf = compile_func(regex).sub(replace, buf)
/dports/games/spring/spring_98.0/AI/Interfaces/Python/builder/template/
H A Dengine.py209 compile_func = self.tags[command]
213 compiled_result = compile_func(self, token)
521compile_func = curry(generic_tag_compiler, params, defaults, getattr(func, "_decorated_function", …
522 compile_func.__doc__ = func.__doc__
523 self.tag(getattr(func, "_decorated_function", func).__name__, compile_func)
558compile_func = curry(generic_tag_compiler, params, defaults, getattr(func, "_decorated_function", …
559 compile_func.__doc__ = func.__doc__
560 self.tag(getattr(func, "_decorated_function", func).__name__, compile_func)
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/tvm/python/tvm/rpc/
H A Dminrpc.py47 def with_minrpc(compile_func, server="posix_popen_server", runtime="libtvm"): argument
78 compile_func, options=options, add_files=[server_path, runtime_path]
/dports/misc/tvm/incubator-tvm-0.6.1/python/tvm/micro/
H A Dbase.py155 def compile_func(obj_path, src_path, **kwargs): function
162 return _cc.cross_compiler(compile_func)
/dports/misc/py-tvm/incubator-tvm-0.6.1/python/tvm/micro/
H A Dbase.py155 def compile_func(obj_path, src_path, **kwargs): function
162 return _cc.cross_compiler(compile_func)
/dports/misc/tvm/incubator-tvm-0.6.1/python/tvm/contrib/
H A Dcc.py81 def cross_compiler(compile_func, base_options=None, output_format="so"): argument
106 compile_func(outputs, objects, options=all_options)
/dports/misc/py-tvm/incubator-tvm-0.6.1/python/tvm/contrib/
H A Dcc.py81 def cross_compiler(compile_func, base_options=None, output_format="so"): argument
106 compile_func(outputs, objects, options=all_options)
/dports/lang/halide/Halide-release_2019_08_27-2654-g664dc4993/src/
H A DCodeGen_GPU_Host.h37 …void compile_func(const LoweredFunc &func, const std::string &simple_name, const std::string &exte…
H A DCodeGen_Hexagon.h20 void compile_func(const LoweredFunc &f,
H A DCodeGen_GPU_Host.cpp143 void CodeGen_GPU_Host<CodeGen_CPU>::compile_func(const LoweredFunc &f, in compile_func() function in Halide::Internal::CodeGen_GPU_Host
154 CodeGen_CPU::compile_func(f, simple_name, extern_name); in compile_func()
H A DCodeGen_LLVM.h95 …virtual void compile_func(const LoweredFunc &func, const std::string &simple_name, const std::stri…
H A DCodeGen_Hexagon.cpp426 void CodeGen_Hexagon::compile_func(const LoweredFunc &f, in compile_func() function in Halide::Internal::CodeGen_Hexagon
H A DCodeGen_LLVM.cpp657 compile_func(f, names.simple_name, names.extern_name); in compile()
784 void CodeGen_LLVM::compile_func(const LoweredFunc &f, const std::string &simple_name, in compile_func() function in Halide::Internal::CodeGen_LLVM
/dports/x11-fonts/py-fontmake/fontmake-1.8.0/Lib/fontmake/
H A Dfont_project.py280 compile_func, fmt = compileTTF, "TTF"
284 compile_func, fmt = compileOTF, "OTF"
290 yield compile_func(ufo, **options)
/dports/audio/beets/beets-1.4.9/beets/util/
H A Dfunctemplate.py115 def compile_func(arg_names, statements, name='_the_func', debug=False): function
614 func = compile_func(
/dports/net-im/pidgin-sipe/pidgin-sipe-1.24.0/src/core/
H A Dsipe-tls.c152 typedef void compile_func(struct tls_internal_state *state, typedef
159 compile_func *compiler;