Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ElementwiseKernel: add get_global and fix bug in get_texref #173

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion pycuda/elementwise.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,13 @@ def __init__(self, arguments, operation,
operation=operation, arguments=arguments))

def get_texref(self, name, use_range=False):
mod, knl, arguments = self.generate_stride_kernel_and_types(use_range=use_range)
mod, knl, arguments = self.generate_stride_kernel_and_types(use_range)
return mod.get_texref(name)

def get_global(self, name, use_range=False):
mod, knl, arguments = self.generate_stride_kernel_and_types(use_range)
return mod.get_global(name)

@memoize_method
def generate_stride_kernel_and_types(self, use_range):
mod, knl, arguments = get_elwise_kernel_and_types(use_range=use_range,
Expand Down