Home
last modified time | relevance | path

Searched refs:load_output (Results 1 – 15 of 15) sorted by relevance

/external/mesa3d/src/intel/compiler/
Dintel_nir_tcs_workarounds.c76 load_output(nir_builder *b, int num_components, int offset, int component) in load_output() function
88 nir_def *inner = load_output(b, 2, 0, 2); in emit_quads_workaround()
89 nir_def *outer = load_output(b, 4, 1, 0); in emit_quads_workaround()
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/
Drun_tests.py55 def load_output(filename): function
70 output = load_output(output_file)
71 output_b = load_output(output_file + '.b')
/external/pytorch/benchmarks/instruction_counts/worker/
Dmain.py122 def load_output(self) -> Union[WorkerTimerArgs, WorkerOutput, WorkerFailure]: member in WorkerUnpickler
/external/mesa3d/docs/relnotes/
D17.2.4.rst74 - nir/intrinsics: Set the correct num_indices for load_output
D21.2.0.rst530 - agx: Implement load_output
724 - nir/lower_fragcolor: Avoid redundant load_output
D23.1.0.rst542 - nir: Add Mali load_output taking converison
546 - pan/bi: Lower load_output to make sysval explicit
D22.0.0.rst2240 - microsoft/compiler: Handle load_output in the HS stage as reading a previously written patch cons…
D21.3.0.rst1472 - nir_to_tgsi: Add support for load_output/load_per_vertex_output.
D20.3.0.rst977 - pan/bi: Add load_output support
D22.2.0.rst1772 - nir_to_tgsi: Avoid swizzling from undefined channels in load_output.
/external/mesa3d/src/compiler/glsl/
Dgl_nir_lower_blend_equation_advanced.c470 load_output(nir_builder *b, nir_variable *var) in load_output() function
545 blend_source = load_output(&b, outputs[0]); in gl_nir_lower_blend_equation_advanced()
551 blend_comps[i] = swizzle(&b, load_output(&b, outputs[i]), in gl_nir_lower_blend_equation_advanced()
/external/pytorch/benchmarks/instruction_counts/execution/
Dwork.py158 result = WorkerUnpickler(f).load_output()
/external/mesa3d/src/compiler/nir/tests/
Dnir_opt_varyings_test.h580 load_output(nir_builder *b, gl_varying_slot slot, unsigned component, in load_output() function
Dopt_varyings_tests_dead_output.cpp91 nir_def *output = load_output(b1, VARYING_SLOT_##slot, 0, nir_type_float##bitsize, 0); \
/external/pytorch/test/cpp/tensorexpr/
Dtest_cuda.cpp456 ExprHandle load_output = Load::make(output_buf, {0}); in TEST() local
457 ExprHandle add_value = load_output + load_data; in TEST()