When the PDF text is available, microsoft's Markitdown is fastest.
Install:
pip install markitdown[pdf]
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |
This approach allows you to use different ssh keys with multiple github accounts only with git config, and without any intrusive changes in repos / urls.
This approach allows for routing of SSH keys based on URL regex in the global gitconfig (no SSH config required).
From what I can see min requirements are Git 2.36+ as it introduced hasconfig support.
| params = [kp.Tensor([2, 2, 2]), kp.Tensor([1, 2, 3]), kp.Tensor([0, 0, 0])] | |
| mgr = kp.Manager() | |
| op_ct = kp.OpTensorCreate(params) | |
| op_ct = mgr.rebuild(op_ct) | |
| mgr.eval_op(op_ct) | |
| algo = kp.Algo(params, spirv) | |
| op_ac = kp.OpAlgoCreate(algo) | |
| op_ac = mgr.rebuild(op_ac) |
| # ...previous code blocks | |
| mgr = kp.Manager() | |
| # ...latter code blocks |
| // Single header include for Kompute | |
| #include "kompute/Kompute.hpp" | |
| int main() { | |
| // Vulkan resources get created unless passed | |
| kp::Manager mgr(0); // Selects GPU device at index 0 | |
| //... continued in next section | |
| } |
| import os | |
| from azure.storage.blob import BlockBlobService, PublicAccess | |
| CONTAINER_NAME = os.environ["AZURE_CONTAINER_NAME"] | |
| AZURE_STORAGE_ACCOUNT = os.environ["AZURE_STORAGE_ACCOUNT"] | |
| AZURE_STORAGE_KEY = os.environ["AZURE_STORAGE_KEY"] | |
| bbs = BlockBlobService( | |
| account_name=AZURE_STORAGE_ACCOUNT, | |
| account_key=AZURE_STORAGE_KEY) |