-
Notifications
You must be signed in to change notification settings - Fork 229
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
compiler: Misc minor code generation fixes #1891
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1891 +/- ##
========================================
Coverage 89.63% 89.64%
========================================
Files 210 210
Lines 35265 35453 +188
Branches 5319 5350 +31
========================================
+ Hits 31611 31781 +170
- Misses 3161 3179 +18
Partials 493 493
Continue to review full report at Codecov.
|
If at least one Cluster performs floating point arithmetic, then the | ||
Clusters performing integer arithmetic are ignored. | ||
|
||
If two Clusters perform calculations with different precision, the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
at least two?
da8474a
to
dd85aa0
Compare
devito/arch/archinfo.py
Outdated
@memoized_func | ||
def get_cuda_path(): | ||
# *** First try: CUDA_HOME | ||
cuda_home = os.environ.get('CUDA_HOME') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
would try CUDA_ROOT
as well
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ping
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
65d706b
to
f1f5948
Compare
devito/symbolics/extended_sympy.py
Outdated
@@ -170,6 +180,17 @@ def base(self): | |||
else: | |||
return self.pointer | |||
|
|||
@property | |||
def bound_symbols(self): | |||
# NOTE: this property requires the prefix '_' in front because |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But you are not using it right? the prefix _
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
e2faf0d
to
9cc634f
Compare
No description provided.