Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8815903
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T04:29:29+00:00 2026-06-14T04:29:29+00:00

I am working with a cuda program which I managed to assign a work

  • 0

I am working with a cuda program which I managed to assign a work to one Stream Multiprocessor. For example, I have the works A and B and my GPU has 2 SMs (SM0 and SM1). Are there ways to assign the work A exactly to SM0 and the work B to SM1?

Can you suggest me some ways to do that?

Thanks for your help.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T04:29:31+00:00Added an answer on June 14, 2026 at 4:29 am

    One approach would be to implement work A in (let’s say) kernelA and work B in kernelB and launch both as a 1*1 grid in separate streams, because on Fermi and Kepler GPUs such kernels can run concurrently. The reason for the 1*1 grid launch is that if you have more than one blocks then those blocks may execute on different SMs and in that case the two kernels cannot execute at the same time (i.e. only one kernel/SM)

    cudaStream_t stream1, stream2;
    cudaStreamCreate ( &stream1 );
    cudaStreamCreate ( &stream2 );
    kernelA<<<1, 512, 0, stream1>>>(...);
    kernelB<<<1, 512, 0, stream2>>>(...);
    ...
    

    For more details, see this NVIDIA presentation

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Do you have any experience working with CUDA on an enabled GPU that uses
I am working remotely on some CUDA program in the Linux environment. Since there
I am working on CUDA and I have a problem related to thread synchronization.
I am working on CUDA and facing the following problem. I have a following
I'm working on an a GPU accelerated program that requires the reading of an
This is program for matrix multiplication on CUDA architecture. This code is working fine
I am trying to run a Simple CUDA program which queries the numbers of
So I've been working on program in which I'm creating a hash table in
I have a CUDA application I'm working on with an array of Objects; each
I'm working on Windows Phone 7 which does not support features like CUDA or

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.