Files
Misaki.HighPerformance/Misaki.HighPerformance.Mathematics/AutoSIMDAttribute.cs
Misaki a9c143c2a2 SPMD SIMD math library & lock-free job system integration
- Add new SPMD SIMD math project with scalar/vector lanes
- Integrate SPMD jobs and scheduling into job system
- Implement lock-free job dependency management
- Update math functions for .NET 10 and SIMD performance
- Add SPMD benchmarks, compress-store tests, and race tests
- Introduce generic Result<T> error handling utilities
- Solution/project file updates and code cleanup
2026-02-11 22:44:30 +09:00

10 lines
152 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Misaki.HighPerformance.Mathematics;
internal class AutoSIMDAttribute
{
}