From e1192c054db8912d88a061ce566048fc1db9f168 Mon Sep 17 00:00:00 2001
From: Andreas Kloeckner <inform@tiker.net>
Date: Wed, 18 Apr 2012 23:31:55 -0400
Subject: [PATCH] Some whitespace fixes.

---
 loopy/kernel.py   | 6 +++---
 loopy/symbolic.py | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/loopy/kernel.py b/loopy/kernel.py
index ae40d8dbe..eb7a340e4 100644
--- a/loopy/kernel.py
+++ b/loopy/kernel.py
@@ -508,7 +508,7 @@ class LoopKernel(Record):
         returning a tuple (result_dtype, function_name), where the function_name
         is the C-level function to be called.
     :ivar defines: a dictionary of replacements to be made in instructions given
-        as strings before parsing. A macro instance intended to be replaced should 
+        as strings before parsing. A macro instance intended to be replaced should
         look like "{MACRO}" in the instruction code. The expansion given in this
         parameter is allowed to be a list. In this case, instructions are generated
         for *each* combination of macro values.
@@ -533,7 +533,7 @@ class LoopKernel(Record):
 
     def __init__(self, device, domain, instructions, args=None, schedule=None,
             name="loopy_kernel",
-            preambles=[], 
+            preambles=[],
             preamble_generators=[default_preamble_generator],
             assumptions=None,
             local_sizes={},
@@ -547,7 +547,7 @@ class LoopKernel(Record):
             iname_slab_increments={},
             applied_iname_rewrites=[],
             cache_manager=None,
-            iname_to_tag_requests=None, 
+            iname_to_tag_requests=None,
             lowest_priority_inames=[], breakable_inames=set()):
         """
         :arg domain: a :class:`islpy.BasicSet`, or a string parseable to a basic set by the isl.
diff --git a/loopy/symbolic.py b/loopy/symbolic.py
index d91b94c00..c7376b4d6 100644
--- a/loopy/symbolic.py
+++ b/loopy/symbolic.py
@@ -53,7 +53,7 @@ class TypedCSE(CommonSubexpression):
 class TaggedVariable(VariableBase):
     """This is an identifier with a tag, such as 'matrix$one', where
     'one' identifies this specific use of the identifier. This mechanism
-    may then be used to address these uses--such as by prefetching only 
+    may then be used to address these uses--such as by prefetching only
     accesses tagged a certain way.
     """
     def __init__(self, name, tag):
-- 
GitLab