Closed oleksandr-pavlyk closed 1 month ago
Deleted rendered PR docs from intelpython.github.com/dpctl, latest should be updated shortly. :crossed_fingers:
Array API standard conformance tests for dpctl=0.19.0dev0=py310hdf72452_99 ran successfully. Passed: 895 Failed: 0 Skipped: 119
Array API standard conformance tests for dpctl=0.19.0dev0=py310hdf72452_104 ran successfully. Passed: 894 Failed: 1 Skipped: 119
@oleksandr-pavlyk
Seems dpctl4pybind11.hpp
includes exception instead of stdexcept, kernels/elementwise_functions/common.hpp
doesn't include stdexcept either. Those were the only cases I found left (outside of the examples).
Array API standard conformance tests for dpctl=0.19.0dev0=py310hdf72452_105 ran successfully. Passed: 895 Failed: 0 Skipped: 119
@ndgrigorian Thank you for catching the omissions. I have pushed two commits with fixes.
Array API standard conformance tests for dpctl=0.19.0dev0=py310hdf72452_107 ran successfully. Passed: 895 Failed: 0 Skipped: 119
This PR
#include <stdexcept>
to files that usestd::runtime_error
exception#include <new>
to files that usestd::bad_alloc
exceptionsycl::get_kernel_bundle<sycl::bundle_state::executable>
now usecgh.use_kernel_bundle(kb)
to avoid recompiling that kernel.