We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f134779 commit 7bb6470Copy full SHA for 7bb6470
skcuda/utils.py
@@ -114,7 +114,7 @@ def get_soname(filename):
114
raise RuntimeError('unsupported machine architecture')
115
116
entsize = dynamic['sh_entsize']
117
- for k in range(dynamic['sh_size']/entsize):
+ for k in range(dynamic['sh_size']//entsize):
118
result = st.parse(dynamic.data()[k*entsize:(k+1)*entsize])
119
120
# The following value for the SONAME tag is specified in elf.h:
0 commit comments