Academic literature on the topic 'Managed memory'
Create a spot-on reference in APA, MLA, Chicago, Harvard, and other styles
Consult the lists of relevant articles, books, theses, conference reports, and other scholarly sources on the topic 'Managed memory.'
Next to every source in the list of references, there is an 'Add to bibliography' button. Press on it, and we will generate automatically the bibliographic reference to the chosen work in the citation style you need: APA, MLA, Harvard, Chicago, Vancouver, etc.
You can also download the full text of the academic publication as pdf and read online its abstract whenever available in the metadata.
Journal articles on the topic "Managed memory"
Schneider, Scott, Jae-Seung Yeom, and Dimitrios S. Nikolopoulos. "Programming Multiprocessors with Explicitly Managed Memory Hierarchies." Computer 42, no. 12 (December 2009): 28–34. http://dx.doi.org/10.1109/mc.2009.407.
Full textAkram, Shoaib. "Performance Evaluation of Intel Optane Memory for Managed Workloads." ACM Transactions on Architecture and Code Optimization 18, no. 3 (June 2021): 1–26. http://dx.doi.org/10.1145/3451342.
Full textMeyer, Meghan L., and Eleanor Collier. "Theory of minds: managing mental state inferences in working memory is associated with the dorsomedial subsystem of the default network and social integration." Social Cognitive and Affective Neuroscience 15, no. 1 (January 2020): 63–73. http://dx.doi.org/10.1093/scan/nsaa022.
Full textJantz, Michael R., Forrest J. Robinson, Prasad A. Kulkarni, and Kshitij A. Doshi. "Cross-layer memory management for managed language applications." ACM SIGPLAN Notices 50, no. 10 (December 18, 2015): 488–504. http://dx.doi.org/10.1145/2858965.2814322.
Full textO’Neill, Eoghan, John McGlone, Peter Kilpatrick, and Dimitrios Nikolopoulos. "Managed acceleration for In-Memory database analytic workloads." International Journal of Parallel, Emergent and Distributed Systems 32, no. 4 (May 6, 2016): 406–27. http://dx.doi.org/10.1080/17445760.2016.1170832.
Full textBok, Kyoungsoo, Seunghun Yoo, Dojin Choi, Jongtae Lim, and Jaesoo Yoo. "In-Memory Caching for Enhancing Subgraph Accessibility." Applied Sciences 10, no. 16 (August 9, 2020): 5507. http://dx.doi.org/10.3390/app10165507.
Full textWang, Li, JingLing Xue, and XueJun Yang. "Acyclic orientation graph coloring for software-managed memory allocation." Science China Information Sciences 57, no. 9 (June 11, 2014): 1–18. http://dx.doi.org/10.1007/s11432-014-5131-7.
Full textKrauter, Nicolas, Patrick Raaf, Peter Braam, Reza Salkhordeh, Sebastian Erdweg, and André Brinkmann. "Persistent software transactional memory in Haskell." Proceedings of the ACM on Programming Languages 5, ICFP (August 22, 2021): 1–29. http://dx.doi.org/10.1145/3473568.
Full textJost, Tiago Trevisan, Gabriel Luca Nazar, and Luigi Carro. "SoMMA: A software-managed memory architecture for multi-issue processors." Microprocessors and Microsystems 77 (September 2020): 103139. http://dx.doi.org/10.1016/j.micpro.2020.103139.
Full textNguyen, Khanh, Kai Wang, Yingyi Bu, Lu Fang, and Guoqing Xu. "Understanding and Combating Memory Bloat in Managed Data-Intensive Systems." ACM Transactions on Software Engineering and Methodology 26, no. 4 (February 23, 2018): 1–41. http://dx.doi.org/10.1145/3162626.
Full textDissertations / Theses on the topic "Managed memory"
Jost, Tiago Trevisan. "SoMMA : a software managed memory architecture for multi-issue processors." reponame:Biblioteca Digital de Teses e Dissertações da UFRGS, 2017. http://hdl.handle.net/10183/170975.
Full textEmbedded processors rely on the efficient use of instruction-level parallelism to answer the performance and energy needs of modern applications. Though improving performance is the primary goal for processors in general, it might lead to a negative impact on energy consumption, a particularly critical constraint for current systems. In this dissertation, we present SoMMA, a software-managed memory architecture for embedded multi-issue processors that can reduce energy consumption and energy-delay product (EDP), while still providing an increase in memory bandwidth. We combine the use of software-managed memories (SMM) with the data cache, and leverage the lower energy access cost of SMMs to provide a processor with reduced energy consumption and EDP. SoMMA also provides a better overall performance, as memory accesses can be performed in parallel, with no cost in extra memory ports. Compiler-automated code transformations minimize the programmer’s effort to benefit from the proposed architecture. Our experimental results show that SoMMA is more energy- and performance-efficient not only for the processing cores, but also at full-system level. Comparisons were done using the VEX processor, a VLIW reconfigurable processor. The approach shows average speedups of 1.118x and 1.121x, while consuming up to 11% and 12.8% less energy when comparing two modified processors and their baselines. SoMMA also shows reduction of up to 41.5% on full-system EDP, maintaining the same processor area as baseline processors. Lastly, even with SoMMA halving the data cache size, we still reduce the number of data cache misses in comparison to baselines.
Barua, Rajeev K. (Rajeev Kumar). "Maps : a compiler-managed memory system for software-exposed architectures." Thesis, Massachusetts Institute of Technology, 2000. http://hdl.handle.net/1721.1/37194.
Full textIncludes bibliographical references (p. 155-161).
Microprocessors must exploit both instruction-level parallelism (ILP) and memory parallelism for high performance. Sophisticated techniques for ILP have boosted the ability of modern-day microprocessors to exploit ILP when available. Unfortunately, improvements in memory parallelism in microprocessors have lagged behind. This thesis explains why memory parallelism is hard to exploit in microprocessors and advocate bank-exposed architectures as an effective way to exploit more memory parallelism. Bank exposed architectures are a kind of software-exposed architecture: one in which the low level details of the hardware are visible to the software. In a bank-exposed architecture, the memory banks are visible to the software, enabling the compiler to exploit a high degree of memory parallelism in addition to ILP. Bank-exposed architectures can be employed by general-purpose processors, and by embedded chips, such as those used for digital-signal processing. This thesis presents Maps, an enabling compiler technology for bank-exposed architectures. Maps solves the problem of bank-disambiguation, i.e., how to distribute data in sequential programs among several banks to best exploit memory parallelism, while retaining the ability to disambiguate each data reference to a particular bank. Two methods for bank disambiguation are presented: equivalence-class unification and modulo unrolling. Taking a sequential program as input, a bank-disambiguation method produces two outputs: first, a distribution of each program object among the memory banks; and second, a bank number for every reference that can be proven to access a single, known bank for that data distribution. Finally, the thesis shows why non-disambiguated accesses are sometimes desirable. Dependences between disambiguated and non-disambiguated accesses are enforced through explicit synchronization and software serial ordering. The MIT Raw machine is an example of a software-exposed architecture. Raw exposes its ILP, memory and communication mechanisms. The Maps system has been implemented in the Raw compiler. Results on Raw using sequential codes demonstrate that using bank disambiguation in addition to ILP improves performance by a factor of 3 to 5 over using ILP alone.
by Rajeev Barua.
Ph.D.
Nagel, Fabian Oliver. "Efficient query processing in managed runtimes." Thesis, University of Edinburgh, 2015. http://hdl.handle.net/1842/15869.
Full textRose, Benjamin Aaron. "Intra- and Inter-chip Communication Support for Asymmetric Multicore Processors with Explicitly Managed Memory Hierarchies." Thesis, Virginia Tech, 2009. http://hdl.handle.net/10919/32824.
Full textMaster of Science
Sandhu, Tahir S. Drake Frederick D. "Beyond American Memory technologies of library and office automation and their impact on multimedia computing for public education in the United States, 1963-present /." Normal, Ill. Illinois State University, 2001. http://wwwlib.umi.com/cr/ilstu/fullcit?p3006627.
Full textTitle from title page screen, viewed April 18, 2006. Dissertation Committee: Frederick D. Drake (chair), Lawrence McBride, John B. Freed. Includes bibliographical references (leaves 351-398) and abstract. Also available in print.
Nejadfard, Kian. "Context-aware automated refactoring for unified memory allocation in NVIDIA CUDA programs." Cleveland State University / OhioLINK, 2021. http://rave.ohiolink.edu/etdc/view?acc_num=csu1624622944458295.
Full textAyers, Andrew Edward. "M̲, a memory manager for Ḻ." Thesis, Massachusetts Institute of Technology, 1988. http://hdl.handle.net/1721.1/45691.
Full textCharacters with an underscore appear as italic on the t.p.
Bibliography: leaves 94-95.
by Andrew Edward Ayers.
M.S.
Harrison, Pascale. "How individuals with Fibromyalgia manage their memory problems." Thesis, University of the West of England, Bristol, 2012. https://ethos.bl.uk/OrderDetails.do?uin=uk.bl.ethos.572883.
Full textRezaei, Mehran. "Intelligent Memory Manager: Towards improving the locality behavior of allocation-intensive applications." Thesis, University of North Texas, 2004. https://digital.library.unt.edu/ark:/67531/metadc4491/.
Full textMuthukumaraswamy, Sivakumar Vijay. "An Evaluation of the Linux Virtual Memory Manager to Determine Suitability for Runtime Variation of Memory." Thesis, Virginia Tech, 2007. http://hdl.handle.net/10919/31608.
Full textMaster of Science
Books on the topic "Managed memory"
Robinson, Phillip R. The one minute memory manager: Upgrading and using your PC's memory for faster, more efficient computing. Hemel Hempstead: Prentice Hall, 1991.
Find full textRobinson, Phillip R. The one minute memory manager: Upgrading and using your PC's memory for faster, more efficient computing. Redwood City, CA: M&T Books, 1991.
Find full textGagliardi, Isabella, ed. Le vestigia dei gesuati. Florence: Firenze University Press, 2020. http://dx.doi.org/10.36253/978-88-5518-228-7.
Full textDrury, Harry. A banker's account: Memoirs of a bank manager. Leignton Buzzard: Rushmere Wynne, 1994.
Find full textDave, Schnee, Mullin Peter, and International Business Machines Corporation. International Technical Support Organization., eds. Automatic partition resource manager for System i and iSeries. [Poughkeepsie, NY]: IBM, International Technical Suppport Organization, 2007.
Find full textA view from the dressing room: The memoirs of a cricket manager. Knysna: Amorique, 1989.
Find full textThen people will traffick: Memoirs of an Indian professional manager, 1950s to 1990s. New Delhi: Minerva Press, 2000.
Find full textStakel, Charles J. Memoirs of Charles J. Stakel: Cleveland-Cliffs mining engineer, mine superintendent, and mining manager. Marquette, Mich: John M. Longyear Research Library, Marquette County Historical Society, 1994.
Find full textMaretzek, Max. Further revelations of an opera manager in 19th century America: The third book of memoirs. Sterling Heights, Mich: Harmonie Park Press, 2006.
Find full textIn search of happiness: Memoirs of an agriculturist, research manager, adventurer, community worker, and corporate leader. Cheras, Kuala Lumpur: Utusan Publications & Distributors, 2009.
Find full textBook chapters on the topic "Managed memory"
Kinney, Dale. "Managed Memory in S. Maria in Trastevere." In Monuments & Memory: Christian Cult Buildings and Constructions of the Past, 337–47. Turnhout: Brepols Publishers, 2016. http://dx.doi.org/10.1484/m.acsha-eb.4.2018029.
Full textWang, Chenxi, Ting Cao, John Zigman, Fang Lv, Yunquan Zhang, and Xiaobing Feng. "Efficient Management for Hybrid Memory in Managed Language Runtime." In Lecture Notes in Computer Science, 29–42. Cham: Springer International Publishing, 2016. http://dx.doi.org/10.1007/978-3-319-47099-3_3.
Full textNeth, Brandon, Thomas R. W. Scogland, Alejandro Duran, and Bronis R. de Supinski. "Beyond Explicit Transfers: Shared and Managed Memory in OpenMP." In OpenMP: Enabling Massive Node-Level Parallelism, 183–94. Cham: Springer International Publishing, 2021. http://dx.doi.org/10.1007/978-3-030-85262-7_13.
Full textMetzlaff, Stefan, Irakli Guliashvili, Sascha Uhrig, and Theo Ungerer. "A Dynamic Instruction Scratchpad Memory for Embedded Processors Managed by Hardware." In Architecture of Computing Systems - ARCS 2011, 122–34. Berlin, Heidelberg: Springer Berlin Heidelberg, 2011. http://dx.doi.org/10.1007/978-3-642-19137-4_11.
Full textGrounds, Nicolas G., John K. Antonio, and Jeff Muehring. "Cost-Minimizing Scheduling of Workflows on a Cloud of Memory Managed Multicore Machines." In Lecture Notes in Computer Science, 435–50. Berlin, Heidelberg: Springer Berlin Heidelberg, 2009. http://dx.doi.org/10.1007/978-3-642-10665-1_40.
Full textPit-Claudel, Clément, Peng Wang, Benjamin Delaware, Jason Gross, and Adam Chlipala. "Extensible Extraction of Efficient Imperative Programs with Foreign Functions, Manually Managed Memory, and Proofs." In Automated Reasoning, 119–37. Cham: Springer International Publishing, 2020. http://dx.doi.org/10.1007/978-3-030-51054-1_7.
Full textNanri, Takeshi, Hiroyuki Sato, and Masaaki Shimasaki. "Cost estimation of coherence protocols of software managed cache on distributed shared memory system." In Lecture Notes in Computer Science, 335–42. Berlin, Heidelberg: Springer Berlin Heidelberg, 1997. http://dx.doi.org/10.1007/bfb0024228.
Full textAlam, Irina, Lara Dolecek, and Puneet Gupta. "Lightweight Software-Defined Error Correction for Memories." In Dependable Embedded Systems, 207–32. Cham: Springer International Publishing, 2020. http://dx.doi.org/10.1007/978-3-030-52017-5_9.
Full textElmlinger, Stefan. "SAP HANA - Einsatzmöglichkeiten des SAP Solution Managers." In In-Memory-Datenbank SAP HANA, 107–29. Wiesbaden: Springer Fachmedien Wiesbaden, 2017. http://dx.doi.org/10.1007/978-3-658-18603-6_4.
Full textVaynberg, Alexander, and Zhong Shao. "Compositional Verification of a Baby Virtual Memory Manager." In Certified Programs and Proofs, 143–59. Berlin, Heidelberg: Springer Berlin Heidelberg, 2012. http://dx.doi.org/10.1007/978-3-642-35308-6_13.
Full textConference papers on the topic "Managed memory"
Knight, Timothy J., Ji Young Park, Manman Ren, Mike Houston, Mattan Erez, Kayvon Fatahalian, Alex Aiken, William J. Dally, and Pat Hanrahan. "Compilation for explicitly managed memory hierarchies." In the 12th ACM SIGPLAN symposium. New York, New York, USA: ACM Press, 2007. http://dx.doi.org/10.1145/1229428.1229477.
Full textGueraich, Sonia, and Bouchra Bouzobra. "Corporate memory managed by semantic web service." In 2015 First International Conference on New Technologies of Information and Communication (NTIC). IEEE, 2015. http://dx.doi.org/10.1109/ntic.2015.7368760.
Full textMoazeni, Maryam, Alex Bui, and Majid Sarrafzadeh. "A memory optimization technique for software-managed scratchpad memory in GPUs." In 2009 IEEE 7th Symposium on Application Specific Processors (SASP). IEEE, 2009. http://dx.doi.org/10.1109/sasp.2009.5226334.
Full textRen, Manman, Ji Young Park, Mike Houston, Alex Aiken, and William J. Dally. "A tuning framework for software-managed memory hierarchies." In the 17th international conference. New York, New York, USA: ACM Press, 2008. http://dx.doi.org/10.1145/1454115.1454155.
Full textPark, Jungho, Choonki Jang, and Jaejin Lee. "A Software-Managed Coherent Memory Architecture for Manycores." In 2011 International Conference on Parallel Architectures and Compilation Techniques (PACT). IEEE, 2011. http://dx.doi.org/10.1109/pact.2011.46.
Full textJantz, Michael R., Forrest J. Robinson, Prasad A. Kulkarni, and Kshitij A. Doshi. "Cross-layer memory management for managed language applications." In SPLASH '15: Conference on Systems, Programming, Languages, and Applications: Software for Humanity. New York, NY, USA: ACM, 2015. http://dx.doi.org/10.1145/2814270.2814322.
Full textRutgers, Jochem H., Marco J. G. Bekooij, and Gerard J. M. Smit. "Portable Memory Consistency for Software Managed Distributed Memory in Many-Core SoC." In 2013 IEEE International Symposium on Parallel & Distributed Processing, Workshops and Phd Forum (IPDPSW). IEEE, 2013. http://dx.doi.org/10.1109/ipdpsw.2013.14.
Full textWare, Fred, Javier Bueno, Liji Gopalakrishnan, Brent Haukness, Chris Haywood, Toni Juan, Eric Linstadt, et al. "Architecting a hardware-managed hybrid DIMM optimized for cost/performance." In MEMSYS '18: The International Symposium on Memory Systems. New York, NY, USA: ACM, 2018. http://dx.doi.org/10.1145/3240302.3240303.
Full textBock, Santiago, Bruce R. Childers, Rami Melhem, and Daniel Mosse. "Characterizing the Overhead of Software-Managed Hybrid Main Memory." In 2015 IEEE 23rd International Symposium on Modeling, Analysis and Simulation of Computer and Telecommunication Systems (MASCOTS). IEEE, 2015. http://dx.doi.org/10.1109/mascots.2015.20.
Full textHassan, Ahmad, Hans Vandierendonck, and Dimitrios S. Nikolopoulos. "Software-managed energy-efficient hybrid DRAM/NVM main memory." In CF'15: Computing Frontiers Conference. New York, NY, USA: ACM, 2015. http://dx.doi.org/10.1145/2742854.2742886.
Full textReports on the topic "Managed memory"
Kommareddy, Vamsee, Clayton Hughes, Simon David Hammond, and Amro Awad. Opal: A Centralized Memory Manager for Investigating Disaggregated Memory Systems. Office of Scientific and Technical Information (OSTI), August 2018. http://dx.doi.org/10.2172/1467164.
Full textLever, C. Remote Direct Memory Access - Connection Manager (RDMA-CM) Private Data for RPC-over-RDMA Version 1. RFC Editor, June 2020. http://dx.doi.org/10.17487/rfc8797.
Full text