@@ -534,14 +534,6 @@ struct flagcxDevBarrier<flagcxTeamTagIntra, Coop> {
534534 sync (flagcxDeviceMemoryOrder_t order = flagcxDeviceMemoryOrderAcqRel) {
535535 _impl.sync (order);
536536 }
537-
538- // S-API epoch accessors
539- FLAGCX_DEVICE_INLINE_DECORATOR uint64_t getEpoch () const {
540- return _impl.getEpoch ();
541- }
542- FLAGCX_DEVICE_INLINE_DECORATOR void setEpoch (uint64_t e) {
543- _impl.setEpoch (e);
544- }
545537};
546538
547539// ============================================================
@@ -918,14 +910,6 @@ struct flagcxDevBarrier<flagcxTeamTagInter, Coop> {
918910 flagcxDevNetFenceLevel fence = flagcxDevNetFenceLevel::Relaxed) {
919911 _impl.sync (order, fence);
920912 }
921-
922- // S-API epoch accessors
923- FLAGCX_DEVICE_INLINE_DECORATOR uint64_t getEpoch () const {
924- return _impl.getEpoch ();
925- }
926- FLAGCX_DEVICE_INLINE_DECORATOR void setEpoch (uint64_t e) {
927- _impl.setEpoch (e);
928- }
929913};
930914
931915// ---- World ----
@@ -970,20 +954,6 @@ struct flagcxDevBarrier<flagcxTeamTagWorld, Coop> {
970954 flagcxDevNetFenceLevel fence = flagcxDevNetFenceLevel::Relaxed) {
971955 _impl.sync (order, fence);
972956 }
973-
974- // S-API epoch accessors (world = intra + inter)
975- FLAGCX_DEVICE_INLINE_DECORATOR uint64_t getIntraEpoch () const {
976- return _impl.getIntraEpoch ();
977- }
978- FLAGCX_DEVICE_INLINE_DECORATOR void setIntraEpoch (uint64_t e) {
979- _impl.setIntraEpoch (e);
980- }
981- FLAGCX_DEVICE_INLINE_DECORATOR uint64_t getInterEpoch () const {
982- return _impl.getInterEpoch ();
983- }
984- FLAGCX_DEVICE_INLINE_DECORATOR void setInterEpoch (uint64_t e) {
985- _impl.setInterEpoch (e);
986- }
987957};
988958
989959// Backward-compatible aliases
0 commit comments