Academic literature on the topic 'Numba'
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 'Numba.'
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 "Numba"
Pivarski, Jim, Peter Elmer, and David Lange. "Awkward Arrays in Python, C++, and Numba." EPJ Web of Conferences 245 (2020): 05023. http://dx.doi.org/10.1051/epjconf/202024505023.
Full textSulaiman, Hasti, Fransiskus Xaverius Rema, and Anita Anita. "MENELUSURI JEJAK SEJARAH PENINGGALAN PORTUGIS DI KAMPUNG NUMBA." HISTORIA Jurnal Program Studi Pendidikan Sejarah 6, no. 2 (September 5, 2018): 237. http://dx.doi.org/10.24127/hj.v6i2.1528.
Full textDressler, Sven, and Daniel N. Wilke. "PyBONDEM-GPU: A discrete element bonded particle Python research framework – Development and examples." EPJ Web of Conferences 249 (2021): 14009. http://dx.doi.org/10.1051/epjconf/202124914009.
Full textLavrinov, M. I. "AN OVERVIEW OF THE NUMBA JIT COMPILER AS A GPU PARALLEL COMPUTING TOOL." Современные наукоемкие технологии (Modern High Technologies), no. 2 2022 (2022): 67–71. http://dx.doi.org/10.17513/snt.39039.
Full textBoussou, Cécile, and Sylvie Vago. "NumBA, voyage au cœur des collections patrimoniales des bibliothèques du Cirad." De l’ombre à la lumière, no. 99 (October 1, 2020): 6–7. http://dx.doi.org/10.35562/arabesques.2236.
Full textBetcke, Timo, and Matthew W. Scroggs. "Designing a High-Performance Boundary Element Library With OpenCL and Numba." Computing in Science & Engineering 23, no. 4 (July 1, 2021): 18–28. http://dx.doi.org/10.1109/mcse.2021.3085420.
Full textDöschl, Alexander, Max-Emanuel Keller, and Peter Mandl. "Performance evaluation of GPU- and cluster-computing for parallelization of compute-intensive tasks." International Journal of Web Information Systems 17, no. 4 (August 6, 2021): 377–402. http://dx.doi.org/10.1108/ijwis-03-2021-0032.
Full textNjiki Chatué, C., T. Njanko, E. M. Fozing, B. E. Bella Nké, N. Séta, and E. Njonfang. "Field observations, magnetic fabrics and microstructures evidences of syn-kinematic emplacement of the Numba granitic pluton (western Cameroon domain)." Journal of African Earth Sciences 172 (December 2020): 104009. http://dx.doi.org/10.1016/j.jafrearsci.2020.104009.
Full textGe, Jixing. "GGCHEMPY: A Pure Python-based Gas-grain Chemical Code for Efficient Simulation of Interstellar Chemistry*." Research in Astronomy and Astrophysics 22, no. 1 (January 1, 2022): 015004. http://dx.doi.org/10.1088/1674-4527/ac321e.
Full textRousselle, Olivier, and Tom Sykora. "Fast simulation of Time-of-Flight detectors at the LHC." EPJ Web of Conferences 251 (2021): 03027. http://dx.doi.org/10.1051/epjconf/202125103027.
Full textDissertations / Theses on the topic "Numba"
Verbeek, Benjamin. "Maximum Likelihood Estimation of Hyperon Parameters in Python : Facilitating Novel Studies of Fundamental Symmetries with Modern Software Tools." Thesis, Uppsala universitet, Institutionen för materialvetenskap, 2021. http://urn.kb.se/resolve?urn=urn:nbn:se:uu:diva-446041.
Full textHojný, Ondřej. "Evoluční návrh kombinačních obvodů." Master's thesis, Vysoké učení technické v Brně. Fakulta strojního inženýrství, 2021. http://www.nusl.cz/ntk/nusl-442801.
Full textRottenburg, Richard. "Die Lemwareng-Nuba : Ein Beispeil kultureller Akkreszenz im heutigen Nil-Sudan : Zusammenfassung /." Berlin : Arabische Buch, 1988. http://catalogue.bnf.fr/ark:/12148/cb37026226f.
Full textBibliogr. p. 43-44.
Lepers, Baptiste. "Improving performance on NUMA systems." Thesis, Grenoble, 2014. http://www.theses.fr/2014GRENM005/document.
Full textModern multicore systems are based on a Non-Uniform Memory Access (NUMA) design. In a NUMA system, cores are grouped in a set of nodes. Each node has a memory controller and is interconnected with other nodes using high speed interconnect links. Efficiently exploiting such architectures is notoriously complex for programmers. Two key objectives on NUMA multicore machines are to limit as much as possible the number of remote memory accesses (i.e., accesses from a node to another node) and to avoid contention on memory controllers and interconnect links. These objectives can be achieved by implementing application-level optimizations or by implementing application-agnostic heuristics. However, in many cases, existing profilers do not provide enough information to help programmers implement application-level optimizations and existing application-agnostic heuristics fail to address contention issues. The contributions of this thesis are twofold. First we present MemProf, a profiler that allows programmers to choose and implement efficient application-level optimizations for NUMA systems. MemProf builds temporal flows of interactions between threads and objects, which help programmers understand why and which memory objects are accessed remotely. We evaluate MemProf on Linux on three different machines. We show how MemProf helps us choose and implement efficient optimizations, unlike existing profilers. These optimizations provide significant performance gains (up to 2.6x), while requiring very lightweight modifications (10 lines of code or less). Then we present Carrefour, an application-agnostic memory management algorithm. Contrarily to existing heuristics, Carrefour focuses on traffic contention on memory controllers and interconnect links. Carrefour provides significant performance gains (up to 3.3x) and always performs better than existing heuristics
Voron, Gauthier. "Virtualisation efficace d'architectures NUMA." Thesis, Sorbonne université, 2018. http://www.theses.fr/2018SORUS026/document.
Full textWhile virtualization only introduces a negligible overhead on machines with few cores, this is not the case when the number of cores increases. We can find such computers with tens of cores in todays data centers dedicated to the cloud computing, a resource management model which relies on virtualization. These large multicore machines have a complex architecture, called Non Uniform Memory Access (NUMA). Achieving high performance on a NUMA architecture requires to wisely place application threads on the appropriate cores and application data in the appropriate memory bank.In this thesis, we show how virtualization techniques modify the applications behavior by preventing them to efficiently place their data in memory. We show that the data misplacement leads to a serious performance degradation, up to 700%.Additionally, we suggest a method which allows the Xen hypervisor to efficiently virtualize NUMA architectures by implementing a set of generic memory placement policies. With an evaluation over a set of 29 applications on a 48-cores machine, we show that the NUMA policies can multiply the performance of 9 applications by more than 2 and decrease the virtualization overhead below 50% for 23 of them
Khamis, Cornelia. "Mehrsprachigkeit bei den Nubi : das Sprachverhalten viersprachig aufwachsender Vorschul- und Schulkinder in Bombo/Uganda /." Hamburg : Lit, 1994. http://catalogue.bnf.fr/ark:/12148/cb39937996t.
Full textBraithwaite, Ryan Karl. "NUMA Data-Access Bandwidth Characterization and Modeling." Thesis, Virginia Tech, 2012. http://hdl.handle.net/10919/31151.
Full textMaster of Science
Kissinger, Thomas. "Energy-Aware Data Management on NUMA Architectures." Doctoral thesis, Saechsische Landesbibliothek- Staats- und Universitaetsbibliothek Dresden, 2017. http://nbn-resolving.de/urn:nbn:de:bsz:14-qucosa-223436.
Full textLenis, Josefina. "Execution strategies for memory-bound applications on NUMA systems." Doctoral thesis, Universitat Autònoma de Barcelona, 2019. http://hdl.handle.net/10803/666763.
Full textOver the last several years, many sequence alignment tools have appeared and become popular thanks to the fast evolution of next-generation sequencing (NGS) technologies. Researchers that use such tools are interested in getting maximum performance when they execute them in modern infrastructures. Today’s NUMA (Non-Uniform Memory Access) architectures present significant challenges in getting such applications to achieve good scalability as more processors/cores are used. The memory system in NUMA systems shows a high complexity and may be the primary cause for the loss of an application’s performance. The existence of several memory banks in NUMA systems implies a logical increase in latency associated with the accesses of a given processor to a remote bank. This phenomenon is usually attenuated by the application of strategies that tend to increase the locality of memory accesses. However, NUMA systems may also suffer from contention problems that can occur when concurrent accesses are concentrated on a reduced number of banks. Sequence alignment tools use large data structures to contain reference genomes to which all reads are aligned. Therefore, these tools are very sensitive to performance problems related to the memory system. The main goal of this study is to explore the trade-offs between data locality and data dispersion in NUMA systems. We introduced a series of methodical steps to characterize NUMA architectures and to help understand the potential of the resources. With this information we designed and experimented with several popular sequence alignment tools on two widely available NUMA systems to assess the performance of different memory allocation policies and data partitioning and replication strategies. We find that there is not one method that is best in all cases. However, we conclude that memory interleaving is the memory allocation policy that provides the best performance for applications using large centralized data structured on a large number of processors and memory banks. In the case of data partitioning and replication, the best results are usually obtained when the number of partitions used is higher, and in some cases, combined with an interleaving policy.
Pousa, Ribeiro Christiane. "Contributions au contrôle de l'affinité mémoire sur architectures multicoeurs et hiérarchiques." Thesis, Grenoble, 2011. http://www.theses.fr/2011GRENM030/document.
Full textMulti-core platforms with non-uniform memory access (NUMA) design are now a common resource in High Performance Computing. In such platforms, the shared memory is organized in an hierarchical memory subsystem in which the main memory is physically distributed into several memory banks. Additionally, the hierarchical memory subsystem of these platforms feature several levels of cache memories. Because of such hierarchy, memory access costs may vary depending on the distance between tasks and data. Furthermore, since the number of cores is considerably high in such machines, concurrent accesses to the same distributed shared memory are performed. These accesses produce more stress on the memory banks, generating load-balancing issues, memory contention and remote accesses. Therefore, the main challenge on a NUMA platform is to reduce memory access latency and memory contention. In this context, the main objective of this thesis is to attain scalable performances on multi-core NUMA machines by controlling memory affinity. The first goal of this thesis is to investigate which characteristics of the NUMA platform and the application have an important impact on the memory affinity control and propose mechanisms to deal with them on multi-core machines with NUMA design. We focus on High Performance Scientific Numerical workloads with regular and irregular memory access characteristics. The study of memory affinity aims at the proposal of an environment to manage memory affinity on Multi-core Platforms with NUMA design. This environment provides fine grained mechanisms to manage data placement for an application by using compilation time and architecture information. The second goal is to provide solutions that show performance portability. By performance portability, we mean solutions that are capable of providing similar performances improvements on different NUMA platforms. In order to do so, we propose mechanisms that are independent of machine architecture and compiler. The portability of the proposed environment is evaluated through the performance analysis of several benchmarks and applications over different platforms. Last, the third goal of this thesis is to design memory affinity mechanisms that can be easily adapted and used in different parallel systems. Our approach takes into account the different data structures used in High Performance Scientific Numerical workloads, in order to propose solutions that can be used in different contexts. We evaluate the adaptability of such mechanisms in two parallel programming systems. All the ideas developed in this research work are implemented in a Framework named Minas (Memory affInity maNAgement Software). Several OpenMP benchmarks and two real world applications from geophysics are used to evaluate its performance. Additionally, Minas integration on Charm++ (Parallel Programming System) and OpenSkel (Skeleton Pattern System for Software Transactional Memory) is also evaluated
Books on the topic "Numba"
Candima, Kōmbala. Kanduḷa numba. Dehivala: Kōmbala Candima, 2000.
Find full textNumba nāṅdan duvē. Moratuva: Suhada Prakāśakayō, 1985.
Find full textAda numba janita kaḷemi. Mīgamuva: Es. Bī. Prinṭars, 1992.
Find full textMage dukaṭa numba nāndan. Ratmalāna: Tusita Prakāśakayō, 1997.
Find full textNohadunida duva numba?: Manō vidyātmaka, parisara vidyātmaka nava kathāva. [Colombo?]: Ca. Pa. Vīrasiṃha, 1990.
Find full textMeyer, Matthew James. Numb. [Saint Paul, MN]: Falling Leaf Press, 2006.
Find full textPadwal, Sunil. Numb. New Delhi: Vadehra Art Gallery, 2007.
Find full textGrabien, Deborah. Comfortably numb. San Francisco: Plus One Press, 2013.
Find full textShindō, Fuyuki. Sokonashi numa. Tōkyō: Shinchōsha, 2006.
Find full textEnglish, Sharon. Uncomfortably numb. Erin, ON: Porcupine's Quill, 2002.
Find full textBook chapters on the topic "Numba"
Oden, Lena, and Tarek Saidi. "Implementation and Evaluation of CUDA-Unified Memory in Numba." In Euro-Par 2020: Parallel Processing Workshops, 197–208. Cham: Springer International Publishing, 2021. http://dx.doi.org/10.1007/978-3-030-71593-9_16.
Full textHadfield, Hugo, Dietmar Hildenbrand, and Alex Arsenovic. "Gajit: Symbolic Optimisation and JIT Compilation of Geometric Algebra in Python with GAALOP and Numba." In Advances in Computer Graphics, 499–510. Cham: Springer International Publishing, 2019. http://dx.doi.org/10.1007/978-3-030-22514-8_50.
Full textSteele, Guy L., Xiaowei Shen, Josep Torrellas, Mark Tuckerman, Eric J. Bohm, Laxmikant V. Kalé, Glenn Martyna, et al. "Caches, NUMA." In Encyclopedia of Parallel Computing, 220. Boston, MA: Springer US, 2011. http://dx.doi.org/10.1007/978-0-387-09766-4_2087.
Full textKalé, Laxmikant V., Abhinav Bhatele, Eric J. Bohm, James C. Phillips, David H. Bailey, Ananth Y. Grama, Joseph Fogarty, et al. "NUMA Caches." In Encyclopedia of Parallel Computing, 1329–38. Boston, MA: Springer US, 2011. http://dx.doi.org/10.1007/978-0-387-09766-4_16.
Full textYurigan, Joseph J., and Todd M. Oravitz. "Comfortably Numb." In A Case Approach to Perioperative Drug-Drug Interactions, 187–91. New York, NY: Springer New York, 2015. http://dx.doi.org/10.1007/978-1-4614-7495-1_37.
Full textVoss, Michael, Rafael Asenjo, and James Reinders. "TBB on NUMA Architectures." In Pro TBB, 581–604. Berkeley, CA: Apress, 2019. http://dx.doi.org/10.1007/978-1-4842-4398-5_20.
Full textDolezal, Ondrej. "Numb Legs and Constipation." In Clinical Cases in Neurology, 161–65. Cham: Springer International Publishing, 2019. http://dx.doi.org/10.1007/978-3-030-16628-1_24.
Full textKalé, Laxmikant V., Abhinav Bhatele, Eric J. Bohm, James C. Phillips, David H. Bailey, Ananth Y. Grama, Joseph Fogarty, et al. "Nonuniform Memory Access (NUMA) Machines." In Encyclopedia of Parallel Computing, 1329. Boston, MA: Springer US, 2011. http://dx.doi.org/10.1007/978-0-387-09766-4_2115.
Full textNegri, Mario. "2. La lingua di Numa." In Historical Philology, 229. Amsterdam: John Benjamins Publishing Company, 1992. http://dx.doi.org/10.1075/cilt.87.27neg.
Full textMetzger, Paul, Murray Cole, and Christian Fensch. "NUMA Optimizations for Algorithmic Skeletons." In Euro-Par 2018: Parallel Processing, 590–602. Cham: Springer International Publishing, 2018. http://dx.doi.org/10.1007/978-3-319-96983-1_42.
Full textConference papers on the topic "Numba"
Lam, Siu Kwan, Antoine Pitrou, and Stanley Seibert. "Numba." In the Second Workshop. New York, New York, USA: ACM Press, 2015. http://dx.doi.org/10.1145/2833157.2833162.
Full textAnderson, Todd, and Tim Mattson. "Multithreaded parallel Python through OpenMP support in Numba." In Python in Science Conference. SciPy, 2021. http://dx.doi.org/10.25080/majora-1b6fd038-012.
Full textChen, Xinyu, and Trilce Estrada. "Index Clustering: A Map-reduce Clustering Approach using Numba." In 6th International Conference on Data Science, Technology and Applications. SCITEPRESS - Science and Technology Publications, 2017. http://dx.doi.org/10.5220/0006437402330240.
Full textEmmanuel, Gahizi, Gilbert Gutabaga Hungilo, and Pranowo. "Numba acceleration of image steganography using Mendelbrot set fractals." In THE 5TH INTERNATIONAL CONFERENCE ON INDUSTRIAL, MECHANICAL, ELECTRICAL, AND CHEMICAL ENGINEERING 2019 (ICIMECE 2019). AIP Publishing, 2020. http://dx.doi.org/10.1063/5.0000526.
Full textCrist, James. "Dask & Numba: Simple libraries for optimizing scientific python code." In 2016 IEEE International Conference on Big Data (Big Data). IEEE, 2016. http://dx.doi.org/10.1109/bigdata.2016.7840867.
Full textHungilo, Gilbert Gutabaga, Gahizi Emmanuel, and Pranowo. "Performance comparison in simulation of Mandelbrot set fractals using Numba." In THE 5TH INTERNATIONAL CONFERENCE ON INDUSTRIAL, MECHANICAL, ELECTRICAL, AND CHEMICAL ENGINEERING 2019 (ICIMECE 2019). AIP Publishing, 2020. http://dx.doi.org/10.1063/5.0000636.
Full textOden, Lena. "Lessons learned from comparing C-CUDA and Python-Numba for GPU-Computing." In 2020 28th Euromicro International Conference on Parallel, Distributed and Network-Based Processing (PDP). IEEE, 2020. http://dx.doi.org/10.1109/pdp50117.2020.00041.
Full textSaito, Carlos, and Sidney Novoa. "NUMBA WACHOKKERI: EMPOWERING INDIGENOUS PEOPLES TO PROTECT THEIR FOREST WITH CUTTING-EDGE TECHNOLOGY." In 13th International Conference on Education and New Learning Technologies. IATED, 2021. http://dx.doi.org/10.21125/edulearn.2021.1549.
Full textProst, Jean-Philippe. "Numbat." In the Third Workshop. Morristown, NJ, USA: Association for Computational Linguistics, 2006. http://dx.doi.org/10.3115/1604263.1604272.
Full textLee, Taeil. "Numb." In SA '19: SIGGRAPH Asia 2019. New York, NY, USA: ACM, 2019. http://dx.doi.org/10.1145/3354918.3366356.
Full textReports on the topic "Numba"
Giraldo, Frank. The Nonhydrostatic Unified Model of the Atmosphere (NUMA): CG Dynamical Core. Fort Belvoir, VA: Defense Technical Information Center, March 2011. http://dx.doi.org/10.21236/ada547006.
Full textGiraldo, Frank. The Development of the Non-hydrostatic Unified Model of the Atmosphere (NUMA). Fort Belvoir, VA: Defense Technical Information Center, September 2011. http://dx.doi.org/10.21236/ada560004.
Full textLagoa, Sérgio, and Ricardo Barradas. Modelos de organização e desafios dos sistemas de pensões em Portugal numa perspetiva Europeia. DINÂMIA'CET-Iscte, March 2022. http://dx.doi.org/10.15847/dinamiacet-iul.wp.2022.01.
Full textCardoso, Diogo. Os números da emigração de Vitorino Magalhães Godinho: revisão historiográfica com o caso do Brasil na época moderna. APHES Working Paper in Economic and Social History, March 2022. http://dx.doi.org/10.55462/wpaphes_a_502.
Full text