import { BinaryOperation } from '../../../../ops/gpu/binary/binaryOperation'; import { Dispatcher } from '../../../../ops/gpu/dispatcher'; import { DTypeGpu, GPUTensorConstructor, GPUTensorI } from '../../../../tensor/gpu/interface'; import { GPUMemoryAllocator } from '../../../../tensor/gpu/memory'; export declare class BCEBackOperation extends BinaryOperation { constructor(tensorConstructor: GPUTensorConstructor, dtype: DTypeGpu, allocator?: GPUMemoryAllocator); getOp(a: string, b: string): string; } export declare const defaultBCEBackD: Dispatcher>>;