/external/adhd/cras/src/server/ |
D | cras_dsp_pipeline.h | 35 struct pipeline; 45 struct pipeline *cras_dsp_pipeline_create(struct ini *ini, 50 void cras_dsp_pipeline_free(struct pipeline *pipeline); 58 int cras_dsp_pipeline_load(struct pipeline *pipeline); 66 int cras_dsp_pipeline_instantiate(struct pipeline *pipeline, int sample_rate); 71 void cras_dsp_pipeline_deinstantiate(struct pipeline *pipeline); 78 int cras_dsp_pipeline_get_delay(struct pipeline *pipeline); 81 int cras_dsp_pipeline_get_num_input_channels(struct pipeline *pipeline); 82 int cras_dsp_pipeline_get_num_output_channels(struct pipeline *pipeline); 93 float *cras_dsp_pipeline_get_source_buffer(struct pipeline *pipeline, [all …]
|
D | cras_dsp_pipeline.c | 100 struct pipeline { struct 278 static int topological_sort(struct pipeline *pipeline, in topological_sort() argument 288 struct ini *ini = pipeline->ini; in topological_sort() 305 if (topological_sort(pipeline, env, flow->from, visited) < 0) in topological_sort() 313 instance = ARRAY_APPEND_ZERO(&pipeline->instances); in topological_sort() 324 if (find_origin_port(ini, &pipeline->instances, plugin, in topological_sort() 341 &pipeline->instances, origin, in topological_sort() 361 &pipeline->instances, origin, in topological_sort() 402 struct pipeline *cras_dsp_pipeline_create(struct ini *ini, in cras_dsp_pipeline_create() 406 struct pipeline *pipeline; in cras_dsp_pipeline_create() local [all …]
|
D | cras_dsp.c | 29 struct pipeline *pipeline; member 51 static void destroy_pipeline(struct pipeline *pipeline) in destroy_pipeline() argument 55 private_ini = cras_dsp_pipeline_get_ini(pipeline); in destroy_pipeline() 56 cras_dsp_pipeline_free(pipeline); in destroy_pipeline() 67 static struct pipeline *prepare_pipeline(struct cras_dsp_context *ctx, in prepare_pipeline() 70 struct pipeline *pipeline; in prepare_pipeline() local 73 pipeline = cras_dsp_pipeline_create(target_ini, &ctx->env, purpose); in prepare_pipeline() 75 if (pipeline) { in prepare_pipeline() 82 if (cras_dsp_pipeline_load(pipeline) != 0) { in prepare_pipeline() 87 if (cras_dsp_pipeline_instantiate(pipeline, ctx->sample_rate) != 0) { in prepare_pipeline() [all …]
|
/external/mesa3d/src/gallium/auxiliary/draw/ |
D | draw_pipe.c | 43 draw->pipeline.wide_line = draw_wide_line_stage( draw ); in draw_pipeline_init() 44 draw->pipeline.wide_point = draw_wide_point_stage( draw ); in draw_pipeline_init() 45 draw->pipeline.stipple = draw_stipple_stage( draw ); in draw_pipeline_init() 46 draw->pipeline.unfilled = draw_unfilled_stage( draw ); in draw_pipeline_init() 47 draw->pipeline.twoside = draw_twoside_stage( draw ); in draw_pipeline_init() 48 draw->pipeline.offset = draw_offset_stage( draw ); in draw_pipeline_init() 49 draw->pipeline.clip = draw_clip_stage( draw ); in draw_pipeline_init() 50 draw->pipeline.flatshade = draw_flatshade_stage( draw ); in draw_pipeline_init() 51 draw->pipeline.cull = draw_cull_stage( draw ); in draw_pipeline_init() 52 draw->pipeline.user_cull = draw_user_cull_stage( draw ); in draw_pipeline_init() [all …]
|
D | draw_pipe_validate.c | 72 if (rasterizer->line_stipple_enable && draw->pipeline.line_stipple) in draw_need_pipeline() 76 if (roundf(rasterizer->line_width) > draw->pipeline.wide_line_threshold) in draw_need_pipeline() 80 if ((!rasterizer->multisample && rasterizer->line_smooth) && draw->pipeline.aaline) in draw_need_pipeline() 88 if (rasterizer->point_size > draw->pipeline.wide_point_threshold) in draw_need_pipeline() 93 && draw->pipeline.wide_point_sprites) in draw_need_pipeline() 97 if ((!rasterizer->multisample && rasterizer->point_smooth) && draw->pipeline.aapoint) in draw_need_pipeline() 101 if (rasterizer->sprite_coord_enable && draw->pipeline.point_sprite) in draw_need_pipeline() 109 if (rasterizer->poly_stipple_enable && draw->pipeline.pstipple) in draw_need_pipeline() 151 struct draw_stage *next = draw->pipeline.rasterize; in validate_pipeline() 164 roundf(rast->line_width) > draw->pipeline.wide_line_threshold && in validate_pipeline() [all …]
|
/external/mesa3d/src/broadcom/vulkan/ |
D | v3dv_pipeline.c | 155 v3dv_destroy_pipeline(struct v3dv_pipeline *pipeline, in v3dv_destroy_pipeline() argument 159 if (!pipeline) in v3dv_destroy_pipeline() 165 destroy_pipeline_stage(device, pipeline->vs, pAllocator); in v3dv_destroy_pipeline() 166 destroy_pipeline_stage(device, pipeline->vs_bin, pAllocator); in v3dv_destroy_pipeline() 167 destroy_pipeline_stage(device, pipeline->fs, pAllocator); in v3dv_destroy_pipeline() 168 destroy_pipeline_stage(device, pipeline->cs, pAllocator); in v3dv_destroy_pipeline() 170 if (pipeline->spill.bo) { in v3dv_destroy_pipeline() 171 assert(pipeline->spill.size_per_thread > 0); in v3dv_destroy_pipeline() 172 v3dv_bo_free(device, pipeline->spill.bo); in v3dv_destroy_pipeline() 175 if (pipeline->default_attribute_values) { in v3dv_destroy_pipeline() [all …]
|
D | v3dv_uniforms.c | 46 cmd_buffer->state.pipeline->layout->push_constant_size == 0) in check_push_constants_ubo() 88 struct v3dv_pipeline *pipeline, in write_tmu_p0() argument 96 &cmd_buffer->state.descriptor_state[v3dv_pipeline_get_binding_point(pipeline)]; in write_tmu_p0() 98 v3dv_pipeline_combined_index_key_unpack(pipeline->combined_index_to_key_map[unit], in write_tmu_p0() 104 v3dv_descriptor_map_get_texture_bo(descriptor_state, &pipeline->texture_map, in write_tmu_p0() 105 pipeline->layout, texture_idx); in write_tmu_p0() 111 &pipeline->texture_map, in write_tmu_p0() 112 pipeline->layout, in write_tmu_p0() 124 struct v3dv_pipeline *pipeline, in write_tmu_p1() argument 132 &cmd_buffer->state.descriptor_state[v3dv_pipeline_get_binding_point(pipeline)]; in write_tmu_p1() [all …]
|
/external/deqp-deps/amber/src/ |
D | command.cc | 89 PipelineCommand::PipelineCommand(Type type, Pipeline* pipeline) in PipelineCommand() argument 90 : Command(type), pipeline_(pipeline) {} in PipelineCommand() 94 DrawRectCommand::DrawRectCommand(Pipeline* pipeline, PipelineData data) in DrawRectCommand() argument 95 : PipelineCommand(Type::kDrawRect, pipeline), data_(data) {} in DrawRectCommand() 99 DrawGridCommand::DrawGridCommand(Pipeline* pipeline, PipelineData data) in DrawGridCommand() argument 100 : PipelineCommand(Type::kDrawGrid, pipeline), data_(data) {} in DrawGridCommand() 104 DrawArraysCommand::DrawArraysCommand(Pipeline* pipeline, PipelineData data) in DrawArraysCommand() argument 105 : PipelineCommand(Type::kDrawArrays, pipeline), data_(data) {} in DrawArraysCommand() 114 ComputeCommand::ComputeCommand(Pipeline* pipeline) in ComputeCommand() argument 115 : PipelineCommand(Type::kCompute, pipeline) {} in ComputeCommand() [all …]
|
D | shader_compiler_test.cc | 111 Pipeline pipeline(PipelineType::kCompute); in TEST_F() local 112 std::tie(r, binary) = sc.Compile(&pipeline, &shader_info, ShaderMap()); in TEST_F() 130 Pipeline pipeline(PipelineType::kCompute); in TEST_F() local 131 std::tie(r, binary) = sc.Compile(&pipeline, &shader_info, ShaderMap()); in TEST_F() 150 Pipeline pipeline(PipelineType::kCompute); in TEST_F() local 151 std::tie(r, binary) = sc.Compile(&pipeline, &shader_info, ShaderMap()); in TEST_F() 167 Pipeline pipeline(PipelineType::kCompute); in TEST_F() local 168 std::tie(r, binary) = sc.Compile(&pipeline, &shader_info, ShaderMap()); in TEST_F() 219 Pipeline pipeline(PipelineType::kCompute); in TEST_F() local 220 std::tie(r, unopt_binary) = sc.Compile(&pipeline, &unoptimized, ShaderMap()); in TEST_F() [all …]
|
D | verifier_test.cc | 58 Pipeline pipeline(PipelineType::kGraphics); in TEST_F() local 59 auto color_buf = pipeline.GenerateDefaultColorAttachmentBuffer(); in TEST_F() 95 Pipeline pipeline(PipelineType::kGraphics); in TEST_F() local 96 auto color_buf = pipeline.GenerateDefaultColorAttachmentBuffer(); in TEST_F() 128 Pipeline pipeline(PipelineType::kGraphics); in TEST_F() local 129 auto color_buf = pipeline.GenerateDefaultColorAttachmentBuffer(); in TEST_F() 157 Pipeline pipeline(PipelineType::kGraphics); in TEST_F() local 158 auto color_buf = pipeline.GenerateDefaultColorAttachmentBuffer(); in TEST_F() 189 Pipeline pipeline(PipelineType::kGraphics); in TEST_F() local 190 auto color_buf = pipeline.GenerateDefaultColorAttachmentBuffer(); in TEST_F() [all …]
|
/external/deqp-deps/amber/src/vkscript/ |
D | command_parser_test.cc | 34 Pipeline pipeline(PipelineType::kGraphics); in TEST_F() local 36 CommandParser cp(&script, &pipeline, 1, data); in TEST_F() 72 Pipeline pipeline(PipelineType::kGraphics); in TEST_F() local 74 CommandParser cp(&script, &pipeline, 1, data); in TEST_F() 94 Pipeline pipeline(PipelineType::kGraphics); in TEST_F() local 96 CommandParser cp(&script, &pipeline, 1, data); in TEST_F() 116 Pipeline pipeline(PipelineType::kGraphics); in TEST_F() local 118 CommandParser cp(&script, &pipeline, 1, data); in TEST_F() 138 Pipeline pipeline(PipelineType::kGraphics); in TEST_F() local 140 CommandParser cp(&script, &pipeline, 1, data); in TEST_F() [all …]
|
/external/mesa3d/src/gallium/frontends/lavapipe/ |
D | lvp_pipeline.c | 84 LVP_FROM_HANDLE(lvp_pipeline, pipeline, _pipeline); in lvp_DestroyPipeline() 89 if (pipeline->shader_cso[PIPE_SHADER_VERTEX]) in lvp_DestroyPipeline() 90 … device->queue.ctx->delete_vs_state(device->queue.ctx, pipeline->shader_cso[PIPE_SHADER_VERTEX]); in lvp_DestroyPipeline() 91 if (pipeline->shader_cso[PIPE_SHADER_FRAGMENT]) in lvp_DestroyPipeline() 92 … device->queue.ctx->delete_fs_state(device->queue.ctx, pipeline->shader_cso[PIPE_SHADER_FRAGMENT]); in lvp_DestroyPipeline() 93 if (pipeline->shader_cso[PIPE_SHADER_GEOMETRY]) in lvp_DestroyPipeline() 94 … device->queue.ctx->delete_gs_state(device->queue.ctx, pipeline->shader_cso[PIPE_SHADER_GEOMETRY]); in lvp_DestroyPipeline() 95 if (pipeline->shader_cso[PIPE_SHADER_TESS_CTRL]) in lvp_DestroyPipeline() 96 …device->queue.ctx->delete_tcs_state(device->queue.ctx, pipeline->shader_cso[PIPE_SHADER_TESS_CTRL]… in lvp_DestroyPipeline() 97 if (pipeline->shader_cso[PIPE_SHADER_TESS_EVAL]) in lvp_DestroyPipeline() [all …]
|
/external/mesa3d/src/intel/vulkan/ |
D | genX_pipeline.c | 88 emit_vertex_input(struct anv_graphics_pipeline *pipeline, in emit_vertex_input() argument 91 const struct brw_vs_prog_data *vs_prog_data = get_vs_prog_data(pipeline); in emit_vertex_input() 114 p = anv_batch_emitn(&pipeline->base.batch, num_dwords, in emit_vertex_input() 150 enum isl_format format = anv_get_isl_format(&pipeline->base.device->info, in emit_vertex_input() 183 anv_batch_emit(&pipeline->base.batch, GENX(3DSTATE_VF_INSTANCING), vfi) { in emit_vertex_input() 184 vfi.InstancingEnable = pipeline->vb[desc->binding].instanced; in emit_vertex_input() 187 pipeline->vb[desc->binding].instance_divisor; in emit_vertex_input() 224 anv_batch_emit(&pipeline->base.batch, GENX(3DSTATE_VF_INSTANCING), vfi) { in emit_vertex_input() 231 anv_batch_emit(&pipeline->base.batch, GENX(3DSTATE_VF_SGVS), sgvs) { in emit_vertex_input() 257 anv_batch_emit(&pipeline->base.batch, GENX(3DSTATE_VF_INSTANCING), vfi) { in emit_vertex_input() [all …]
|
D | anv_pipeline.c | 305 anv_pipeline_init(struct anv_pipeline *pipeline, in anv_pipeline_init() argument 313 memset(pipeline, 0, sizeof(*pipeline)); in anv_pipeline_init() 315 vk_object_base_init(&device->vk, &pipeline->base, in anv_pipeline_init() 317 pipeline->device = device; in anv_pipeline_init() 322 pipeline->batch.alloc = pAllocator ? pAllocator : &device->vk.alloc; in anv_pipeline_init() 323 pipeline->batch.relocs = &pipeline->batch_relocs; in anv_pipeline_init() 324 pipeline->batch.status = VK_SUCCESS; in anv_pipeline_init() 326 result = anv_reloc_list_init(&pipeline->batch_relocs, in anv_pipeline_init() 327 pipeline->batch.alloc); in anv_pipeline_init() 331 pipeline->mem_ctx = ralloc_context(NULL); in anv_pipeline_init() [all …]
|
/external/mesa3d/src/amd/vulkan/ |
D | radv_pipeline.c | 129 bool radv_pipeline_has_ngg(const struct radv_pipeline *pipeline) in radv_pipeline_has_ngg() argument 132 if (pipeline->shaders[MESA_SHADER_GEOMETRY]) in radv_pipeline_has_ngg() 133 variant = pipeline->shaders[MESA_SHADER_GEOMETRY]; in radv_pipeline_has_ngg() 134 else if (pipeline->shaders[MESA_SHADER_TESS_EVAL]) in radv_pipeline_has_ngg() 135 variant = pipeline->shaders[MESA_SHADER_TESS_EVAL]; in radv_pipeline_has_ngg() 136 else if (pipeline->shaders[MESA_SHADER_VERTEX]) in radv_pipeline_has_ngg() 137 variant = pipeline->shaders[MESA_SHADER_VERTEX]; in radv_pipeline_has_ngg() 143 bool radv_pipeline_has_ngg_passthrough(const struct radv_pipeline *pipeline) in radv_pipeline_has_ngg_passthrough() argument 145 assert(radv_pipeline_has_ngg(pipeline)); in radv_pipeline_has_ngg_passthrough() 148 if (pipeline->shaders[MESA_SHADER_GEOMETRY]) in radv_pipeline_has_ngg_passthrough() [all …]
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_pass_pipeline_test.cc | 115 HloPassPipeline pipeline(TestName()); in TEST_F() local 116 pipeline.AddPass<FooToBarModulePass>(); in TEST_F() 120 TF_ASSERT_OK_AND_ASSIGN(bool changed, pipeline.Run(module.get())); in TEST_F() 138 HloPassPipeline pipeline(TestName()); in TEST_F() local 139 pipeline.AddPass<FooToBarModulePass>(); in TEST_F() 141 TF_ASSERT_OK_AND_ASSIGN(bool changed, pipeline.Run(module.get())); in TEST_F() 169 HloPassPipeline pipeline(TestName()); in TEST_F() local 170 pipeline.AddPass<BazToQuxModuleGroupPass>(); in TEST_F() 171 pipeline.AddPass<FooToBarModulePass>(); in TEST_F() 181 pipeline.RunOnModuleGroup(&module_group)); in TEST_F() [all …]
|
/external/mesa3d/src/mesa/tnl/ |
D | t_pipeline.c | 44 tnl->pipeline.new_state = ~0; in _tnl_install_pipeline() 49 struct tnl_pipeline_stage *s = &tnl->pipeline.stages[i]; in _tnl_install_pipeline() 55 tnl->pipeline.nr_stages = i; in _tnl_install_pipeline() 63 for (i = 0 ; i < tnl->pipeline.nr_stages ; i++) { in _tnl_destroy_pipeline() 64 struct tnl_pipeline_stage *s = &tnl->pipeline.stages[i]; in _tnl_destroy_pipeline() 69 tnl->pipeline.nr_stages = 0; in _tnl_destroy_pipeline() 80 if (tnl->vb.AttribPtr[i]->size != tnl->pipeline.last_attrib_size[i] || in check_input_changes() 81 tnl->vb.AttribPtr[i]->stride != tnl->pipeline.last_attrib_stride[i]) { in check_input_changes() 82 tnl->pipeline.last_attrib_size[i] = tnl->vb.AttribPtr[i]->size; in check_input_changes() 83 tnl->pipeline.last_attrib_stride[i] = tnl->vb.AttribPtr[i]->stride; in check_input_changes() [all …]
|
/external/mesa3d/src/freedreno/vulkan/ |
D | tu_pipeline.c | 66 tu6_load_state_size(struct tu_pipeline *pipeline, bool compute) in tu6_load_state_size() argument 70 for (unsigned i = 0; i < pipeline->layout->num_sets; i++) { in tu6_load_state_size() 71 if (pipeline && !(pipeline->active_desc_sets & (1u << i))) in tu6_load_state_size() 74 struct tu_descriptor_set_layout *set_layout = pipeline->layout->set[i].layout; in tu6_load_state_size() 127 tu6_emit_load_state(struct tu_pipeline *pipeline, bool compute) in tu6_emit_load_state() argument 129 unsigned size = tu6_load_state_size(pipeline, compute); in tu6_emit_load_state() 134 tu_cs_begin_sub_stream(&pipeline->cs, size, &cs); in tu6_emit_load_state() 136 struct tu_pipeline_layout *layout = pipeline->layout; in tu6_emit_load_state() 154 if (!(pipeline->active_desc_sets & (1u << i))) in tu6_emit_load_state() 241 pipeline->load_state = tu_cs_end_draw_state(&pipeline->cs, &cs); in tu6_emit_load_state() [all …]
|
/external/deqp/android/cts/master/src/ |
D | vk-waivers.txt | 78 dEQP-VK.pipeline.sampler.exact_sampling.b8g8r8_snorm.solid_color.normalized_coords.centered 79 dEQP-VK.pipeline.sampler.exact_sampling.b8g8r8_snorm.solid_color.normalized_coords.edge_left 80 dEQP-VK.pipeline.sampler.exact_sampling.b8g8r8_snorm.solid_color.normalized_coords.edge_right 81 dEQP-VK.pipeline.sampler.exact_sampling.b8g8r8_snorm.solid_color.unnormalized_coords.centered 82 dEQP-VK.pipeline.sampler.exact_sampling.b8g8r8_snorm.solid_color.unnormalized_coords.edge_left 83 dEQP-VK.pipeline.sampler.exact_sampling.b8g8r8_snorm.solid_color.unnormalized_coords.edge_right 84 dEQP-VK.pipeline.sampler.exact_sampling.r8g8b8a8_snorm.solid_color.normalized_coords.centered 85 dEQP-VK.pipeline.sampler.exact_sampling.r8g8b8a8_snorm.solid_color.normalized_coords.edge_left 86 dEQP-VK.pipeline.sampler.exact_sampling.r8g8b8a8_snorm.solid_color.normalized_coords.edge_right 87 dEQP-VK.pipeline.sampler.exact_sampling.r8g8b8a8_snorm.solid_color.unnormalized_coords.centered [all …]
|
/external/grpc-grpc-java/netty/src/test/java/io/grpc/netty/ |
D | ProtocolNegotiatorsTest.java | 87 private ChannelPipeline pipeline = channel.pipeline(); field in ProtocolNegotiatorsTest 114 pipeline.addFirst(handler); in tlsAdapter_exceptionClosesChannel() 116 pipeline.fireExceptionCaught(new Exception("bad")); in tlsAdapter_exceptionClosesChannel() 125 pipeline.addLast(handler); in tlsHandler_handlerAddedAddsSslHandler() 127 assertTrue(pipeline.first() instanceof SslHandler); in tlsHandler_handlerAddedAddsSslHandler() 133 pipeline.addLast(handler); in tlsHandler_userEventTriggeredNonSslEvent() 134 channelHandlerCtx = pipeline.context(handler); in tlsHandler_userEventTriggeredNonSslEvent() 137 pipeline.fireUserEventTriggered(nonSslEvent); in tlsHandler_userEventTriggeredNonSslEvent() 140 ChannelHandlerContext grpcHandlerCtx = pipeline.context(grpcHandler); in tlsHandler_userEventTriggeredNonSslEvent() 154 pipeline.addLast(handler); in tlsHandler_userEventTriggeredSslEvent_unsupportedProtocol() [all …]
|
/external/deqp/modules/gles31/functional/ |
D | es31fProgramPipelineStateQueryTests.cpp | 102 const glu::ProgramPipeline pipeline (m_context.getRenderContext()); in iterate() local 122 gl.glBindProgramPipeline(pipeline.getPipeline()); in iterate() 123 gl.glUseProgramStages(pipeline.getPipeline(), GL_VERTEX_SHADER_BIT, vtxProgram.getProgram()); in iterate() 124 gl.glUseProgramStages(pipeline.getPipeline(), GL_FRAGMENT_SHADER_BIT, frgProgram.getProgram()); in iterate() 131 verifyStatePipelineInteger(result, gl, pipeline.getPipeline(), GL_ACTIVE_PROGRAM, 0, m_verifier); in iterate() 137 gl.glActiveShaderProgram(pipeline.getPipeline(), frgProgram.getProgram()); in iterate() 139 …verifyStatePipelineInteger(result, gl, pipeline.getPipeline(), GL_ACTIVE_PROGRAM, (int)frgProgram.… in iterate() 197 glu::ProgramPipeline pipeline (m_context.getRenderContext()); in iterate() local 199 gl.glBindProgramPipeline(pipeline.getPipeline()); in iterate() 202 verifyStatePipelineInteger(result, gl, pipeline.getPipeline(), m_targetStage, 0, m_verifier); in iterate() [all …]
|
/external/guice/extensions/servlet/test/com/google/inject/servlet/ |
D | FilterDispatchIntegrationTest.java | 87 final FilterPipeline pipeline = injector.getInstance(FilterPipeline.class); in testDispatchRequestToManagedPipeline() local 88 pipeline.initPipeline(null); in testDispatchRequestToManagedPipeline() 108 pipeline.dispatch(requestMock, responseMock, filterChain); in testDispatchRequestToManagedPipeline() 109 pipeline.destroyPipeline(); in testDispatchRequestToManagedPipeline() 145 final FilterPipeline pipeline = injector.getInstance(FilterPipeline.class); in testDispatchThatNoFiltersFire() local 146 pipeline.initPipeline(null); in testDispatchThatNoFiltersFire() 158 pipeline.dispatch(requestMock, null, filterChain); in testDispatchThatNoFiltersFire() 159 pipeline.destroyPipeline(); in testDispatchThatNoFiltersFire() 189 final FilterPipeline pipeline = injector.getInstance(FilterPipeline.class); in testDispatchFilterPipelineWithRegexMatching() local 190 pipeline.initPipeline(null); in testDispatchFilterPipelineWithRegexMatching() [all …]
|
/external/llvm-project/mlir/test/Pass/ |
D | dynamic-pipeline.mlir | 1 // RUN: mlir-opt %s -pass-pipeline='module(test-dynamic-pipeline{op-name=inner_mod1, dynamic-pipeli… 2 // RUN: mlir-opt %s -pass-pipeline='module(test-dynamic-pipeline{op-name=inner_mod2, dynamic-pipeli… 3 // RUN: mlir-opt %s -pass-pipeline='module(test-dynamic-pipeline{op-name=inner_mod1,inner_mod2, dyn… 4 // RUN: mlir-opt %s -pass-pipeline='module(test-dynamic-pipeline{dynamic-pipeline=func(cse,canonica… 14 // MOD2-ONLY: dynamic-pipeline skip op name: inner_mod1 35 // MOD1-ONLY: dynamic-pipeline skip op name: inner_mod2
|
D | pipeline-parsing.mlir | 1 …pipeline='module(test-module-pass,func(test-function-pass)),func(test-function-pass)' -pass-pipeli… 2 …RUN: mlir-opt %s -test-textual-pm-nested-pipeline -verify-each=false -pass-timing -pass-timing-dis… 3 // RUN: not mlir-opt %s -pass-pipeline='module(test-module-pass' 2>&1 | FileCheck --check-prefix=CH… 4 // RUN: not mlir-opt %s -pass-pipeline='module(test-module-pass))' 2>&1 | FileCheck --check-prefix=… 5 // RUN: not mlir-opt %s -pass-pipeline='module()(' 2>&1 | FileCheck --check-prefix=CHECK_ERROR_3 %s 6 // RUN: not mlir-opt %s -pass-pipeline=',' 2>&1 | FileCheck --check-prefix=CHECK_ERROR_4 %s 7 // RUN: not mlir-opt %s -pass-pipeline='func(test-module-pass)' 2>&1 | FileCheck --check-prefix=CHE… 9 // CHECK_ERROR_1: encountered unbalanced parentheses while parsing pipeline 10 …CHECK_ERROR_2: encountered extra closing ')' creating unbalanced parentheses while parsing pipeline 11 // CHECK_ERROR_3: expected ',' after parsing pipeline [all …]
|
/external/llvm-project/llvm/test/Other/ |
D | new-pm-cspgo.ll | 4 …default<O2>' -pgo-kind=pgo-instr-use-pipeline -profile-file='%t-noncs.profdata' -cspgo-kind=cspgo-… 5 …re-link<O2>' -pgo-kind=pgo-instr-use-pipeline -profile-file='%t-noncs.profdata' -cspgo-kind=cspgo-… 6 …thinlto<O2>' -pgo-kind=pgo-instr-use-pipeline -profile-file='%t-noncs.profdata' -cspgo-kind=cspgo-… 7 …re-link<O2>' -pgo-kind=pgo-instr-use-pipeline -profile-file='%t-noncs.profdata' -cspgo-kind=cspgo-… 8 …es='lto<O2>' -pgo-kind=pgo-instr-use-pipeline -profile-file='%t-noncs.profdata' -cspgo-kind=cspgo-… 20 …'default<O2>' -pgo-kind=pgo-instr-use-pipeline -profile-file='%t-cs.profdata' -cspgo-kind=cspgo-in… 21 …pre-link<O2>' -pgo-kind=pgo-instr-use-pipeline -profile-file='%t-cs.profdata' -cspgo-kind=cspgo-in… 22 …'thinlto<O2>' -pgo-kind=pgo-instr-use-pipeline -profile-file='%t-cs.profdata' -cspgo-kind=cspgo-in… 23 …re-link<O2>' -pgo-kind=pgo-instr-use-pipeline -profile-file='%t-noncs.profdata' -cspgo-kind=cspgo-… 24 …ses='lto<O2>' -pgo-kind=pgo-instr-use-pipeline -profile-file='%t-cs.profdata' -cspgo-kind=cspgo-in…
|