Skip to content

Instantly share code, notes, and snippets.

@TadaoYamaoka
TadaoYamaoka / settai_dlshogi.zip
Last active October 11, 2021 13:53
接待dlshogi
This file has been truncated, but you can view the full file.
#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);
@TadaoYamaoka
TadaoYamaoka / Program.cs
Last active August 7, 2019 13:11
AutoMapperのサンプルプログラム
using System;
using System.Collections.Generic;
using AutoMapper;
namespace amtest
{
class Order {
public string aaa;
public int[] bbb;
public List<int> ccc;