onednn-src 0.1.13

Source of oneAPI Deep Neural Network Library (oneDNN)
Documentation
/*******************************************************************************
* Copyright 2026 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/

#include "oneapi/dnnl/dnnl_ze.h"

#include "common/engine.hpp"
#include "common/primitive_desc_iface.hpp"
#include "common/primitive_iface.hpp"
#include "common/stream.hpp"
#include "common/utils.hpp"

#include "xpu/ze/stream_impl.hpp"

using namespace dnnl::impl;

status_t dnnl_ze_interop_primitive_execute(
        const primitive_iface_t *primitive_iface, stream_t *stream, int nargs,
        const dnnl_exec_arg_t *args, int ndeps, const ze_event_handle_t *deps,
        ze_event_handle_t *return_event) {
    const bool ok = !utils::any_null(primitive_iface, stream)
            && primitive_iface->engine() == stream->engine()
            && primitive_iface->engine()->runtime_kind() == runtime_kind::ze
            && IMPLICATION(nargs > 0, args != nullptr)
            && IMPLICATION(ndeps > 0, deps != nullptr);
    if (!ok) return status::invalid_arguments;

    auto *ze_stream_impl
            = utils::downcast<xpu::ze::stream_impl_t *>(stream->impl());

    // Check arguments.
    exec_args_t exec_args;
    CHECK(cvt_primitive_args(
            primitive_iface->pd()->impl().get(), nargs, args, exec_args));

    // Note: there should be no fast exit between hooks.
    stream->before_exec_hook();

    if (deps != nullptr) {
        std::vector<ze_event_handle_t> events(ndeps);
        for (int i = 0; i < ndeps; i++)
            events[i] = deps[i];
        ze_stream_impl->ze_ctx().set_deps(events);
    }

    // run primitive
    exec_ctx_t ctx(stream, std::move(exec_args));
    auto status = primitive_execute(primitive_iface, ctx);

    // return output event
    if (return_event != nullptr && status == status::success) {
        if (ze_stream_impl->flags() & stream_flags::in_order) {
            *return_event = nullptr;
        } else {
            *return_event = ze_stream_impl->get_output_event();
        }
    }

    stream->after_exec_hook();

    return status;
}