2017q1 Homework5(matrix) === contributed by < `PeterTing` > ###### tags: `PeterTing` `matrix` ## 原程式設計分析 利用 ``` #define DECLARE_MATRIX(col, row) \ 8 typedef struct { float values[col][row]; } Mat ## col ## x ## row ``` 使編譯器再 preprocessing 階段就先定義,使佔用空間變小,因為不需要在內存中分配變量空間 "##" 是用來連接兩個字串 參考此篇[文章](http://kasonblog.blogspot.tw/2012/09/cc-define.html) ``` 17 typedef struct { 18 void (*assign)(Matrix *thiz, Mat4x4); 19 bool (*equal)(const Matrix *l, const Matrix *r); 20 bool (*mul)(Matrix *dst, const Matrix *l, const Matrix *r); 21 } MatrixAlgo; ``` * 在 matrix.h 中使用 function pointer 來指派 3個動作 * assign * equal * mul 這樣的作法為物件導向的作法,之後在改變演算法的時候不用再重新定義一個 MatrixAlgo , 只要將 function pointer 指到另一個實作即可 ### 要改進的地方 * matrix_naive.c 中限制只能使用 4*4 的 matrix * 使用 SSE 以及 AVX 提升程式效能 ## 改進方案 ### SSE 和 AVX 對 mul 用 sse 和 avx 進行改良 ### 物件導向 ### sub-matrix ### column major ### data alignment ### Cypto API ### smart pointer ### thread-safe ### 新效能工具 ## 驗證
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up