Academic literature on the topic 'Redundancy'
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 'Redundancy.'
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 "Redundancy"
Kanno, Yoshihiro, and Yakov Ben-Haim. "Redundancy and Robustness, or When Is Redundancy Redundant?" Journal of Structural Engineering 137, no. 9 (September 2011): 935–45. http://dx.doi.org/10.1061/(asce)st.1943-541x.0000416.
Full textBarnard, Catherine. "Redundant approaches to redundancy." Cambridge Law Journal 59, no. 1 (March 2000): 36–39. http://dx.doi.org/10.1017/s000819730033001x.
Full textHarada, Takashi. "Mode changes of redundantly actuated asymmetric parallel mechanism." Proceedings of the Institution of Mechanical Engineers, Part C: Journal of Mechanical Engineering Science 230, no. 3 (May 26, 2015): 454–62. http://dx.doi.org/10.1177/0954406215588479.
Full textGitay, Habiba, J. Bastow Wilson, and William G. Lee. "Species Redundancy: A Redundant Concept?" Journal of Ecology 84, no. 1 (February 1996): 121. http://dx.doi.org/10.2307/2261706.
Full textCymek, D. H., S. Jahn, and D. H. Manzey. "Monitoring and Cross-Checking Automation." Proceedings of the Human Factors and Ergonomics Society Annual Meeting 60, no. 1 (September 2016): 143–47. http://dx.doi.org/10.1177/1541931213601033.
Full textLiu, Lu, Xin Chen, and Dong Cao. "Research of Redundancy Management on Fight Control Computer for Unmanned Aerial Vehicle." Advanced Materials Research 383-390 (November 2011): 1573–77. http://dx.doi.org/10.4028/www.scientific.net/amr.383-390.1573.
Full textConkur, E. Sahin, and Rob Buckingham. "Clarifying the definition of redundancy as used in robotics." Robotica 15, no. 5 (September 1997): 583–86. http://dx.doi.org/10.1017/s0263574797000672.
Full textWu, J., J.-S. Wang, L.-P. Wang, and T.-M. Li. "Dexterity and stiffness analysis of a three-degree-of-freedom planar parallel manipulator with actuation redundancy." Proceedings of the Institution of Mechanical Engineers, Part C: Journal of Mechanical Engineering Science 221, no. 8 (August 1, 2007): 961–69. http://dx.doi.org/10.1243/09544062jmes456.
Full textMa, Shugen, Shigeo Hirose, and Hiroshi Yoshinada. "Efficient Redundancy Control of Redundant Manipulators." Journal of the Robotics Society of Japan 14, no. 5 (1996): 703–9. http://dx.doi.org/10.7210/jrsj.14.703.
Full textPotkonjak, Veljko. "Application of redundant robots to constrained-motion tasks." Robotica 10, no. 5 (September 1992): 397–407. http://dx.doi.org/10.1017/s0263574700010602.
Full textDissertations / Theses on the topic "Redundancy"
Kabilafkas, D. "Natural redundancy and coding redundancy in information signals." Thesis, Imperial College London, 1989. http://hdl.handle.net/10044/1/47494.
Full textLewis, Paul. "The redundancy process and its implications for redundancy decision-making." Thesis, University of Leeds, 1992. http://ethos.bl.uk/OrderDetails.do?uin=uk.bl.ethos.288178.
Full textFernández, Gómez Manuel. "Binary Redundancy Elimination." Doctoral thesis, Universitat Politècnica de Catalunya, 2005. http://hdl.handle.net/10803/5985.
Full textPor otro lado, las optimizaciones aplicadas en tiempo de enlace o directamente al programa ejecutable final han recibido una atención creciente en los últimos años, debido a limitaciones existentes en el modelo de compilación tradicional. Incluso aplicando sofisticados análisis y transformaciones interprocedurales, un compilador tradicional no es capaz de optimizar un programa como una entidad completa. Un problema similar aparece aplicando técnicas de compilación dirigidas por profiling: grandes proyectos se ven forzados a recompilar todos y cada uno de sus módulos para aprovechar dicha información. Por el contrario, seria más conveniente construir la aplicación completa, instrumentarla para obtener información de profiling y optimizar entonces el binario final sin recompilar ni un solo fichero fuente.
En esta tesis presentamos nuevas técnicas de compilación dirigidas por profiling para eliminar la redundancia encontrada en programas ejecutables a nivel binario (esto es, redundancia binaria), incluso aunque estos programas hayan sido compilados agresivamente con un novísimo compilador comercial. Nuestras técnicas de eliminación de redundancia están diseñadas para eliminar operaciones de memoria y de salto redundantes, que son las más importantes para mitigar los problemas de rendimiento que hemos mencionado. Estas propuestas están basadas en técnicas de eliminación de redundancia parcial sensibles al camino de ejecución. Los resultados muestran que aplicando nuestras optimizaciones, somos capaces de alcanzar una reducción del 14% en el tiempo de ejecución de nuestro conjunto de programas.
En este trabajo también revisamos el problemas del análisis de alias en programas ejecutables, identificando el por qué la desambiguación de memoria es uno de los puntos débiles en la modificación de código objeto. Proponemos varios análisis para ser aplicados en el contexto de optimizadores binarios. Primero un análisis de alias estricto para descubrir dependencias de memoria sensibles al camino de ejecución, el cual es usado en nuestras optimizaciones para la eliminación de redundancias de memoria.
Seguidamente, dos análisis especulativos de posibles alias para detección de independencias de memoria. Estos análisis están basados en introducir información especulativa en tiempo de análisis, lo que incrementa la precisión en partes importantes de código manteniendo el análisis eficiente. Los resultados muestran que nuestras propuestas son altamente útiles para incrementar la desambiguación de memoria de código binario, lo que se traduce en oportunidades para aplicar optimizaciones.
Todos nuestros algoritmos, tanto de análisis como de optimización, han sido implementados en un optimizador binario, enfatizando los problemas más relevantes en la aplicaciones de nuestros algoritmos en código ejecutable, sin la ayuda de gran parte de la información de alto nivel presente en compiladores tradicionales.
Two of the most important performance limiters in today's processor families comes from solving the memory wall and handling control dependencies. In order to address these issues, cache memories and branch predictors are well-known hardware proposals that take advantage of, among other things, exploiting both temporal memory reuse and branch correlation. In other words, they try to exploit the dynamic redundancy existing in programs. This redundancy comes partly from the way that programmers write source code, but also from limitations in the compilation model of traditional compilers, which introduces unnecessary memory and conditional branch instructions. We believe that today's optimizing compilers should be very aggressive in optimizing programs, and then they should be expected to optimize a significant part of this redundancy away.
On the other hand, optimizations performed at link-time or directly applied to final program executables have received increased attention in recent years, due to limitations in the traditional compilation model. First, even though performing sophisticated interprocedural analyses and transformations, traditional compilers do not have the opportunity to optimize the program as a whole. A similar problem arises when applying profile-directe compilation techniques: large projects will be forced to re-build every source file to take advantage of profile information. By contrast, it would be more convenient to build the full application, instrument it to obtain profile data and then re-optimize the final binary without recompiling a single source file.
In this thesis we present new profile-guided compiler optimizations for eliminating the redundancy encountered on executable programs at binary level (i.e.: binary redundancy), even though these programs have been compiled with full optimizations using a state-ofthe- art commercial compiler. In particular, our Binary Redundancy Elimination (BRE) techniques are targeted at eliminating both redundant memory operations and redundant conditional branches, which are the most important ones for addressing the performance issues that we mentioned above in today's microprocessors. These new proposals are mainly based on Partial Redundancy Elimination (PRE) techniques for eliminating partial redundancies in a path-sensitive fashion. Our results show that, by applying our optimizations, we are able to achieve a 14% execution time reduction in our benchmark suite.
In this work we also review the problem of alias analysis at the executable program level, identifying why memory disambiguation is one of the weak points of object code modification. We then propose several alias analyses to be applied in the context of linktime or executable code optimizers. First, we present a must-alias analysis to recognize memory dependencies in a path- sensitive fashion, which is used in our optimization for eliminating redundant memory operations. Next, we propose two speculative may-alias data-flow algorithms to recognize memory independencies. These may-alias analyses are based on introducing unsafe speculation at analysis time, which increases alias precision on important portions of code while keeping the analysis reasonably cost-efficient. Our results show that our analyses prove to be very useful for increasing memory disambiguation accuracy of binary code, which turns out into opportunities for applying optimizations.
All our algorithms, both for the analyses and the optimizations, have been implemented within a binary optimizer, which overcomes most of the existing limitations of traditional source-code compilers. Therefore, our work also points out the most relevant issues of applying our algorithms at the executable code level, since most of the high-level information available in traditional compilers is lost.
Du, Xinli. "High redundancy actuator." Thesis, Loughborough University, 2008. https://dspace.lboro.ac.uk/2134/12232.
Full textCai, Qiong Computer Science & Engineering Faculty of Engineering UNSW. "Profile-guided redundancy elimination." Awarded by:University of New South Wales. School of Computer Science and Engineering, 2006. http://handle.unsw.edu.au/1959.4/25156.
Full textJibrin, Shafiu. "Redundancy in semidefinite programming." Thesis, National Library of Canada = Bibliothèque nationale du Canada, 1998. http://www.collectionscanada.ca/obj/s4/f2/dsk2/tape15/PQDD_0010/NQ32337.pdf.
Full textJibrin, Shafiu Carleton University Dissertation Mathematics and Statistics. "Redundancy in semidefinite programming." Ottawa, 1997.
Find full textTai, Cheng-Tao. "Time dependant redundancy optimization." Thesis, This resource online, 1993. http://scholar.lib.vt.edu/theses/available/etd-01312009-063418/.
Full textZang, Joanna Q. "Design of a redundancy protocol /." free to MU campus, to others for purchase, 2003. http://wwwlib.umi.com/cr/mo/fullcit?p1418080.
Full textDoherty, Noeleen. "Managerial perceptions of the personal and career transitions of redundant executives and suvivors of redundancy." Thesis, Cranfield University, 2000. http://hdl.handle.net/1826/3678.
Full textBooks on the topic "Redundancy"
Firth, Judith. Redundancy. 3rd ed. London: Chartered Institute of Personnel and Development, 2003.
Find full textDale, Jeannette. Redundancy. Birmingham: West Midlands Low Pay Unit, 1996.
Find full textAssociation, British Dental. Redundancy. London: British Dental Association, 2000.
Find full textServices, Incomes Data, ed. Redundancy. London: Incomes Data Services, 1991.
Find full textServices, Incomes Data, ed. Redundancy. London: Incomes Data Services, 1996.
Find full textServices, Incomes Data, ed. Redundancy. London: Incomes Data Services, 1991.
Find full textDirectorate, Great Britain Employment Rights. Redundancy. [U.K.]: Department of Trade and Industry, 2000.
Find full textInstitute of Personnel Management. Information Department. Redundancy. London: The Institute, 1985.
Find full textServices, Incomes Data, ed. Redundancy. London: Incomes Data Services, 1987.
Find full textCarby-Hall, Jo. Redundancy. Hull: Barmarick, 1988.
Find full textBook chapters on the topic "Redundancy"
Marelli, A., and R. Micheloni. "Redundancy." In Inside NAND Flash Memories, 353–92. Dordrecht: Springer Netherlands, 2010. http://dx.doi.org/10.1007/978-90-481-9431-5_13.
Full textCaron, Richard J., Arnon Boneh, and Shahar Boneh. "Redundancy." In Advances in Sensitivity Analysis and Parametric Programming, 464–504. Boston, MA: Springer US, 1997. http://dx.doi.org/10.1007/978-1-4615-6103-3_13.
Full textBurchill, Frank, and Alice Casey. "Redundancy." In Human Resource Management, 147–56. London: Macmillan Education UK, 1996. http://dx.doi.org/10.1007/978-1-349-24806-3_9.
Full textLockton, Deborah J. "Redundancy." In Employment Law, 235–50. London: Macmillan Education UK, 1999. http://dx.doi.org/10.1007/978-1-349-15002-1_10.
Full textFuchs, Maurice Bernard. "Redundancy." In Structures and Their Analysis, 167–94. Cham: Springer International Publishing, 2016. http://dx.doi.org/10.1007/978-3-319-31081-7_11.
Full textTantra, Ratna. "Redundancy." In A Survival Guide for Research Scientists, 207–13. Cham: Springer International Publishing, 2019. http://dx.doi.org/10.1007/978-3-030-05435-9_20.
Full textGeffroy, Jean-Claude, and Gilles Motet. "Redundancy." In Design of Dependable Computing Systems, 175–98. Dordrecht: Springer Netherlands, 2002. http://dx.doi.org/10.1007/978-94-015-9884-2_8.
Full textBenson, Edward. "Redundancy." In A Guide to Redundancy Law, 44–67. London: Palgrave Macmillan UK, 1985. http://dx.doi.org/10.1007/978-1-349-07878-3_3.
Full textLockton, Deborah J. "Redundancy." In Employment Law, 304–21. London: Macmillan Education UK, 2014. http://dx.doi.org/10.1007/978-1-137-08551-1_10.
Full textCharles, Barrow, and Lyon Ann. "Redundancy." In Modern Employment Law, 173–85. Abingdon, Oxon; New York, NY : Routledge, 2018.: Routledge, 2018. http://dx.doi.org/10.4324/9781315713861-10.
Full textConference papers on the topic "Redundancy"
Zhou, Xiang Sean, Ute Feuerlein, Zhigang Peng, Yiqiang Zhan, Maneesh Dewan, Bing Jian, Arun Krishnan, Yimo Tao, Martin Harder, and Stefan Grosskopf. "Redundancy, redundancy, redundancy." In the international conference. New York, New York, USA: ACM Press, 2010. http://dx.doi.org/10.1145/1743384.1743416.
Full textBabenko, M., A. Tchernykh, E. Golimblevskaia, H. N. Viet, and V. Chaurasiya. "Computationally secure threshold secret sharing scheme with minimal redundancy." In The International Workshop on Information, Computation, and Control Systems for Distributed Environments. Crossref, 2020. http://dx.doi.org/10.47350/iccs-de.2020.02.
Full textGong, Lei, Sihang Zhou, Wenxuan Tu, and Xinwang Liu. "Attributed Graph Clustering with Dual Redundancy Reduction." In Thirty-First International Joint Conference on Artificial Intelligence {IJCAI-22}. California: International Joint Conferences on Artificial Intelligence Organization, 2022. http://dx.doi.org/10.24963/ijcai.2022/418.
Full textBarriére, Caroline. "Redundancy." In the 17th international conference. Morristown, NJ, USA: Association for Computational Linguistics, 1998. http://dx.doi.org/10.3115/980451.980863.
Full textBarriére, Caroline. "Redundancy." In the 36th annual meeting. Morristown, NJ, USA: Association for Computational Linguistics, 1998. http://dx.doi.org/10.3115/980845.980863.
Full textSubedi, Dipendra, Ilya Tyapin, and Geir Hovland. "Control of Redundant Flexible Manipulators with Redundancy Resolution." In 2022 8th International Conference on Mechatronics and Robotics Engineering (ICMRE). IEEE, 2022. http://dx.doi.org/10.1109/icmre54455.2022.9734097.
Full text"REDUNDANCY 2019 Committees." In 2019 XVI International Symposium "Problems of Redundancy in Information and Control Systems" (REDUNDANCY). IEEE, 2019. http://dx.doi.org/10.1109/redundancy48165.2019.9003327.
Full text"Redundancy 2023 Committees." In 2023 XVIII International Symposium Problems of Redundancy in Information and Control Systems (REDUNDANCY). IEEE, 2023. http://dx.doi.org/10.1109/redundancy59964.2023.10330196.
Full textMu¨ller, Andreas. "On the Terminology for Redundant Parallel Manipulators." In ASME 2008 International Design Engineering Technical Conferences and Computers and Information in Engineering Conference. ASMEDC, 2008. http://dx.doi.org/10.1115/detc2008-49112.
Full textAmari, Suprasad V., and Glenn Dill. "Redundancy optimization problem with warm-standby redundancy." In 2010 Annual Reliability and Maintainability Symposium (RAMS). IEEE, 2010. http://dx.doi.org/10.1109/rams.2010.5448068.
Full textReports on the topic "Redundancy"
Muley, P., M. Aissaoui, and M. Bocci. Pseudowire Redundancy. RFC Editor, August 2012. http://dx.doi.org/10.17487/rfc6718.
Full textKnight, S., D. Weaver, D. Whipple, R. Hinden, D. Mitzel, P. Hunt, P. Higginson, M. Shand, and A. Lindem. Virtual Router Redundancy Protocol. RFC Editor, April 1998. http://dx.doi.org/10.17487/rfc2338.
Full textBrzozowski, J., J. Tremblay, J. Chen, and T. Mrugalski. DHCPv6 Redundancy Deployment Considerations. RFC Editor, February 2013. http://dx.doi.org/10.17487/rfc6853.
Full textHinden, R., ed. Virtual Router Redundancy Protocol (VRRP). RFC Editor, April 2004. http://dx.doi.org/10.17487/rfc3768.
Full textXie, Q., R. Stewart, M. Stillman, M. Tuexen, and A. Silverton. Endpoint Handlespace Redundancy Protocol (ENRP). RFC Editor, September 2008. http://dx.doi.org/10.17487/rfc5353.
Full textReiter, Michael. Scalable Redundancy for Infrastructure Services. Fort Belvoir, VA: Defense Technical Information Center, May 2004. http://dx.doi.org/10.21236/ada424144.
Full textReiter, Michael K., and Gregory R. Ganger. Increasing Intrusion Tolerance via Scalable Redundancy. Fort Belvoir, VA: Defense Technical Information Center, July 2006. http://dx.doi.org/10.21236/ada455860.
Full textXie, Q. Forward-Shifted RTP Redundancy Payload Support. RFC Editor, August 2011. http://dx.doi.org/10.17487/rfc6354.
Full textKaplan, Alan J. Incorporating Redundancy Considerations Into Stockage Models. Fort Belvoir, VA: Defense Technical Information Center, January 1987. http://dx.doi.org/10.21236/ada179306.
Full textUnseren, M. A., and D. B. Reister. A comparison of three redundancy resolution methods. Office of Scientific and Technical Information (OSTI), October 1997. http://dx.doi.org/10.2172/631238.
Full text