mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-24 19:43:35 +00:00
### Description <!-- Describe your changes. --> Added Uniforms to Expand operator kernel ### Motivation and Context <!-- - Why is this change required? What problem does it solve? - If it fixes an open issue, please link to the issue here. --> Improve performance
97 lines
4.1 KiB
TypeScript
97 lines
4.1 KiB
TypeScript
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
import {TensorView} from '../../tensor-view';
|
|
import {ShapeUtil} from '../../util';
|
|
import {ComputeContext, ProgramInfo, ProgramUniform} from '../types';
|
|
|
|
import {createTensorShapeVariables, enableShapesUniforms, inputVariable, outputVariable, ShaderHelper} from './common';
|
|
|
|
const validateInputs = (inputs: readonly TensorView[]): void => {
|
|
if (!inputs || inputs.length !== 2) {
|
|
throw new Error('Expand requires 2 input.');
|
|
}
|
|
const inputShape = inputs[0].dims;
|
|
const shape = Array.from(inputs[1].getBigInt64Array(), Number);
|
|
|
|
let shapeIndex = shape.length < inputShape.length ? 0 : shape.length - inputShape.length;
|
|
let inputShapeIndex = inputShape.length < shape.length ? 0 : inputShape.length - shape.length;
|
|
for (; shapeIndex < shape.length && inputShapeIndex < inputShape.length; ++shapeIndex, ++inputShapeIndex) {
|
|
if (shape[shapeIndex] !== inputShape[inputShapeIndex] && shape[shapeIndex] !== 1 &&
|
|
inputShape[inputShapeIndex] !== 1) {
|
|
throw new Error('Expand requires shape to be broadcastable to input');
|
|
}
|
|
}
|
|
};
|
|
|
|
const getAdjustedShape = (shape1: readonly number[], shape2: readonly number[]): number[] => {
|
|
const diff = shape1.length - shape2.length;
|
|
const shape: number[] = [];
|
|
for (let i = 0; i < diff; ++i) {
|
|
shape.push(shape1[i]);
|
|
}
|
|
for (let i = 0; i < shape2.length; ++i) {
|
|
shape.push(shape2[i] === 1 ? shape1[i + diff] : shape2[i]);
|
|
}
|
|
return shape;
|
|
};
|
|
|
|
const calculateOutputShape = (inputShape: readonly number[], shape: readonly number[]): number[] =>
|
|
(inputShape.length > shape.length) ? getAdjustedShape(inputShape, shape) : getAdjustedShape(shape, inputShape);
|
|
|
|
|
|
const createExpandProgramInfo = (inputs: readonly TensorView[]): ProgramInfo => {
|
|
const inputShape = inputs[0].dims;
|
|
const shape = Array.from(inputs[1].getBigInt64Array(), Number);
|
|
const outputShape: number[] = calculateOutputShape(inputShape, shape);
|
|
const outputSize = ShapeUtil.size(outputShape);
|
|
|
|
const dataType = inputs[0].dataType;
|
|
const enableInputShapeUniform = enableShapesUniforms(inputShape.length);
|
|
const inputShapeOrRank = enableInputShapeUniform ? inputShape.length : inputShape;
|
|
const input = inputVariable('input', dataType, inputShapeOrRank);
|
|
const enableOutputShapeUniform = enableShapesUniforms(outputShape.length);
|
|
const outputShapeOrRank = enableOutputShapeUniform ? outputShape.length : outputShape;
|
|
const output = outputVariable('output', dataType, outputShapeOrRank);
|
|
|
|
const getShaderSource = (shaderHelper: ShaderHelper) => `
|
|
const inputShape = ${input.indices(...inputShape)};
|
|
${shaderHelper.registerUniform('vec_size', 'u32').declareVariables(input, output)}
|
|
${shaderHelper.mainStart()}
|
|
${shaderHelper.guardAgainstOutOfBoundsWorkgroupSizes('uniforms.vec_size')}
|
|
let outputIndices = ${output.offsetToIndices('global_idx')};
|
|
var inputIndices: ${input.type.indices};
|
|
for (var i = 0; i < ${inputShape.length}; i++) {
|
|
if (${input.indicesGet('inputShape', 'i')} == 1) {
|
|
${input.indicesSet('inputIndices', 'i', 0)}
|
|
} else {
|
|
${
|
|
input.indicesSet(
|
|
'inputIndices', 'i', output.indicesGet('outputIndices', `i + ${outputShape.length - inputShape.length}`))}
|
|
}
|
|
}
|
|
${output.setByOffset('global_idx', input.getByIndices('inputIndices'))}
|
|
}`;
|
|
const programUniforms: ProgramUniform[] = [{type: 'uint32', data: outputSize}];
|
|
if (enableInputShapeUniform) {
|
|
programUniforms.push(...createTensorShapeVariables(inputShape));
|
|
}
|
|
if (enableOutputShapeUniform) {
|
|
programUniforms.push(...createTensorShapeVariables(outputShape));
|
|
}
|
|
return {
|
|
name: 'Expand',
|
|
shaderCache: {hint: `${outputShape}`, inputDependencies: [enableInputShapeUniform ? 'rank' : 'dims']},
|
|
getShaderSource,
|
|
getRunData: () => ({
|
|
outputs: [{dims: outputShape, dataType: inputs[0].dataType}],
|
|
dispatchGroup: {x: Math.ceil(outputSize / 64 /* workgroup size */)},
|
|
programUniforms
|
|
})
|
|
};
|
|
};
|
|
|
|
export const expand = (context: ComputeContext): void => {
|
|
validateInputs(context.inputs);
|
|
context.compute(createExpandProgramInfo(context.inputs), {inputs: [0]});
|
|
};
|