-
Notifications
You must be signed in to change notification settings - Fork 130
Sampler Lit Tests #152
Sampler Lit Tests #152
Conversation
Signed-off-by: Chris Perkins <chris.perkins@intel.com>
The failures are dependency issue. Will restart tests once it is fixed. |
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.
The dependency issues have been resolved. Please fix RUN line to have tests run properly.
Signed-off-by: Chris Perkins <chris.perkins@intel.com>
@vladimirlaz - How does one find out how/where these tests are supposedly failing? When I click the Details link it just results in a Network error. I pull this branch, merged it against the latest of |
Signed-off-by: Chris Perkins <chris.perkins@intel.com>
Signed-off-by: Chris Perkins <chris.perkins@intel.com>
Signed-off-by: Chris Perkins <chris.perkins@intel.com>
Signed-off-by: Chris Perkins <chris.perkins@intel.com>
Signed-off-by: Chris Perkins <chris.perkins@intel.com>
If the test caused timeout on some configuration we can only mark them UNSUPPORTED. |
Signed-off-by: Chris Perkins <chris.perkins@intel.com>
Signed-off-by: Chris Perkins <chris.perkins@intel.com>
@cperkinsintel, Sampler/unnormalized-none-linear.cpp is failing for NFC change: intel/llvm#3319 |
@bader, does it make sense to add such sort of tests to CTS instead? |
It does if CTS doesn't cover this already. |
@bader @pvchupin - The CTS tests don't cover the samplers at all. All they do is make sure the interface is fully defined and available. There is no actual testing of functionality. |
@cperkinsintel, it sounds reasonable for this case. Thanks. For the future (and less urgent) cases we may want to consider to contribute directly to CTS. Let's keep that in mind. |
Between the coordinate_normalization_mode , addressing_mode and filtering_mode there are 16 valid combinations that a sampler should support for RGBA images. Here we are adding each combination as its own test. Some of the devices do not support particular combinations. For example, the CPU device is not correctly supporting linear interpolation at this time. In those cases, I have simply skipped the //RUN: directive for the not-yet-supporting device and left a comment in its place. Signed-off-by: Chris Perkins <chris.perkins@intel.com>
Between the
coordinate_normalization_mode
,addressing_mode
andfiltering_mode
there are 16 valid combinations that a sampler should support for RGBA images. Here we are adding each combination as its own test.Some of the devices do not support particular combinations. For example, the CPU device is not correctly supporting linear interpolation at this time. In those cases, I have simply skipped the
//RUN:
directive for the not-yet-supporting device and left a comment in its place. Let me know if this is not the correct approach.Signed-off-by: Chris Perkins chris.perkins@intel.com