From owner-freebsd-current@freebsd.org Thu Sep 13 18:08:17 2018 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 498FC10952FC for ; Thu, 13 Sep 2018 18:08:17 +0000 (UTC) (envelope-from billprofane@gmail.com) Received: from mail-pg1-x52b.google.com (mail-pg1-x52b.google.com [IPv6:2607:f8b0:4864:20::52b]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BEB6F7C579 for ; Thu, 13 Sep 2018 18:08:16 +0000 (UTC) (envelope-from billprofane@gmail.com) Received: by mail-pg1-x52b.google.com with SMTP id s7-v6so3126373pgc.0 for ; Thu, 13 Sep 2018 11:08:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=8cj1n/xbdW8V8+w2jA2gSo7ayXFitbTxN2kmirIL4UM=; b=Dxn9AsOpOJAyuB8JPWVSD/4uAYZVgmzuvJTwceS9sQdv2aDCn4CMq6wS8m8bHy6p7E l+P1TMW83+XA954UCZbBXBf3h7W1PctFiDFAmz4FQjuEuT+x8UvBf5ad/1g1aOQT1co8 SyKWB4y96cp8ieKAArUuQ+KDLpKgCVdKbid/65gBdHv3D//HxrO6WCT57gA/5Y3vGqaN pUZymVtOma3G1Wi0QCX3nmofP65UzW2h2/yNQW9oQGOWSWPA36AmZUxi8yOaPrfB0GBE xkERSGdPRZD+ontmhVJCzMJ4pwr5mtskqcEqb53kcNPrB0n9MSHRRbtVroyk/H6uUiq7 9glg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=8cj1n/xbdW8V8+w2jA2gSo7ayXFitbTxN2kmirIL4UM=; b=L3Gj5omTjow6aAt1Um+hneTI+T5cIQq6Eb+MSRhtrYu0Ed2Yyd1J4EyuQwLXWMZOHl wIDusnmVAY0QojOenN/rgEQqvmvzI5OlLUF9+yqmrcZohsrq0sU/IaLJVk3E8XNKuz55 dC1/aQ45WV/a9F2R15g+o4s0O3yHT+TIDcEvcF3Pfw5yAQytt7PCTEd++SmbUe/7W6rw RmwT9CRb9VVdCDL3QfLjdd0P4Wo7vRb4/lNaA4TDE5Zpuek49Hr4Rjg/usPoloZVd9fn uifM4XbJtjb24d9wjf36hdxbpxAyQ0cJd5NFSKNuJmgniY6FVp7RLJMx8ZHAwgYWuq7c mCmA== X-Gm-Message-State: APzg51AWctJF7LMfx9H2q/Zo1cflSZVXq6/+R7Erir4NLtq4gA+ahcAs eEmnDf9BoMLkCH6ehOXPLgWAAVFpC7xcaQu85OrMFYYk X-Google-Smtp-Source: ANB0Vda/p4iGbo/HgSxM3FLOi6Wp9KtQjTQjKsNSyrmVmz1eKQ1k1DQX89f1V+NB2fWcyGfTRwKF/nhz9fKtdU9MhZs= X-Received: by 2002:a63:1b07:: with SMTP id b7-v6mr8197780pgb.444.1536862095724; Thu, 13 Sep 2018 11:08:15 -0700 (PDT) MIME-Version: 1.0 From: bill profane Date: Thu, 13 Sep 2018 11:08:04 -0700 Message-ID: Subject: Implementing my Quantum data parallization library as a FreeBSD module To: freebsd-current@freebsd.org X-Mailman-Approved-At: Thu, 13 Sep 2018 19:05:04 +0000 Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.27 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Sep 2018 18:08:17 -0000 Sorry if this message sounds a little off, I'm on meds But I have a C library that could be of use for bleeding edge BSD distrobutions: The code is hosted at github at https://github.com/unidef/quantum Basically, it implements huge multidimension arrays using pointers and structures, and features a way to move data in and out of the "neuron". Each neuron consists of a data structure that has a pointer to char description and features a broken multidimensional binary tree It's memory intensive for now since there is no code to write data to disk (I'm a little rusty on my C), and broken since I cant figure out #ifdef But it could be of use for the FreeBSD kernel, it follows the BSD license For convenience: git clone https://github.com/unidef/quantum . Sorry again for the crappy and incomplete code, been dealing with medical issues. If this is considered spam, please tell me and I will desist in future posts such as this. Thank you Bill "unidef" Profane