Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Running BarraCUDA on Amazon AWS GPU

    Has anyone run BarraCUDA on an Amazon AWS HVM with dual NVIDIA Tesla M2050 GPUs and gotten it to work?

    The main problem I'm experiencing at the moment is the maximum memory: BarraCUDA expects at least 675 MB for buffering, but the 2050 only has enough for a 390 MB buffer. The README.FIRST document in the BarraCUDA 0.6 beta release mentions a work-around by changing the SEQUENCE_TABLE_SIZE_EXPONENTIAL constant from 23 to 21 and recompiling, but the result is still an error message claiming insufficient memory. Anyone have a better workaround?

    Thanks ahead of time,
    AJ
    Last edited by ajminich; 02-02-2012, 02:46 PM.

  • #2
    Workaround Fix

    It turns out that the following block (starting at line 2731 in bwtaln.cu) is the issue:

    Code:
    if(mem_available>>20 < (CUDA_TESLA >> 1)) 
    {
        fprintf(stderr,"[aln_core] Not enough memory to perform alignment (min: %d).\n", CUDA_TESLA >> 1);
        return;
    }
    Commenting out this block and recompiling seems to work.

    Comment


    • #3
      Hi, it might be useful to disable ECC so that there is more space for the buffer too.

      And if you use the G37 reference from 1K genome project you might be able to get away from doing the 23 to 21 trick. We will test this early next week and let you know what the outcome is.

      Brian

      Comment


      • #4
        Thanks Brian. I will experiment with disabling the GPU's ECC and see what happens.

        Comment


        • #5
          Have fun aligning

          I can now confirm that you can use a C2050 or even a Geforce GTX580 (3GB) to align reads to the Human Genome without altering the parameter in the code. The only requirement is that the ECC has to be disabled and also the reference genome is the 3.1GB version of the V37 assembly. This can be downloaded from the 1000 genomes project from http://www.1000genomes.org/analysis

          Brian

          Comment

          Latest Articles

          Collapse

          • seqadmin
            Current Approaches to Protein Sequencing
            by seqadmin


            Proteins are often described as the workhorses of the cell, and identifying their sequences is key to understanding their role in biological processes and disease. Currently, the most common technique used to determine protein sequences is mass spectrometry. While still a valuable tool, mass spectrometry faces several limitations and requires a highly experienced scientist familiar with the equipment to operate it. Additionally, other proteomic methods, like affinity assays, are constrained...
            04-04-2024, 04:25 PM
          • seqadmin
            Strategies for Sequencing Challenging Samples
            by seqadmin


            Despite advancements in sequencing platforms and related sample preparation technologies, certain sample types continue to present significant challenges that can compromise sequencing results. Pedro Echave, Senior Manager of the Global Business Segment at Revvity, explained that the success of a sequencing experiment ultimately depends on the amount and integrity of the nucleic acid template (RNA or DNA) obtained from a sample. “The better the quality of the nucleic acid isolated...
            03-22-2024, 06:39 AM

          ad_right_rmr

          Collapse

          News

          Collapse

          Topics Statistics Last Post
          Started by seqadmin, 04-11-2024, 12:08 PM
          0 responses
          24 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 04-10-2024, 10:19 PM
          0 responses
          25 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 04-10-2024, 09:21 AM
          0 responses
          23 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 04-04-2024, 09:00 AM
          0 responses
          52 views
          0 likes
          Last Post seqadmin  
          Working...
          X