This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <cfloat> | |
#include <chrono> | |
#include <immintrin.h> | |
inline unsigned int __builtin_ctz(unsigned int x) { unsigned long r; _BitScanForward(&r, x); return r; } | |
const __m256i m256i_zero{}; | |
const __m256i m256i_one = _mm256_set1_epi32(1); | |
const __m256 m256_one = _mm256_set1_ps(1); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using AutoMapper; | |
namespace amtest | |
{ | |
class Order { | |
public string aaa; | |
public int[] bbb; | |
public List<int> ccc; |
NewerOlder