@@ -667,8 +667,8 @@ jit_compiler::fuseKernels(QueueImplPtr Queue,
667
667
unsigned KernelIndex = 0 ;
668
668
ParamList FusedParams;
669
669
PromotionMap PromotedAccs;
670
- // TODO(Lukas, ONNX-399) : Collect information about streams and auxiliary
671
- // resources (which contain reductions) and figure out how to fuse them.
670
+ // TODO: Collect information about streams and auxiliary resources (which
671
+ // contain reductions) and figure out how to fuse them.
672
672
for (auto &RawCmd : InputKernels) {
673
673
auto *KernelCmd = static_cast <ExecCGCommand *>(RawCmd);
674
674
auto &CG = KernelCmd->getCG ();
@@ -760,8 +760,7 @@ jit_compiler::fuseKernels(QueueImplPtr Queue,
760
760
}
761
761
}
762
762
763
- // TODO(Lukas, ONNX-399): Check for the correct kernel bundle state of the
764
- // device image?
763
+ // TODO: Check for the correct kernel bundle state of the device image?
765
764
auto &RawDeviceImage = DeviceImage->getRawData ();
766
765
auto DeviceImageSize = static_cast <size_t >(RawDeviceImage.BinaryEnd -
767
766
RawDeviceImage.BinaryStart );
@@ -803,8 +802,7 @@ jit_compiler::fuseKernels(QueueImplPtr Queue,
803
802
// Not all overloads of parallel_for_work_group only specify the number of
804
803
// work-groups, so the above mechanism might not detect all hierarchical
805
804
// parallelism.
806
- // TODO(Lukas, CRD-6): Find a more reliable way to detect hierarchical
807
- // parallelism.
805
+ // TODO: Find a more reliable way to detect hierarchical parallelism.
808
806
}
809
807
810
808
// We need to copy the storages here. The input CGs might be eliminated
@@ -815,9 +813,9 @@ jit_compiler::fuseKernels(QueueImplPtr Queue,
815
813
KernelCG->getArgsStorage ().end ());
816
814
AccStorage.insert (AccStorage.end (), KernelCG->getAccStorage ().begin (),
817
815
KernelCG->getAccStorage ().end ());
818
- // TODO(Lukas, ONNX-399) : Does the MSharedPtrStorage contain any
819
- // information about actual shared pointers beside the kernel bundle and
820
- // handler impl? If yes, we might need to copy it here.
816
+ // TODO: Does the MSharedPtrStorage contain any information about actual
817
+ // shared pointers beside the kernel bundle and handler impl? If yes, we
818
+ // might need to copy it here.
821
819
Requirements.insert (Requirements.end (), KernelCG->getRequirements ().begin (),
822
820
KernelCG->getRequirements ().end ());
823
821
Events.insert (Events.end (), KernelCG->getEvents ().begin (),
0 commit comments