Some hacks to build and run OpenCL on Qualcomm S800.
Some of functions were enabled on Qualcomm S800 by changing grid size; OpenCL kernel grid size unification for different platfroms; Test pass rate improvements by inclreasing threshold; Some tests were disabled for Android; run.py was adopted for devices with brackets in in name.
This commit is contained in:
@@ -562,7 +562,10 @@ class TestSuite(object):
|
||||
else:
|
||||
hw = ""
|
||||
tstamp = timestamp.strftime("%Y%m%d-%H%M%S")
|
||||
return "%s_%s_%s_%s%s%s.xml" % (app, self.targetos, self.targetarch, hw, rev, tstamp)
|
||||
lname = "%s_%s_%s_%s%s%s.xml" % (app, self.targetos, self.targetarch, hw, rev, tstamp)
|
||||
lname = str.replace(lname, '(', '_')
|
||||
lname = str.replace(lname, ')', '_')
|
||||
return lname
|
||||
|
||||
def getTest(self, name):
|
||||
# full path
|
||||
|
Reference in New Issue
Block a user