cwl0429

@cwl0429

Joined on Oct 3, 2021

  • 資料內容 原先的資料 資料筆數4925571 筆 資料欄位 租借時長 租車日期 租車時間 第幾個小時租車的
     Like  Bookmark
  • contributed by < cwl0429 > $ lscpu Architecture: x86_64 CPU op-mode(s): 32-bit, 64-bit Byte Order: Little Endian Address sizes: 39 bits physical, 48 bits virtual CPU(s): 8 On-line CPU(s) list: 0-7 Thread(s) per core: 2
     Like  Bookmark
  • contributed by < cwl0429 > 實驗環境 $ gcc --version gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0 $ lscpu Architecture: x86_64 CPU op-mode(s): 32-bit, 64-bit Byte Order: Little Endian
     Like  Bookmark
  • 安裝前置作業 檢查以下事項 gpu 型號 欲使用的 tensorflow 版本 確認 GPU 支援的 CUDA 版本 以 Geforce RTX 3060 為例,其 CUDA 至少要 8.6 以上
     Like 3 Bookmark
  • Animation 根據 Automation of the Avatar Animation Process in FBX File Format 的內容,FBX SDK 使用了以下幾種 Animation Data Structures: animation stack is the highest level container for animation data. animation layer animation curve animation curve node
     Like  Bookmark
  • contributed by < cwl0429 > 這次測驗的目標是利用 lkm 來變更特定 Linux 行程的內部狀態,需要瞭解 workqueue, signal 等機制的原理及使用方法,以下內容皆以 Linux v5.13 為基礎 先備知識 workqueue workqueue 是 linux 內用來處理非同步行程 execution context 的機制 digraph queue{ rankdir="LR"
     Like  Bookmark
  • contributed by < cwl0429 > 測驗題目 測驗 1 藉由 bitwise operation,定義 hash table 大小 #define MAP_HASH_SIZE(bits) (1 << bits)
     Like  Bookmark
  • 測驗 1 這題目的目標是將 memchr 改寫成 SWAR 版本 void *memchr_opt(const void *src_void, int c, size_t length) { const unsigned char *src = (const unsigned char *) src_void; unsigned char d = c; while (UNALIGNED(src)) { if (!length--) return NULL;
     Like  Bookmark
  • contributed by < cwl0429 > 測驗 1 觀察下列程式碼 a >> 1 和 b >> 1 的功用都是將其除 2,此時會遇到最低位元遺失問題 需要將最低位元補上,方法是 a 和 b 作 AND,接著和 1 作 AND,便可取得遺失的位元,因此 EXP1 為 a & b & 1 #include <stdint.h> uint32_t average(uint32_t a, uint32_t b)
     Like  Bookmark
  • {%hackmd BJrTq20hE %} UI Screamshot UI Detail 繼承LookandFeelv4 class 來設計自己的旋鈕 利用下列含式將旋鈕外圈亮紫色的部分畫出 juce::Path backgroundArc;
     Like  Bookmark
  • {%hackmd BJrTq20hE %} UI Screenshot UI details Combobox 藉由Combobox來選擇欲呈現的波型 將各種波型加入ComboBox中
     Like  Bookmark