(entry)
| 28 | failed_count = 0 |
| 29 | |
| 30 | def load_single_motion(entry): |
| 31 | motion_path = entry['motion_path'] |
| 32 | try: |
| 33 | motion = load_motion_tensor(motion_path) |
| 34 | return motion |
| 35 | except Exception as e: |
| 36 | return None |
| 37 | |
| 38 | # Use thread pool for parallel loading |
| 39 | with ThreadPoolExecutor(max_workers=num_workers) as executor: |
nothing calls this directly
no test coverage detected