• Home
  • Raw
  • Download

Lines Matching refs:compile_args

466                                       const CompileArgs &compile_args,  in run_shader_with_raw_args()  argument
488 conf.local_size[0] = compile_args.x; in run_shader_with_raw_args()
493 conf.local_size[1] = compile_args.y; in run_shader_with_raw_args()
498 conf.local_size[2] = compile_args.z; in run_shader_with_raw_args()
502 if (compile_args.x % conf.local_size[0] || in run_shader_with_raw_args()
503 compile_args.y % conf.local_size[1] || in run_shader_with_raw_args()
504 compile_args.z % conf.local_size[2]) in run_shader_with_raw_args()
511 compile_args.work_props.global_offset_x != 0 || in run_shader_with_raw_args()
512 compile_args.work_props.global_offset_y != 0 || in run_shader_with_raw_args()
513 compile_args.work_props.global_offset_z != 0; in run_shader_with_raw_args()
515 compile_args.work_props.group_id_offset_x != 0 || in run_shader_with_raw_args()
516 compile_args.work_props.group_id_offset_y != 0 || in run_shader_with_raw_args()
517 compile_args.work_props.group_id_offset_z != 0; in run_shader_with_raw_args()
539 clc_work_properties_data work_props = compile_args.work_props; in run_shader_with_raw_args()
541 work_props.group_count_total_x = compile_args.x / conf.local_size[0]; in run_shader_with_raw_args()
542 work_props.group_count_total_y = compile_args.y / conf.local_size[1]; in run_shader_with_raw_args()
543 work_props.group_count_total_z = compile_args.z / conf.local_size[2]; in run_shader_with_raw_args()
616 cmdlist->Dispatch(compile_args.x / conf.local_size[0], in run_shader_with_raw_args()
617 compile_args.y / conf.local_size[1], in run_shader_with_raw_args()
618 compile_args.z / conf.local_size[2]); in run_shader_with_raw_args()
791 const std::vector<const char *> &compile_args, in compile() argument
796 args.args = compile_args.data(); in compile()
797 args.num_args = (unsigned)compile_args.size(); in compile()