HomeSort by: relevance | last modified time | path
    Searched refs:slm_size (Results 1 - 2 of 2) sorted by relevancy

  /xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
brw_compiler.h 1358 uint32_t slm_size = 0; local
1373 slm_size = util_next_power_of_two(bytes);
1377 slm_size = ffs(MAX2(slm_size, 1024)) - 10;
1380 slm_size = MAX2(slm_size, 4096) / 4096;
1384 return slm_size;
  /xsrc/external/mit/MesaLib/dist/src/intel/compiler/
brw_compiler.h 1741 uint32_t slm_size = 0; local
1754 slm_size = intel_calculate_slm_size(gen, bytes);
1755 assert(util_is_power_of_two_nonzero(slm_size));
1759 assert(slm_size >= 1024);
1760 slm_size = ffs(slm_size) - 10;
1762 assert(slm_size >= 4096);
1764 slm_size = slm_size / 4096;
1768 return slm_size;
    [all...]

Completed in 10 milliseconds