search for: lmem

Displaying 13 results from an estimated 13 matches for "lmem".

Did you mean: kmem
2012 Jul 24
1
Linear mixed-effect models and model selection
Hi, I am looking at the effect of allelochemicals produced by two freshwater macrophyte species on two different algal species at different days. I am comparing the effect of each macrophyte on each algae at each day. I received help from someone doing the LMEM (Linear mixed-effect models) and he told me to do ANOVA to analyse the LMEM. However, I received these feedback from my examinor; 1. An Analysis of Variance (ANOVA) was used to analyse the LMEM. Comment; Not clear why you used ANOVA here. Was it to compare models? 2.The effects of TREATMENT and...
2015 May 02
2
Fermi+ shader header docs
...high="12" low="10" name="KIND" type="GF100_SHADER_KIND"/> <bitfield pos="16" name="GMEM_ENABLE"/> <bitfield pos="17" name="UNK17"/><!-- default 1 --> <bitfield pos="26" name="LMEM_ENABLE"/> <bitfield pos="27" name="FP64_ENABLE"/> </reg32> FS: <reg32 offset="0" name="0"> <bitfield high="7" low="0" name="MAGIC"> <value value="0x62" name="FP_MAGIC&quo...
2016 Jan 14
0
[PATCH] nv50/ir: rebase indirect temp arrays to 0, so that we use less lmem space
Reduces local memory usage in a lot of Metro 2033 Redux and a few KSP shaders: total local used in shared programs : 54116 -> 30372 (-43.88%) Probably modest advantage to execution, but it's an imporant prerequisite to dropping some of the TGSI optimizations done by the state tracker. Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu> --- Seems like there ought to be a simpler
2015 May 21
2
Fermi+ shader header docs
...some confusion about what the >> first word of the shader header means. Here is the definition as we >> have it today: > > [...] > >> However I know that these are somewhat wrong. I've seen shaders that >> use gmem accesses (i.e. mov r0, [r0]) that just have the LMEM enable >> bit set (and they use no lmem). And I've seen additional bits set, esp >> relating to images, but I haven't spent enough time looking at all the >> variations to make sense of it yet. For example, I think that Fermi >> and Kepler+ have different meanings fo...
2013 Oct 15
23
[PATCH 00/21] Upgrade to Lua 5.2.2, add filesystem module and get_key binding
...init.c | 57 +- com32/lua/src/liolib.c | 548 ++- com32/lua/src/llex.c | 366 +- com32/lua/src/llex.h | 27 +- com32/lua/src/llimits.h | 221 +- com32/lua/src/lmathlib.c | 98 +- com32/lua/src/lmem.c | 45 +- com32/lua/src/lmem.h | 28 +- com32/lua/src/loadlib.c | 613 +-- com32/lua/src/lobject.c | 251 +- com32/lua/src/lobject.h | 460 +- com32/lua/src/lopcodes.c | 31 +- com32/lua/src/lop...
2013 Oct 15
0
Upgrade to Lua 5.2.2, add filesystem module and get_key binding
...+- > com32/lua/src/liolib.c | 548 ++- > com32/lua/src/llex.c | 366 +- > com32/lua/src/llex.h | 27 +- > com32/lua/src/llimits.h | 221 +- > com32/lua/src/lmathlib.c | 98 +- > com32/lua/src/lmem.c | 45 +- > com32/lua/src/lmem.h | 28 +- > com32/lua/src/loadlib.c | 613 +-- > com32/lua/src/lobject.c | 251 +- > com32/lua/src/lobject.h | 460 +- > com32/lua/src/lopcodes.c |...
2014 Mar 02
3
pull request: upgrade to Lua 5.2.3, automatic Linux boot menu and cmenu binding
...it.c | 57 +- com32/lua/src/liolib.c | 549 ++-- com32/lua/src/llex.c | 369 +-- com32/lua/src/llex.h | 27 +- com32/lua/src/llimits.h | 221 +- com32/lua/src/lmathlib.c | 98 +- com32/lua/src/lmem.c | 45 +- com32/lua/src/lmem.h | 28 +- com32/lua/src/loadlib.c | 641 +++-- com32/lua/src/lobject.c | 251 +- com32/lua/src/lobject.h | 460 +++- com32/lua/src/lopcodes.c | 31 +- com32/lua/src...
2015 May 06
4
[Bug 90348] New: Spilling failure of b96 merged value
...sktop.org Sometimes the spilling logic will decide to spill a merged def. This is fine for 2- and 4-wide values as there are appropriate load/store instructions for those, but not so with 3-wide values. We must take that into account in the SpillCodeInserter and emit a 64-bit and 32-bit store into lmem (and similar for load, although less important, as it tends to have gotten split up by the time the use rolls around). Unfortunately I've lost track of the program that repro'd this issue. -- You are receiving this mail because: You are the QA Contact for the bug. You are the assignee fo...
2016 Jan 14
0
[PATCH] nv50/ir: only use FILE_LOCAL_MEMORY for temp arrays that use indirection
Previously we were treating any indirect temp array usage to mean that everything should end up in lmem. The MemoryOpt pass would clean a lot of that up later, but in the meanwhile we would lose a lot of opportunity for optimization. This helps a lot of Metro 2033 Redux and a handful of KSP shaders: total instructions in shared programs : 6288373 -> 6261517 (-0.43%) total gprs used in shared pro...
2020 Mar 20
0
[ANNOUNCE] igt-gpu-tools 1.25
...vice selection API Introduce device selection lsgpu tool Add device selection in IGT lib/ioctl_wrappers: Remove static variables for getting params lib/i915/gem_mman: Add support for GEM_MMAP_OFFSET ioctl lib/igt_dummyload: Use mapping selection to allow run batch from lmem lib/intel_bufops: Introduce buffer operations lib/intel_batchbuffer: Add CCS width/height functions for Intel igt_buf lib/rendercopy_bufmgr: Add rendercopy buffer manager i915/gem_render_copy.c: Simplify code by switch to rendercopy bufmgr lib/igt_collection: Adding co...
2014 Jan 28
3
[LLVMdev] MergeFunctions: reduce complexity to O(log(N))
Hi Stepan, Sorry for the delay. It's great that you are working on MergeFunctions as well and I agree, we should definitely try to combine our efforts to improve MergeFunctions. Just to give you some context, the pass (with the similar function merging patch) is already being used in a production setting. From my point of view, it would be better if we focus on improving its capability
2014 Jan 30
3
[LLVMdev] MergeFunctions: reduce complexity to O(log(N))
...23046 0 0.03 320565 lists1.ll 88 152101 9 0.02 150705 3 0.02 151455 lists.ll 17 45370 0 0.01 45351 0 0.01 45351 literal.ll 1 12664 0 0.01 12646 0 0.01 12646 llex.ll 19 155435 0 0.02 155420 0 0.02 155420 llubenchmark.ll 5 27605 0 0.01 27583 0 0.01 27583 lmathlib.ll 29 34963 0 0.01 34948 0 0.02 33539 lmem.ll 3 12468 0 0.01 12453 0 0.00 12453 loadbins.ll 1 74518 0 0.01 74485 0 0.01 74485 LoadCodecs.ll 20 151022 0 0.02 150987 0 0.02 149972 loadexe.ll 1 16807 0 0.01 16777 0 0.01 16777 loadlib.ll 24 68858 0 0.01 68843 0 0.01 68843 load.ll 5 38589 0 0.01 38569 0 0.01 38569 loadpg.ll 2 73982 0 0.01 73949...
2011 Apr 16
20
[PATCH 00/20] Switch to ELF modules
From: Matt Fleming <matt.fleming at linux.intel.com> This series fixes some bugs and switches the elflink branch to be entirely ELF modules. It applies on top of, http://syslinux.zytor.com/archives/2011-April/016369.html The deletions in the diff stat below are mainly from deleting com32/elflink/modules (finally!). Now there should be no duplicate code because we don't need COM32 and