/third_party/mesa3d/src/gallium/drivers/svga/ |
D | svga_tgsi_vgpu10.c | 430 static void emit_tcs_input_declarations(struct svga_shader_emitter_v10 *emit); 431 static void emit_tcs_output_declarations(struct svga_shader_emitter_v10 *emit); 432 static boolean emit_temporaries_declaration(struct svga_shader_emitter_v10 *emit); 433 static boolean emit_constant_declaration(struct svga_shader_emitter_v10 *emit); 434 static boolean emit_sampler_declarations(struct svga_shader_emitter_v10 *emit); 435 static boolean emit_resource_declarations(struct svga_shader_emitter_v10 *emit); 436 static boolean emit_vgpu10_immediates_block(struct svga_shader_emitter_v10 *emit); 437 static boolean emit_index_range_declaration(struct svga_shader_emitter_v10 *emit); 438 static void emit_temp_prescale_instructions(struct svga_shader_emitter_v10 *emit); 441 emit_post_helpers(struct svga_shader_emitter_v10 *emit); [all …]
|
D | svga_tgsi_insn.c | 38 static boolean emit_vs_postamble( struct svga_shader_emitter *emit ); 39 static boolean emit_ps_postamble( struct svga_shader_emitter *emit ); 87 translate_dst_register( struct svga_shader_emitter *emit, in translate_dst_register() argument 99 dest = emit->output_map[reg->Register.Index]; in translate_dst_register() 100 emit->num_output_writes++; in translate_dst_register() 165 svga_arl_needs_adjustment( const struct svga_shader_emitter *emit ) in svga_arl_needs_adjustment() argument 169 for (i = 0; i < emit->num_arl_consts; ++i) { in svga_arl_needs_adjustment() 170 if (emit->arl_consts[i].arl_num == emit->current_arl) in svga_arl_needs_adjustment() 178 svga_arl_adjustment( const struct svga_shader_emitter *emit ) in svga_arl_adjustment() argument 182 for (i = 0; i < emit->num_arl_consts; ++i) { in svga_arl_adjustment() [all …]
|
D | svga_tgsi_decl_sm30.c | 39 translate_vs_ps_semantic(struct svga_shader_emitter *emit, in translate_vs_ps_semantic() argument 67 *idx = svga_remap_generic_index(emit->key.generic_remap_table, in translate_vs_ps_semantic() 99 emit_decl(struct svga_shader_emitter *emit, in emit_decl() argument 120 return (emit_instruction(emit, opcode) && in emit_decl() 121 svga_shader_emit_dwords(emit, dcl.values, ARRAY_SIZE(dcl.values))); in emit_decl() 129 emit_vface_decl(struct svga_shader_emitter *emit) in emit_vface_decl() argument 131 if (!emit->emitted_vface) { in emit_vface_decl() 135 if (!emit_decl(emit, reg, 0, 0)) in emit_vface_decl() 138 emit->emitted_vface = TRUE; in emit_vface_decl() 149 ps30_input_emit_depth_fog(struct svga_shader_emitter *emit, in ps30_input_emit_depth_fog() argument [all …]
|
D | svga_tgsi.c | 55 svga_shader_expand(struct svga_shader_emitter *emit) in svga_shader_expand() argument 58 unsigned newsize = emit->size * 2; in svga_shader_expand() 60 if (emit->buf != err_buf) in svga_shader_expand() 61 new_buf = REALLOC(emit->buf, emit->size, newsize); in svga_shader_expand() 66 emit->ptr = err_buf; in svga_shader_expand() 67 emit->buf = err_buf; in svga_shader_expand() 68 emit->size = sizeof(err_buf); in svga_shader_expand() 72 emit->size = newsize; in svga_shader_expand() 73 emit->ptr = new_buf + (emit->ptr - emit->buf); in svga_shader_expand() 74 emit->buf = new_buf; in svga_shader_expand() [all …]
|
/third_party/python/Parser/ |
D | asdl_c.py | 119 def emit(self, s, depth, reflow=True): member in EmitVisitor 153 self.emit(s, depth) 154 self.emit("", depth) 159 self.emit(s, depth) 160 self.emit("", depth) 165 self.emit(s, depth) 166 self.emit("", depth) 183 self.emit("""\ 188 self.emit("", depth) 189 …self.emit("asdl_%(name)s_seq *_Py_asdl_%(name)s_seq_new(Py_ssize_t size, PyArena *arena);" % local… [all …]
|
/third_party/mesa3d/src/mesa/drivers/dri/nouveau/ |
D | nv10_driver.h | 61 nv10_emit_framebuffer(struct gl_context *ctx, int emit); 64 nv10_emit_render_mode(struct gl_context *ctx, int emit); 67 nv10_emit_scissor(struct gl_context *ctx, int emit); 70 nv10_emit_viewport(struct gl_context *ctx, int emit); 73 nv10_emit_zclear(struct gl_context *ctx, int emit); 77 nv10_emit_cull_face(struct gl_context *ctx, int emit); 80 nv10_emit_front_face(struct gl_context *ctx, int emit); 83 nv10_emit_line_mode(struct gl_context *ctx, int emit); 86 nv10_emit_line_stipple(struct gl_context *ctx, int emit); 89 nv10_emit_point_mode(struct gl_context *ctx, int emit); [all …]
|
D | nv20_driver.h | 55 nv20_emit_framebuffer(struct gl_context *ctx, int emit); 58 nv20_emit_viewport(struct gl_context *ctx, int emit); 62 nv20_emit_point_mode(struct gl_context *ctx, int emit); 66 nv20_emit_logic_opcode(struct gl_context *ctx, int emit); 70 nv20_emit_tex_env(struct gl_context *ctx, int emit); 73 nv20_emit_frag(struct gl_context *ctx, int emit); 77 nv20_emit_tex_gen(struct gl_context *ctx, int emit); 80 nv20_emit_tex_mat(struct gl_context *ctx, int emit); 83 nv20_emit_tex_obj(struct gl_context *ctx, int emit); 86 nv20_emit_tex_shader(struct gl_context *ctx, int emit); [all …]
|
/third_party/mindspore/tests/st/graph_kernel/model/ |
D | test_split.py | 61 b = gb.emit("Abs", a, 'b') 62 c = gb.emit("Abs", b, 'c') 63 d = gb.emit("Abs", c, 'd') 64 gb.emit('Add', [b, d], 'e') 73 a = gb.emit("Abs", a0, 'a') 74 b = gb.emit("Abs", a, 'b') 75 c = gb.emit("Abs", a, 'c') 76 d = gb.emit("Abs", b, 'd') 77 e = gb.emit('Add', [c, d], 'e') 78 gb.emit("Abs", e, 'f') [all …]
|
/third_party/mindspore/mindspore/_extends/graph_kernel/expanders/ |
D | lamb_apply_optimizer_assign.py | 29 square_grad = graph_builder.emit('Mul', [grad, grad]) 30 mul_3_result = graph_builder.emit('Mul', [square_grad, one_minus_beta_2]) 31 mul_2_result = graph_builder.emit('Mul', [inputv, beta_2]) 32 next_v = graph_builder.emit('Add', [mul_2_result, mul_3_result]) 35 mul_0_result = graph_builder.emit('Mul', [inputm, beta_1]) 36 mul_1_result = graph_builder.emit('Mul', [grad, one_minus_beta_1]) 37 next_m = graph_builder.emit('Add', [mul_0_result, mul_1_result]) 42 beta_1_tensor = graph_builder.emit('BroadcastTo', [beta_1], attrs={'shape': shape}) 43 beta_2_tensor = graph_builder.emit('BroadcastTo', [beta_2], attrs={'shape': shape}) 47 beta_1_log = graph_builder.emit('Log', [beta_1_tensor]) [all …]
|
D | layernorm_grad.py | 34 x = graph_builder.emit('Cast', [x], attrs={'dst_type': 'float32'}) 35 dy = graph_builder.emit('Cast', [dy], attrs={'dst_type': 'float32'}) 36 variance = graph_builder.emit('Cast', [variance], attrs={'dst_type': 'float32'}) 37 mean = graph_builder.emit('Cast', [mean], attrs={'dst_type': 'float32'}) 38 gamma = graph_builder.emit('Cast', [gamma], attrs={'dst_type': 'float32'}) 61 var_eps = graph_builder.emit('Add', [variance, eps]) 62 var_eps_log = graph_builder.emit('Log', [var_eps]) 63 var_eps_mul = graph_builder.emit('Mul', [var_eps_log, const_neg_half]) 64 rsqrt_var_eps = graph_builder.emit('Exp', [var_eps_mul]) 66 x_sub_mean = graph_builder.emit('Sub', [x, mean]) [all …]
|
D | batchnorm.py | 43 input_x = graph_builder.emit('Cast', [input_x], attrs={'dst_type': input_x_new_type}) 49 res_y = graph_builder.emit('Cast', [res_y], attrs={'dst_type': input_x_ori_type}) 53 input_mean = graph_builder.emit( 55 input_scale = graph_builder.emit( 57 input_offset = graph_builder.emit( 59 x_sub = graph_builder.emit('Sub', [input_x, input_mean]) 60 x_sub_mul = graph_builder.emit('Mul', [input_scale, x_sub]) 61 var_add = graph_builder.emit('Add', [epsilon_v, input_variance]) 62 var_add_sqrt = graph_builder.emit('Sqrt', [var_add]) 64 var_add_sqrt = graph_builder.emit( [all …]
|
D | lamb_apply_weight_assign.py | 42 g_norm_greater_res = graph_builder.emit('Greater', [g_norm, const_zero]) 43 g_norm_res = graph_builder.emit('Cast', [g_norm_greater_res], attrs={'dst_type': dtype}) 45 g_norm = graph_builder.emit('Add', [g_norm, data_min]) 46 w_norm_g_norm = graph_builder.emit('RealDiv', [w_norm, g_norm]) 48 g_norm_value_1 = graph_builder.emit('Mul', [g_norm_res, w_norm_g_norm]) 50 g_norm_res_neg = graph_builder.emit('Neg', [g_norm_res]) 51 g_norm_res_f = graph_builder.emit('Add', [g_norm_res_neg, const_one]) 52 g_norm_value = graph_builder.emit('Add', [g_norm_value_1, g_norm_res_f]) 54 w_norm_greater_res = graph_builder.emit('Greater', [w_norm, const_zero]) 55 w_norm_res = graph_builder.emit('Cast', [w_norm_greater_res], attrs={'dst_type': dtype}) [all …]
|
D | fused_adam_weight_decay.py | 27 beta_1_mul_m = graph_builder.emit('Mul', [beta_1, m]) 28 one_sub_beta_1_mul_grad = graph_builder.emit('Mul', [one_sub_beta_1, gradient]) 29 next_m = graph_builder.emit('Add', [beta_1_mul_m, one_sub_beta_1_mul_grad]) 30 beta_2_mul_v = graph_builder.emit('Mul', [beta_2, v]) 31 grad_square = graph_builder.emit('Mul', [gradient, gradient]) 32 one_sub_beta_2_mul_grad_square = graph_builder.emit('Mul', [one_sub_beta_2, grad_square]) 33 next_v = graph_builder.emit('Add', [beta_2_mul_v, one_sub_beta_2_mul_grad_square]) 34 sqrt_next_v = graph_builder.emit('Sqrt', [next_v]) 35 sqrt_next_v_add_eps = graph_builder.emit('Add', [sqrt_next_v, eps]) 36 update = graph_builder.emit('RealDiv', [next_m, sqrt_next_v_add_eps]) [all …]
|
D | batchnorm_grad.py | 46 input_x = graph_builder.emit('Cast', [input_x], attrs={'dst_type': 'float32'}) 48 input_dy = graph_builder.emit('Cast', [input_dy], attrs={'dst_type': 'float32'}) 51 …dbeta = graph_builder.emit('ReduceSum', [input_dy], attrs={'reduce_axis': reduce_axis, 'keep_dims'… 58 var_add = graph_builder.emit('Add', [input_save_inv_variance, epsilon_v]) 59 sqrt_var_eps = graph_builder.emit('Sqrt', [var_add]) 62 inv_variance = graph_builder.emit('RealDiv', [scalar_one_v, sqrt_var_eps]) 66 input_save_mean = graph_builder.emit( 68 inv_variance = graph_builder.emit( 70 input_scale = graph_builder.emit( 72 x_sub_mean = graph_builder.emit('Sub', [input_x, input_save_mean]) [all …]
|
D | gelu_grad.py | 43 mul_double = graph_builder.emit('Mul', [input_x, input_x]) 44 mul_double_mul_tri = graph_builder.emit('Mul', [const_csvalue_tri, mul_double]) 45 mul_add_one = graph_builder.emit('Add', [const_one, mul_double_mul_tri]) 46 mul_right = graph_builder.emit('Mul', [const_csvalue_sqrt_two_div_pi, mul_add_one]) 49 mul_triple = graph_builder.emit('Mul', [input_x, mul_double]) 50 mul_triple_mul_csvalue = graph_builder.emit('Mul', [const_csvalue, mul_triple]) 51 mul_add_x = graph_builder.emit('Add', [input_x, mul_triple_mul_csvalue]) 52 tanh_para = graph_builder.emit('Mul', [const_csvalue_sqrt_two_div_pi, mul_add_x]) 55 tanh_res = graph_builder.emit('Tanh', [tanh_para]) 56 tanh_res_add_one = graph_builder.emit('Add', [const_one, tanh_res]) [all …]
|
/third_party/mesa3d/src/intel/compiler/ |
D | gfx6_gs_visitor.cpp | 69 emit(MOV(dst_reg(this->vertex_output_offset), brw_imm_ud(0u))); in emit_prolog() 74 vec4_instruction *inst = emit(MOV(dst_reg(MRF, 1), in emit_prolog() 91 emit(MOV(dst_reg(this->first_vertex), brw_imm_ud(URB_WRITE_PRIM_START))); in emit_prolog() 97 emit(MOV(dst_reg(this->prim_count), brw_imm_ud(0u))); in emit_prolog() 108 emit(MOV(dst_reg(this->max_svbi), in emit_prolog() 133 emit(GS_OPCODE_SET_PRIMITIVE_ID, dst_reg(this->primitive_id)); in emit_prolog() 167 vec4_instruction *inst = emit(MOV(dst, src_reg(tmp))); in gs_emit_vertex() 171 emit(ADD(dst_reg(this->vertex_output_offset), in gs_emit_vertex() 183 emit(MOV(dst, brw_imm_d((_3DPRIM_POINTLIST << URB_WRITE_PRIM_TYPE_SHIFT) | in gs_emit_vertex() 185 emit(ADD(dst_reg(this->prim_count), this->prim_count, brw_imm_ud(1u))); in gs_emit_vertex() [all …]
|
/third_party/node/test/parallel/ |
D | test-readline-interface.js | 185 fi.emit('data', 'a'); 197 fi.emit('data', expectedLines.join('\r')); 208 fi.emit('data', '\rfoo\r'); 220 fi.emit('data', character); 222 fi.emit('data', '\n'); 233 fi.emit('data', '\t'); 234 fi.emit('data', '\n'); 248 fi.emit('data', `${line}\n`); 266 fi.emit('data', `${expectedLine}\n`); 284 fi.emit('data', `${expectedLines.join('\n')}\n`); [all …]
|
/third_party/mesa3d/src/compiler/glsl/ |
D | builtin_int64.h | 16 body.emit(r0003); in umul64() 17 body.emit(assign(r0003, imul_high(swizzle_x(r0001), swizzle_x(r0002)), 0x02)); in umul64() 19 body.emit(assign(r0003, mul(swizzle_x(r0001), swizzle_x(r0002)), 0x01)); in umul64() 24 body.emit(assign(r0003, add(swizzle_y(r0003), r0006), 0x02)); in umul64() 26 body.emit(ret(r0003)); in umul64() 44 body.emit(r0008); in sign64() 45 body.emit(assign(r0008, rshift(swizzle_y(r0007), body.constant(int(31))), 0x02)); in sign64() 50 body.emit(assign(r0008, bit_or(swizzle_y(r0008), r000B), 0x01)); in sign64() 52 body.emit(ret(r0008)); in sign64() 72 body.emit(r000E); in udivmod64() [all …]
|
/third_party/mesa3d/src/gallium/auxiliary/draw/ |
D | draw_pt_emit.c | 54 draw_pt_emit_prepare(struct pt_emit *emit, in draw_pt_emit_prepare() argument 58 struct draw_context *draw = emit->draw; in draw_pt_emit_prepare() 71 emit->prim = prim; in draw_pt_emit_prepare() 73 draw->render->set_primitive(draw->render, emit->prim); in draw_pt_emit_prepare() 79 emit->vinfo = vinfo = draw->render->get_vertex_info(draw->render); in draw_pt_emit_prepare() 90 output_format = draw_translate_vinfo_format(vinfo->attrib[i].emit); in draw_pt_emit_prepare() 91 emit_sz = draw_translate_vinfo_size(vinfo->attrib[i].emit); in draw_pt_emit_prepare() 96 if (vinfo->attrib[i].emit == EMIT_1F_PSIZE) { in draw_pt_emit_prepare() 120 if (!emit->translate || in draw_pt_emit_prepare() 121 translate_key_compare(&emit->translate->key, &hw_key) != 0) { in draw_pt_emit_prepare() [all …]
|
/third_party/mesa3d/src/gallium/drivers/freedreno/a3xx/ |
D | fd3_draw.c | 56 struct fd3_emit *emit, unsigned index_offset) assert_dt in draw_impl() argument 58 const struct pipe_draw_info *info = emit->info; in draw_impl() 61 fd3_emit_state(ctx, ring, emit); in draw_impl() 63 if (emit->dirty & (FD_DIRTY_VTXBUF | FD_DIRTY_VTXSTATE)) in draw_impl() 64 fd3_emit_vertex_bufs(ring, emit); in draw_impl() 72 info->index_size ? emit->draw->index_bias : 0) in draw_impl() 76 info->index_size ? emit->draw->index_bias : 0) in draw_impl() 79 OUT_RING(ring, info->index_size ? emit->draw->index_bias in draw_impl() 80 : emit->draw->start); /* VFD_INDEX_OFFSET */ in draw_impl() 89 fd3_emit_get_vp(emit)->writes_psize && (info->mode == PIPE_PRIM_POINTS)) in draw_impl() [all …]
|
/third_party/mesa3d/src/gallium/drivers/freedreno/a6xx/ |
D | fd6_const.c | 111 emit_tess_bos(struct fd_ringbuffer *ring, struct fd6_emit *emit, in emit_tess_bos() argument 114 struct fd_context *ctx = emit->ctx; in emit_tess_bos() 140 fd6_build_tess_consts(struct fd6_emit *emit) in fd6_build_tess_consts() argument 142 struct fd_context *ctx = emit->ctx; in fd6_build_tess_consts() 150 unsigned num_vertices = emit->hs in fd6_build_tess_consts() 151 ? emit->patch_vertices in fd6_build_tess_consts() 152 : emit->gs->shader->nir->info.gs.vertices_in; in fd6_build_tess_consts() 155 emit->vs->output_size * num_vertices * 4, /* vs primitive stride */ in fd6_build_tess_consts() 156 emit->vs->output_size * 4, /* vs vertex stride */ in fd6_build_tess_consts() 159 emit_stage_tess_consts(constobj, emit->vs, vs_params, ARRAY_SIZE(vs_params)); in fd6_build_tess_consts() [all …]
|
/third_party/mesa3d/src/gallium/drivers/freedreno/a4xx/ |
D | fd4_draw.c | 44 struct fd4_emit *emit, unsigned index_offset) assert_dt in draw_impl() argument 46 const struct pipe_draw_info *info = emit->info; in draw_impl() 49 fd4_emit_state(ctx, ring, emit); in draw_impl() 51 if (emit->dirty & (FD_DIRTY_VTXBUF | FD_DIRTY_VTXSTATE)) in draw_impl() 52 fd4_emit_vertex_bufs(ring, emit); in draw_impl() 55 OUT_RING(ring, info->index_size ? emit->draw->index_bias in draw_impl() 56 : emit->draw->start); /* VFD_INDEX_OFFSET */ in draw_impl() 66 fd4_emit_get_vp(emit)->writes_psize && (info->mode == PIPE_PRIM_POINTS)) in draw_impl() 70 emit->binning_pass ? IGNORE_VISIBILITY : USE_VISIBILITY, info, in draw_impl() 71 emit->indirect, emit->draw, index_offset); in draw_impl() [all …]
|
D | fd4_emit.h | 75 fd4_emit_get_vp(struct fd4_emit *emit) in fd4_emit_get_vp() argument 77 if (!emit->vs) { in fd4_emit_get_vp() 78 emit->vs = emit->binning_pass ? emit->prog->bs : emit->prog->vs; in fd4_emit_get_vp() 80 return emit->vs; in fd4_emit_get_vp() 84 fd4_emit_get_fp(struct fd4_emit *emit) in fd4_emit_get_fp() argument 86 if (!emit->fs) { in fd4_emit_get_fp() 87 if (emit->binning_pass) { in fd4_emit_get_fp() 90 emit->fs = &binning_fs; in fd4_emit_get_fp() 92 emit->fs = emit->prog->fs; in fd4_emit_get_fp() 95 return emit->fs; in fd4_emit_get_fp() [all …]
|
/third_party/python/Lib/ |
D | sre_compile.py | 73 emit = code.append 93 emit(op) 94 emit(av) 96 emit(OP_LOCALE_IGNORE[op]) 97 emit(av) 99 emit(op) 100 emit(av) 104 emit(OP_IGNORE[op]) 105 emit(lo) 107 emit(OP_UNICODE_IGNORE[op]) [all …]
|
/third_party/mindspore/mindspore/_extends/graph_kernel/expanders/complex/ |
D | div.py | 27 x_real = graph_builder.emit('CReal', [input_x]) 28 y_real = graph_builder.emit('CReal', [input_y]) 29 x_imag = graph_builder.emit('CImag', [input_x]) 30 y_imag = graph_builder.emit('CImag', [input_y]) 31 squre_y_real = graph_builder.emit('Mul', [y_real, y_real]) 32 squre_y_imag = graph_builder.emit('Mul', [y_imag, y_imag]) 33 final_denominator = graph_builder.emit('Add', [squre_y_real, squre_y_imag]) 34 x_real_mul_y_real = graph_builder.emit('Mul', [x_real, y_real]) 35 x_imag_mul_y_imag = graph_builder.emit('Mul', [x_imag, y_imag]) 36 x_real_mul_y_imag = graph_builder.emit('Mul', [x_real, y_imag]) [all …]
|