Skip to content

Instantly share code, notes, and snippets.

@kokobd
Created March 20, 2019 06:02
Show Gist options
  • Save kokobd/7f57eb1e63791fa1b19f89b839c0c3ad to your computer and use it in GitHub Desktop.
Save kokobd/7f57eb1e63791fa1b19f89b839c0c3ad to your computer and use it in GitHub Desktop.
#pragma once
#ifdef __JETBRAINS_IDE__
#define __global__
#define KERNEL_CALL2(f, m, n) f
#else
#define KERNEL_CALL2(f, m, n) f<<<(m), (n)>>>
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment