...

Source file src/github.com/tetratelabs/wazero/internal/platform/platform_amd64.go

Documentation: github.com/tetratelabs/wazero/internal/platform

     1  package platform
     2  
     3  // init verifies that the current CPU supports the required AMD64 instructions
     4  func init() {
     5  	// Ensure SSE4.1 is supported.
     6  	archRequirementsVerified = CpuFeatures.Has(CpuFeatureSSE4_1)
     7  }
     8  

View as plain text