Skip to content

Instantly share code, notes, and snippets.

@PureWhiteWu
PureWhiteWu / little_2_big_gcc.cpp
Created January 6, 2021 08:17
little_2_big_gcc.cpp
#include <memory>
#include <chrono>
#include <iostream>
#include <immintrin.h>
#include <byteswap.h>
const int N = 1024 * 64;
long long int src_data[N];
long long int avx512_data[N];
long long int avx2_data[N];
@PureWhiteWu
PureWhiteWu / newer.go
Created October 14, 2020 07:42
使用人工智能优化 Golang 编译器 —— 最新生成代码
// Code generated by x. DO NOT EDIT.
package x
import (
"context"
"fmt"
"github.com/apache/thrift/lib/go/thrift"
)
@PureWhiteWu
PureWhiteWu / new.go
Last active January 15, 2021 06:42
使用人工智能优化 Golang 编译器 —— 新生成代码
// Code generated by x. DO NOT EDIT.
package x
import (
"context"
"fmt"
"github.com/apache/thrift/lib/go/thrift"
)
@PureWhiteWu
PureWhiteWu / old.go
Created October 14, 2020 07:31
使用人工智能优化 Golang 编译器 —— 旧生成代码
// Code generated by x. DO NOT EDIT.
package x
import (
"fmt"
"github.com/apache/thrift/lib/go/thrift"
"context"
)