id
int64
0
45.1k
file_name
stringlengths
4
68
file_path
stringlengths
14
193
content
stringlengths
32
9.62M
size
int64
32
9.62M
language
stringclasses
1 value
extension
stringclasses
6 values
total_lines
int64
1
136k
avg_line_length
float64
3
903k
max_line_length
int64
3
4.51M
alphanum_fraction
float64
0
1
repo_name
stringclasses
779 values
repo_stars
int64
0
882
repo_forks
int64
0
108
repo_open_issues
int64
0
90
repo_license
stringclasses
8 values
repo_extraction_date
stringclasses
146 values
sha
stringlengths
64
64
__index_level_0__
int64
0
45.1k
exdup_ids_cmlisp_stkv2
listlengths
1
47
20,799
end.lisp
borodust_post-man/src/state/end.lisp
(cl:in-package :post-man) (defclass endgame-state (input-handling-state) ((boxes-collected :initform (error ":boxes-collected missing") :initarg :boxes-collected) (seconds-spent :initform (error ":seconds-spent missing") :initarg :seconds-spent) (level :initform (error ":...
2,333
Common Lisp
.lisp
48
34.833333
84
0.560933
borodust/post-man
2
1
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
0f3d706de05dc35d82e69675876f1eb3994a85d021b583033074bd3da98e4933
20,799
[ -1 ]
20,800
init.lisp
borodust_post-man/src/state/init.lisp
(cl:in-package :post-man) (defclass init-state () ()) (defmethod gamekit:post-initialize ((this init-state)) (gamekit:prepare-resources :retro :splash :rob-o-man-front :rob-o-man-back :rob-o-man-right :rob-o-man-left :bogdan-fr...
1,351
Common Lisp
.lisp
26
36.961538
80
0.548975
borodust/post-man
2
1
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
c45cd4633b4698895ff81b0da7858aaea5df6e8400055e6fa097c8aae77a296f
20,800
[ -1 ]
20,801
box.lisp
borodust_post-man/src/object/box.lisp
(cl:in-package :post-man) (defclass box (positionable renderable) ()) (defmethod render ((this box)) (gamekit:with-pushed-canvas () (translate-position (position-of this)) (gamekit:scale-canvas 0.5 0.5) (gamekit:draw-image *origin* :box))) (defun play-box-pick-up-sound () (gamekit:play-sound :box-...
396
Common Lisp
.lisp
11
32.636364
43
0.70557
borodust/post-man
2
1
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
54760d4af04c8a5ca999c833151caed224f9ed477ce4a59833ae2bcfa0cd5414
20,801
[ -1 ]
20,802
level.lisp
borodust_post-man/src/object/level.lisp
(cl:in-package :post-man) (defparameter *floor-color* (gamekit:vec4 0.3 0.3 0.3 1)) (defparameter *obstacle-count* (truncate (* *grid-size* 1.5))) (defclass level (positionable renderable) ((obstacle-map :initform (make-hash-table :test 'equal)) (object-map :initform (make-hash-table)) (objectives :initform...
6,848
Common Lisp
.lisp
144
38.201389
82
0.597084
borodust/post-man
2
1
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
b70c3f9e72bc2e69ca4cde19c16911177f0aa73f1b47d9c24f5cc7205fa7c22a
20,802
[ -1 ]
20,803
rob-o-man.lisp
borodust_post-man/src/object/rob-o-man.lisp
(cl:in-package :post-man) (defparameter *rob-o-man-free-speed* 3) (defparameter *rob-o-man-carry-speed* 2) (defclass rob-o-man (being) ((inventory :initform nil)) (:default-initargs :speed *rob-o-man-free-speed* :color (gamekit:vec4 0.1 0.4 0.1 1))) (defmethod update ((this rob-o-man)) (...
2,539
Common Lisp
.lisp
59
34.898305
87
0.621709
borodust/post-man
2
1
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
bc5c577df1c734a232fb1492b37c081ad6f8a192d9640ee7359a2f8cf5dd1671
20,803
[ -1 ]
20,804
being.lisp
borodust_post-man/src/object/being.lisp
(cl:in-package :post-man) (defvar *directions* '((:up . :down) (:down . :up) (:left . :right) (:right . :left))) (defclass being (updatable positionable bounded renderable) ((direction :initform nil :reader direction-of) (next-position :reade...
2,753
Common Lisp
.lisp
61
34.967213
86
0.595069
borodust/post-man
2
1
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
931dd5221e3c7c6bf615449caae668715248e1223f47da3b3d7460cbe8cf9163
20,804
[ -1 ]
20,805
rack.lisp
borodust_post-man/src/object/rack.lisp
(cl:in-package :post-man) (defclass rack (positionable objective renderable) ()) (defgeneric %render-rack (rack)) (defgeneric %render-active-rack (rack)) (defmethod render ((this rack)) (translate-position (position-of this)) (gamekit:scale-canvas 0.5 0.5) (if (activatedp this) (%render-active-rack ...
997
Common Lisp
.lisp
24
38.25
56
0.716245
borodust/post-man
2
1
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
337997d1eff3fab001bb7b5e60f08350013e9d7d0762cab72b6241ab6b0a84a2
20,805
[ -1 ]
20,806
object.lisp
borodust_post-man/src/object/object.lisp
(cl:in-package :post-man) (declaim (special *update-delta-time*)) (defgeneric destroy (object) (:method (object) (declare (ignore object)))) ;;; ;;; RENDERABLE ;;; (defgeneric render (object)) (defgeneric register-renderable (state renderable)) (defgeneric remove-renderable (state renderable)) (defclass render...
4,159
Common Lisp
.lisp
123
28.252033
83
0.648608
borodust/post-man
2
1
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
7ab501d88f441bc32fe2eed2759432afdd46d394123aa21b3c0aad8129dd2dab
20,806
[ -1 ]
20,807
bogdan.lisp
borodust_post-man/src/object/bogdan.lisp
(cl:in-package :post-man) (defclass bogdan (being) ((path :initform nil) (pause :initform 0)) (:default-initargs :speed 1 :color (gamekit:vec4 0.4 0.1 0.1 1))) (defmethod render ((this bogdan)) (gamekit:with-pushed-canvas () (translate-position (position-of this)) (gamekit:translate-canvas -5 0) ...
1,526
Common Lisp
.lisp
35
34.257143
73
0.57037
borodust/post-man
2
1
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
7a0cc11e91aee34ed92d01c0ffadcbae38e99c39f0e6050bc384bbba0f4d1249
20,807
[ -1 ]
20,808
post-man.asd
borodust_post-man/post-man.asd
(pushnew :bodge-gl2 *features*) (asdf:defsystem :post-man :description "Autumn Lisp Game Jam 2019 entry" :author "" :license "GPLv3" :depends-on (:alexandria :trivial-gamekit :trivial-gamekit-fistmachine :trivial-gamekit-input-handler :bodge-heap ...
1,293
Common Lisp
.asd
36
18.472222
50
0.373408
borodust/post-man
2
1
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
ea6bc1f58acda200b91c29020952868659db38f26ce09913058d79b6f14d4372
20,808
[ -1 ]
20,810
.travis.yml
borodust_post-man/.travis.yml
language: common-lisp sudo: false addons: apt: packages: - zip env: global: - GAMEKIT_SYSTEM_NAME: post-man - GAMEKIT_APPLICATION_PACKAGE: post-man - GAMEKIT_APPLICATION_MAIN_CLASS: post-man - PATH: ~/.bodge/bin/:$PATH - GAMEKIT_TARGET_PACKAGE: $GAMEKIT_SYSTEM_NAME-x86-64-$TRAVIS_OS_NAME-$TRAVIS...
1,921
Common Lisp
.l
47
37.787234
698
0.789163
borodust/post-man
2
1
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
6589f9267614f36c70e8ceb75c76b673172a85f8dc442831b31188bab13566d5
20,810
[ -1 ]
20,811
.appveyor.yml
borodust_post-man/.appveyor.yml
image: - Visual Studio 2013 platform: - x64 environment: global: GAMEKIT_SYSTEM_NAME: post-man GAMEKIT_APPLICATION_PACKAGE: post-man GAMEKIT_APPLICATION_MAIN_CLASS: post-man GAMEKIT_ARTIFACT: $(GAMEKIT_SYSTEM_NAME)-x86-64-windows-$(APPVEYOR_REPO_TAG_NAME).zip GAMEKIT_BUILD_DIR: $(TMP)\$(GAME...
1,454
Common Lisp
.l
47
27.531915
89
0.713162
borodust/post-man
2
1
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
88c875cef598705677e84d72dd6d5e380ec706ddc88c16f6b0ebf74c8ec0be87
20,811
[ -1 ]
20,841
package.lisp
ahungry_sdl-blub/package.lisp
;;;; package.lisp (defpackage #:sdl-blub (:use #:cl #:sdl #:glyphs)) ;;(:use #:cl #:lispbuilder-sdl-gfx #:sdl #:glyphs))
124
Common Lisp
.lisp
4
29.25
51
0.613445
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
856a7078459a621cc88338dd067b4bde214a937854b4eaf70a69d9d789a52090
20,841
[ -1 ]
20,842
sdl-blub.lisp
ahungry_sdl-blub/sdl-blub.lisp
;;;; sdl-blub.lisp (in-package #:sdl-blub) ;;; "sdl-blub" goes here. Hacks and glory await! ;; Tutorials/docs here: http://code.google.com/p/lispbuilder/wiki/UsingLispbuilderSDL#The_Game_Loop ;; Standalone (eventually) here: http://code.google.com/p/lispbuilder/wiki/StandAloneExecutables (in-readtable glyphs:syntax...
32,093
Common Lisp
.lisp
696
33.778736
114
0.520271
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
ee703fd5662be93a0d50af19925842f77933033877a6f5d096d70c9323138b30
20,842
[ -1 ]
20,843
sdl-blub.asd
ahungry_sdl-blub/sdl-blub.asd
;;;; sdl-blub.asd (asdf:defsystem #:sdl-blub :description "Describe sdl-blub here" :author "Your Name <your.name@example.com>" :license "Specify license here" :depends-on (#:lispbuilder-sdl #:lispbuilder-sdl-gfx #:lispbuilder-sdl-image #:lispbuilder-sdl-mixer ...
470
Common Lisp
.asd
15
22.466667
45
0.557269
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
7faeea7122617a6556fd3ebe4e59aa9f276abd18cb5e993207117294dd82cc5d
20,843
[ -1 ]
20,848
Glitch All 1362 Public Location Preview images.html
ahungry_sdl-blub/assets/bg/glitch-sampler/Glitch All 1362 Public Location Preview images.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head><meta content="text/html; charset=ISO-8859-1" http-equiv="content-type"><title>Glitch 1362 Locations</title>< </head> <body> <body style="color: rgb(204, 204, 204); background-color: black;" alink="#ccccff" link="#ccc...
154,355
Common Lisp
.l
1,370
111.667883
121
0.749871
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
c9b78b4706a7d11ca6052a6b360f1c105d9f70b520f722a5c936ac6215d6b5e2
20,848
[ -1 ]
20,849
LDOF15642S031VN.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GDOF15642S031VN treetop_03-trees at sunset/LDOF15642S031VN.xml
<game_object tsid="LDOF15642S031VN" ts="1364242993746" label="Sabelli Ochre" class_tsid="town" hubid="126" moteid="9" letime="3g8ef11e" rbtime="30s24620" upd_gs="gs6" load_time="2013-03-25 13:12:42.000"> <object id="dynamic"> <bool id="jobs_is_locked">false</bool> <null id="events"/> <object id="edit_history"> ...
28,930
Common Lisp
.l
900
27.757778
203
0.651124
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
0a3c2aa52f904cf8e9e1a02e4b233bcf674f6f2f4647089f1c99e9090c99cacf
20,849
[ -1 ]
20,850
GDOF15642S031VN.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GDOF15642S031VN treetop_03-trees at sunset/GDOF15642S031VN.xml
<game_object tsid="GDOF15642S031VN" ts="1339983840258" label="treetop_03" class_tsid="" lastUpdateTime="1339983830139" upd_gs="gs7" load_time="2012-06-17 16:43:24.247" upd_time="2012-06-17 18:39:17.634"> <object id="dynamic"> <int id="l">-2500</int> <int id="r">2500</int> <int id="t">-1500</int> <int id="b">0<...
360,210
Common Lisp
.l
11,131
25.420178
203
0.54076
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
ab37bd7f77789e6a39efb5317fb49e702097fb213f46e1471fb2d4c8eeaf3ec1
20,850
[ -1 ]
20,851
GLICFILAMTI11QV.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/forest/GLICFILAMTI11QV.xml
<game_object tsid="GLICFILAMTI11QV" ts="1336606371762" label="Scribe&apos;s Weald" class_tsid="" lastUpdateTime="1336606361547" upd_gs="gs10" load_time="2012-05-09 16:23:03.672" upd_time="2012-05-09 16:32:31.892"> <object id="dynamic"> <int id="l">-1250</int> <int id="r">1250</int> <int id="t">-1000</int> <int...
50,071
Common Lisp
.l
1,533
26.026093
213
0.549405
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
0f2038c870f4ef82dea35528c889d9e4e8df6220a0b0ec0422630fc9c0d23562
20,851
[ -1 ]
20,852
LLICFILAMTI11QV.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/forest/LLICFILAMTI11QV.xml
<game_object tsid="LLICFILAMTI11QV" ts="1364245820669" label="Scribe&apos;s Weald" class_tsid="town" hubid="56" moteid="9" letime="3ld2gab5" rbtime="25h9uak4" upd_gs="gs6" load_time="2013-03-25 09:37:13.000"> <object id="dynamic"> <object id="loading_image"> <str id="url">streets/2011-07-21/LLICFILAMTI11QV_loadin...
87,679
Common Lisp
.l
2,444
31.246727
208
0.672146
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
b38cb67a83afa7f2a6ed896792f3aa400e3066679fa10e43323c0e95dcc8b56a
20,852
[ -1 ]
20,853
LUVDU3H5COS2S4O.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GUVDU3H5COS2S4O Fasena Preserve - Pretty smaller trees/LUVDU3H5COS2S4O.xml
<game_object tsid="LUVDU3H5COS2S4O" ts="1364234173896" label="Fasena Preserve" class_tsid="town" hubid="120" moteid="9" letime="3g8emq20" rbtime="2soc5hs5" upd_gs="gs6" load_time="2013-03-25 10:45:57.000"> <object id="dynamic"> <bool id="jobs_is_locked">false</bool> <object id="loading_image"> <str id="url">str...
19,183
Common Lisp
.l
672
24.165179
205
0.621684
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
25fbdaed2a205440eb8d9005b6aad2ab66b3c788cda2c1ebdaff9d063442417c
20,853
[ -1 ]
20,854
GUVDU3H5COS2S4O.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GUVDU3H5COS2S4O Fasena Preserve - Pretty smaller trees/GUVDU3H5COS2S4O.xml
<game_object tsid="GUVDU3H5COS2S4O" ts="1335301822599" label="Fasena Preserve" class_tsid="" lastUpdateTime="1335301812328" upd_gs="gs11" load_time="2012-04-24 09:45:00.035" upd_time="2012-04-24 14:05:06.975"> <object id="dynamic"> <int id="l">-3000</int> <int id="r">3000</int> <int id="t">-1000</int> <int id=...
174,814
Common Lisp
.l
5,115
27.413099
209
0.559585
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
48698a7713dfbccadb016dcfbc6f0f34927fe737a629648e7862795d10986e9d
20,854
[ -1 ]
20,855
LA9T11KPMD82B1S.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GA9T11KPMD82B1S transition_01-mixed composition/LA9T11KPMD82B1S.xml
<game_object tsid="LA9T11KPMD82B1S" ts="1364236515871" label="Matsua Mossy" class_tsid="town" hubid="97" moteid="9" letime="3g8ft14q" rbtime="28dmpkb1" upd_gs="gs6" load_time="2013-03-25 11:24:45.000"> <object id="dynamic"> <object id="loading_image"> <str id="url">streets/2011-08-05/LA9T11KPMD82B1S_loading_13125...
46,436
Common Lisp
.l
1,356
29.669617
201
0.65854
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
1aab78ca4f7ca4cdd511dc37652d073319e8b6fd29708254336c8d5a8cafddc4
20,855
[ -1 ]
20,856
GA9T11KPMD82B1S.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GA9T11KPMD82B1S transition_01-mixed composition/GA9T11KPMD82B1S.xml
<game_object tsid="GA9T11KPMD82B1S" ts="1336606478260" label="transition_01" class_tsid="" lastUpdateTime="1336606468047" upd_gs="gs7" load_time="2012-05-09 16:21:43.541" upd_time="2012-05-09 16:34:33.835"> <object id="dynamic"> <int id="l">-3000</int> <int id="r">3000</int> <int id="t">-1000</int> <int id="b"...
109,213
Common Lisp
.l
3,319
26.128653
206
0.543817
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
a4154e98e035ff508544131a01807dc5556a5239d9cfc0cc7d7d5c842f9c41f8
20,856
[ -1 ]
20,857
GHV2547JP9B2AG0.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GHV2547JP9B2AG0 Baddam Haddam-double arch rocks 1038 elements/GHV2547JP9B2AG0.xml
<game_object tsid="GHV2547JP9B2AG0" ts="1331769527573" label="Baddam Haddam" class_tsid="" lastUpdateTime="1331769517537" upd_gs="gs10" load_time="2012-03-14 13:25:21.900" upd_time="2012-03-14 16:48:58.445"> <object id="dynamic"> <int id="l">-2500</int> <int id="r">2500</int> <int id="t">-1500</int> <int id="b...
373,305
Common Lisp
.l
11,155
26.664455
207
0.546
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
926194adaf3f38724b058aee3727997122c1dc29b5a4269eb78772eb66daaf2e
20,857
[ -1 ]
20,858
LHV2547JP9B2AG0.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GHV2547JP9B2AG0 Baddam Haddam-double arch rocks 1038 elements/LHV2547JP9B2AG0.xml
<game_object tsid="LHV2547JP9B2AG0" ts="1364242154479" label="Baddam Haddam" class_tsid="town" hubid="101" moteid="9" letime="3g8f1ff2" rbtime="2b9pj7ag" upd_gs="gs6" load_time="2013-03-25 12:59:02.000"> <object id="dynamic"> <object id="loading_image"> <str id="url">streets/2012-08-30/LHV2547JP9B2AG0_loading_134...
27,581
Common Lisp
.l
924
25.32684
203
0.624339
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
fc8102a99e795019d5a0dca5bbb08b41856bf5bcfdc7747d7f837a2fea01dc4d
20,858
[ -1 ]
20,859
LHV51JE5JC42VP2.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GHV51JE5JC42VP2 Arisi Amble-cavern dark color sat/LHV51JE5JC42VP2.xml
<game_object tsid="LHV51JE5JC42VP2" ts="1364244494903" label="Arisi Amble" class_tsid="town" hubid="85" moteid="9" letime="3g8fu27d" rbtime="25h9urst" upd_gs="gs6" load_time="2013-03-25 13:37:51.000"> <object id="dynamic"> <object id="loading_image"> <str id="url">streets/2011-07-21/LHV51JE5JC42VP2_loading_131127...
33,895
Common Lisp
.l
1,043
27.956855
200
0.64544
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
1442a20b1c700b8f61251a31cb3c1b1e045fe7827b7c61429023942c2a1606b8
20,859
[ -1 ]
20,860
GHV51JE5JC42VP2.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GHV51JE5JC42VP2 Arisi Amble-cavern dark color sat/GHV51JE5JC42VP2.xml
<game_object tsid="GHV51JE5JC42VP2" ts="1335984253046" label="Arisi Amble" class_tsid="" lastUpdateTime="1335984242970" upd_gs="gs10" load_time="2012-05-02 11:26:46.029" upd_time="2012-05-02 11:43:15.789"> <object id="dynamic"> <int id="l">-3000</int> <int id="r">3000</int> <int id="t">-1000</int> <int id="b">...
206,035
Common Lisp
.l
6,137
26.786541
205
0.550736
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
c0dcbc79228e7285602a5750328d7d19710fe42061ce00228dd3cd1fe28d1b5f
20,860
[ -1 ]
20,861
GCR111KI08O1HLB.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/abbey/GCR111KI08O1HLB.xml
<game_object tsid="GCR111KI08O1HLB" ts="1339298065829" label="Langden Abbey" class_tsid="" lastUpdateTime="1339298055659" upd_gs="gs10" load_time="2012-06-09 20:07:14.730" upd_time="2012-06-09 20:13:13.189"> <object id="dynamic"> <int id="l">-3000</int> <int id="r">3000</int> <int id="t">-1000</int> <int id="b...
189,826
Common Lisp
.l
5,485
27.805287
207
0.562951
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
e8bde1a331c1a2a0a9875dc7f43753b5130c82f2cf1f54eba8c240b05f04d34e
20,861
[ -1 ]
20,862
LCR111KI08O1HLB.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/abbey/LCR111KI08O1HLB.xml
<game_object tsid="LCR111KI08O1HLB" ts="1364245756617" label="Langden Abbey" class_tsid="town" hubid="58" moteid="9" letime="3i0a45g6" rbtime="25h9u6j4" upd_gs="gs6" load_time="2013-03-25 13:58:38.000"> <object id="dynamic"> <int id="upgrade_level">3</int> <str id="upgrade_template">LLI16PL3GFJ15VP</str> <str id...
65,948
Common Lisp
.l
1,815
31.746556
202
0.67321
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
d259304b671af1a846a2da10c3a27f2802b287288fa18e6c5458a72487c2acbe
20,862
[ -1 ]
20,863
LHV15C8IEQ322UG.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GHV15C8IEQ322UG Firabiz Flaunts-vertical climbing rock/LHV15C8IEQ322UG.xml
<game_object tsid="LHV15C8IEQ322UG" ts="1364236154151" label="Firabiz Flaunts" class_tsid="town" hubid="85" moteid="9" letime="3g8et8k9" rbtime="25h9v8dn" upd_gs="gs6" load_time="2013-03-25 11:19:00.000"> <object id="dynamic"> <object id="loading_image"> <str id="url">streets/2011-11-09/LHV15C8IEQ322UG_loading_13...
69,316
Common Lisp
.l
1,916
31.51096
204
0.670994
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
cd6691e721da06892536a77bee84a6b61d7b86608e8d6009f7e71b73b8847d25
20,863
[ -1 ]
20,864
GHV15C8IEQ322UG.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GHV15C8IEQ322UG Firabiz Flaunts-vertical climbing rock/GHV15C8IEQ322UG.xml
<game_object tsid="GHV15C8IEQ322UG" ts="1339085765397" label="Firabiz Flaunts" class_tsid="" lastUpdateTime="1339085745060" upd_gs="gs12" load_time="2012-06-07 09:15:44.893" upd_time="2012-06-07 09:15:55.103"> <object id="dynamic"> <int id="l">-700</int> <int id="r">700</int> <int id="t">-2400</int> <int id="b...
198,756
Common Lisp
.l
5,928
26.71778
209
0.548572
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
35bd8565548f2f334ede4cc961ffc23a7b826a476155201873d1f93b80ed6177
20,864
[ -1 ]
20,865
LA5VDIGU3G525F9.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GA5VDIGU3G525F9 Boonbi Books-multi level vertical cave/LA5VDIGU3G525F9.xml
<game_object tsid="LA5VDIGU3G525F9" ts="1364231110617" label="Boonbi Books" class_tsid="town" hubid="89" moteid="9" letime="3g8ejpg8" rbtime="25ire61p" upd_gs="gs6" load_time="2013-03-25 09:54:48.000"> <object id="dynamic"> <object id="loading_image"> <str id="url">streets/2011-11-09/LA5VDIGU3G525F9_loading_13208...
44,790
Common Lisp
.l
1,348
28.640208
201
0.652594
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
557a3a5cfa86bd5c189f168931c16c95f49482feda723ac579bd0a9406bf802e
20,865
[ -1 ]
20,866
GA5VDIGU3G525F9.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GA5VDIGU3G525F9 Boonbi Books-multi level vertical cave/GA5VDIGU3G525F9.xml
<game_object tsid="GA5VDIGU3G525F9" ts="1336603261247" label="Boonbi Books" class_tsid="" lastUpdateTime="1336603251000" upd_gs="gs10" load_time="2012-05-09 15:29:15.322" upd_time="2012-05-09 15:40:42.843"> <object id="dynamic"> <int id="l">-750</int> <int id="r">750</int> <int id="t">-2000</int> <int id="b">0...
109,225
Common Lisp
.l
3,225
27.091783
206
0.557142
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
e5792db502b6ff72231bb73993c39453fa1b9ea7470becbd153695c54b0f9a82
20,866
[ -1 ]
20,867
GA9NRNJSB792OG4.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GA9NRNJSB792OG4 Akaki Cape-shows depth/GA9NRNJSB792OG4.xml
<game_object tsid="GA9NRNJSB792OG4" ts="1336604186268" label="Akaki Cape" class_tsid="" lastUpdateTime="1336604176200" upd_gs="gs7" load_time="2012-05-09 15:54:38.845" upd_time="2012-05-09 15:56:21.658"> <object id="dynamic"> <int id="l">-3000</int> <int id="r">3000</int> <int id="t">-1000</int> <int id="b">0<...
165,015
Common Lisp
.l
4,920
26.755691
203
0.550036
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
3aa9f3bd950cf0338f9abed17d0c5ebf56e207f4ef20425296cb25f220003e32
20,867
[ -1 ]
20,868
LA9NRNJSB792OG4.xml
ahungry_sdl-blub/assets/bg/glitch-sampler/GA9NRNJSB792OG4 Akaki Cape-shows depth/LA9NRNJSB792OG4.xml
<game_object tsid="LA9NRNJSB792OG4" ts="1364227030531" label="Akaki Cape" class_tsid="town" hubid="98" moteid="9" letime="3gc0tjtd" rbtime="297bsjog" upd_gs="gs6" load_time="2013-03-25 08:37:21.000"> <object id="dynamic"> <object id="loading_image"> <str id="url">streets/2011-08-15/LA9NRNJSB792OG4_loading_1313432...
45,570
Common Lisp
.l
1,369
28.669102
199
0.652678
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
05605e61199ee8d8ee4a6bced2c08a00ef50d20006df1fb9f6630fd2ecd0f95c
20,868
[ -1 ]
20,869
kenpixel_high_square.ttf
ahungry_sdl-blub/assets/fonts/kenpixel_high_square.ttf
 Ä OS/2ñ¢`cmapù|ɨ\glyf*;A]êK¨head_ˇê6hhea˛}@$hmtx’dPlocaõ∏^<Tmaxpˇ’S¥ nameœ°âQ‘ 9postˇ˝p 8$ ~ˇxû   " & : ¨!"˚ˇˇ °xû   " & 9 ¨!"˚ˇˇˇ„ˇ¡ˇI‚$‡Ø‡¨‡´‡™‡ß‡ï‡$flØ—’...
24,976
Common Lisp
.l
14
1,782.642857
9,336
0.134599
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
d38baef4a03c7f82c00f25f41034a0a03c13b189d0409d5183418b5dbc3a175e
20,869
[ -1 ]
20,870
kenpixel_mini.ttf
ahungry_sdl-blub/assets/fonts/kenpixel_mini.ttf
 А OS/2ЦVм`cmapЭ|Гм\glyf·7Ъ╘,Rшhead_ Р6hhea■№@$hmtxRА ЯdPlocaЮgcTmaxp ╒S┤ nameV╬*╧╘╒post ¤ 8$ ~ xЮ   " & : м!"√   бxЮ   " & 9 м!"√   у ┴ Iт$рпрмрлркрзрХр$▀п╤╒...
26,216
Common Lisp
.l
13
2,015.615385
10,544
0.161388
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
c63e735b208a5efdd2e9fa75de4970b5c6e4f8eb84742804074d3017d8bb64c1
20,870
[ -1 ]
20,871
kenpixel_mini_square.ttf
ahungry_sdl-blub/assets/fonts/kenpixel_mini_square.ttf
 А OS/2ЦV`cmapЭ|Гм\glyfЁ▀ШRРG╝head_ Р6hhea■№@$hmtxS ЯdPlocao╚ZLTmaxp ╒S┤ name▄зЪ5╘ 9post ¤p 8$ ~ xЮ   " & : м!"√   бxЮ   " & 9 м!"√   у ┴ Iт$рпрмрлркрзрХр$▀п╤╒...
23,968
Common Lisp
.l
16
1,496.6875
8,988
0.172212
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
4cc9301ea7d22059891549cdfadcf61db5aeee3b5541b9e9c44cd7cbfb7332f5
20,871
[ -1 ]
20,872
kenpixel_high.ttf
ahungry_sdl-blub/assets/fonts/kenpixel_high.ttf
 А OS/2Цвм`cmapЭ|Гм\glyf.├T╙,YDhead_ Р6hhea■}@$hmtx╒dPlocaюVipTmaxp ╒[┤ nameV╬*╧╘╒post ¤ 8$ ~ xЮ   " & : м!"√   бxЮ   " & 9 м!"√   у ┴ Iт$рпрмрлркрзрХр$▀п╤╒...
27,844
Common Lisp
.l
10
2,783.5
10,944
0.069229
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
16dfc99c0005e2d1f47620d15367c09964d45747bbf6332968778facb39f2558
20,872
[ -1 ]
20,873
kenpixel.ttf
ahungry_sdl-blub/assets/fonts/kenpixel.ttf
 А OS/2Ц▀ ╨`cmap[е^мЇglyf/э"р P7head_ Ра6hheaА¤¤╪$hmtxH5№(loca║Dh,maxp ЛЩ$ nameаЎ√╠DКpost ¤ 0 Дp~╕▄Ю    & :   ╖└Ю    & 9   у л дсурnрkрiрaрOЛ...
18,068
Common Lisp
.l
9
2,006.666667
14,760
0.167497
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
34afaaaf694b351bab04b20cf105f8c07f37ac1c7758558bd06a63e805da37bf
20,873
[ -1 ]
20,874
kenpixel_blocks.ttf
ahungry_sdl-blub/assets/fonts/kenpixel_blocks.ttf
 А OS/2Цў╚`cmapЭ|Гм\glyfБj▓Hcаhead_ Р6hhea■√@$hmtxМАёdPloca$КsшTmaxp ╒c┤ name-хб╘єpost ¤( 8$ ~ xЮ   " & : м!"√   бxЮ   " & 9 м!"√   у ┴ Iт$рпрмрлркрзрХр$▀п╤╒...
30,524
Common Lisp
.l
12
2,542.75
18,836
0.176122
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
cf7ecd48200f026d0a49c47423051805dd8f48171ec8fe3fb5f3459e93de595c
20,874
[ -1 ]
20,875
kenpixel_future.ttf
ahungry_sdl-blub/assets/fonts/kenpixel_future.ttf
 А OS/2Ц╧╚`cmapЭ|Гм\glyfъБ╓HWXhead_ Р6hhea■№@$hmtxбА▄dPloca├ЭgаTmaxp ╒S┤ name-хЭ╘єpost ¤( 8$ ~ xЮ   " & : м!"√   бxЮ   " & 9 м!"√   у ┴ Iт$рпрмрлркрзрХр$▀п╤╒...
27,380
Common Lisp
.l
13
2,105.230769
11,096
0.16501
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
6f42ce318a4b01b269b3c9f66b5419ffe1babba3af0d57e9f94a576586ca6357
20,875
[ -1 ]
20,876
kenpixel_square.ttf
ahungry_sdl-blub/assets/fonts/kenpixel_square.ttf
 А OS/2Ц▀И`cmapЭ|Гм\glyfayШ═L head_ Р6hhea■√@$hmtx{АБdPlocaШн^(Tmaxp ╒S┤ name▒║╙q╘▓post ¤ш 8$ ~ xЮ   " & : м!"√   бxЮ   " & 9 м!"√   у ┴ Iт$рпрмрлркрзрХр$▀п╤╒...
24,956
Common Lisp
.l
15
1,662.266667
9,560
0.167669
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
35e0e53ae9fb5def51ad2ad214e0aec846a5cfb128a7ba53325e21cc567e6b98
20,876
[ -1 ]
20,877
kenpixel_future_square.ttf
ahungry_sdl-blub/assets/fonts/kenpixel_future_square.ttf
 А OS/2Ц╧D`cmapЭ|Гм\glyfъ╔╥∙─Jиhead_ Р6hhea■№@$hmtxбА▄dPlocaС]lTmaxp ╒S┤ name∙╫▐B╘ opost ¤д 8$ ~ xЮ   " & : м!"√   бxЮ   " & 9 м!"√   у ┴ Iт$рпрмрлркрзрХр$▀п╤╒...
24,768
Common Lisp
.l
16
1,546.6875
9,392
0.176423
ahungry/sdl-blub
2
1
0
AGPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
9b7f000f1baf29365b35aa32e601061a3271c71349117f8d53224674de9abc68
20,877
[ -1 ]
20,892
brain-sdf.lisp
vlad-km_brain/brain-sdf.lisp
;;; -*- mode:lisp; coding:utf-8 -*- ;;; This file is part of the BRAIN package ;;; Lisp wrap for brain.js library ;;; Copyright © 2017 Vladimir Mezentsev (lores:defsys :brain :path "git/brain" :components ((:file "brain-pkg") (:file "preface") (:file "wrap"))) ;;; EOF
316
Common Lisp
.lisp
10
26
42
0.586093
vlad-km/brain
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
ead1c80f3de481c06637cb26b15c85ccb64bb9cc7ef00548167fec75ce546f3a
20,892
[ -1 ]
20,893
wrap.lisp
vlad-km_brain/wrap.lisp
;;; -*- mode:lisp; coding:utf-8 -*- ;;; This file is part of the BRAIN package ;;; Lisp wrap for brain.js library ;;; Copyright © 2017 Vladimir Mezentsev (in-package :brain) ;;; make neural net (export '(make-neural-net)) (defun make-neural-net (&optional nno) (if nno (make-new #j:brain:NeuralNetwork ...
3,853
Common Lisp
.lisp
106
30.971698
92
0.575652
vlad-km/brain
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
fca0fbc3df7f6ae5bb88489fa891968a5710b1cb8e9d59283b8995f4ac22311c
20,893
[ -1 ]
20,894
brain-pkg.lisp
vlad-km_brain/brain-pkg.lisp
;;; -*- mode:lisp; coding:utf-8 -*- ;;; Package BRAIN - lisp wrapper for brain.js library ;;; It is intended for use in the Moren environment. ;;; Copyright © 2017 Vladimir Mezentsev ;;; ;;; BRAIN is free software: you can redistribute it and/or modify it under ;;; the terms of the GNU General Public License as publ...
1,208
Common Lisp
.lisp
34
33.470588
74
0.707045
vlad-km/brain
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
139a35e976a64e610c871697c1f3ab58d3e5a7706a08769b72330da6fbc1a888
20,894
[ -1 ]
20,895
preface.lisp
vlad-km_brain/preface.lisp
;;; -*- mode:lisp; coding:utf-8 -*- ;;; This file is part of the BRAIN package ;;; Lisp wrap for brain.js library ;;; Copyright © 2017 Vladimir Mezentsev (in-package :brain) (unless #j:Brain_loaded_0 (setf #j:Brain_loaded_0 (require "./dist/brainjs"))) (in-package :cl-user) ;;; EOF
293
Common Lisp
.lisp
9
30.555556
56
0.684588
vlad-km/brain
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
34070281510f2cd8c2353c291e4e42a603a76132bc1e6143dcad20e27da6ac40
20,895
[ -1 ]
20,915
asn1-proto.lisp
thinkum_commonide/src/proto/eow/asn1-proto.lisp
;; asn1-proto.lisp - Generalized prototyping, Eval-over-Wire with ASN.1 schema ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2019 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of ...
9,755
Common Lisp
.lisp
242
34.471074
80
0.634569
thinkum/commonide
2
0
0
EPL-1.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
11b133e39a5a8a9fa09ebb21d45c2713ff93408fe44785bac41e6e2defbd2ee3
20,915
[ -1 ]
20,917
CommonIDE.glade
thinkum_commonide/CommonIDE.glade
<?xml version="1.0" encoding="UTF-8"?> <!-- Generated with glade 3.22.1 --> <interface> <object class="GtkListStore" id="_cmd_completion_liststore"> <columns> <!-- column-name cmd_completion_gobject --> <column type="GObject"/> </columns> </object> <object class="GtkEntryCompletion" id="_cmd_c...
94,867
Common Lisp
.l
1,905
30.8021
123
0.480659
thinkum/commonide
2
0
0
EPL-1.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
20b2637cc27bce15952ca480b5cd4763614fc7a73b41646cfc7588f3c6b8de84
20,917
[ -1 ]
20,919
bsd-gnome-reference_mk.log
thinkum_commonide/doc/misc/bsd-gnome-reference_mk.log
Script started on Fri Jun 14 15:47:00 2019 Command: bash -c uname -a; pwd; date; find /usr/ports -type f -mindepth 3 -maxdepth 3 ! -path "/usr/ports/Mk/*" \( -name Makefile -o -name "*.mk" \) ! -name bsd.gnome-reference.mk -print0 | xargs -0 grep bsd.gnome-reference.mk FreeBSD riparian.cloud.thinkum.space 11.2-RELEASE-...
3,871
Common Lisp
.l
33
115.393939
236
0.757623
thinkum/commonide
2
0
0
EPL-1.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
9dda2005af74661a0b964f9e86c8a05dad01943c84e9854375f6cd17145a3637
20,919
[ -1 ]
20,934
mmmult9.lisp
i-kiwamu_cl3a/src/mmmult9.lisp
(in-package :cl-user) (defpackage cl3a.mmmult9 (:use :cl :sb-ext :sb-c :alexandria :cl3a.utilities :cl3a.mmmult9_vop) (:export :dm*m)) (in-package :cl3a.mmmult9) (declaim (ftype (function (fixnum (simple-array double-float (* *)) fixnum (simple-array double-fl...
8,544
Common Lisp
.lisp
201
30.79602
98
0.483976
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
bfa4b84e50c43ffd08cbcf264edb272c5f2bbf5027919a53ccfa24c2cc79e1cb
20,934
[ -1 ]
20,935
mmmult3.lisp
i-kiwamu_cl3a/src/mmmult3.lisp
(in-package :cl-user) (defpackage cl3a.mmmult3 (:use :cl :alexandria :cl3a.utilities) (:export :dm*m :lm*m :tile-size)) (in-package :cl3a.mmmult3) (declaim (ftype (function (symbol fixnum fixnum) fixnum) tile-size)) (defun tile-size (val-type n cache-size) "calculate the optimum tile size for matrix multiplicat...
9,691
Common Lisp
.lisp
205
38.04878
115
0.532108
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
73028f3d8d292a561cb2b8221e9b799caf1b26382008272f5dfe5d986c329470
20,935
[ -1 ]
20,936
mmmult7_vop.lisp
i-kiwamu_cl3a/src/mmmult7_vop.lisp
(in-package :cl-user) (defpackage cl3a.mmmult7vop (:use :cl :sb-ext :sb-c :sb-vm) (:export :f2+ :f2* :simd-sum)) (in-package :cl3a.mmmult7vop) (defknown (f2+ f2*) ((sb-kernel:simd-pack double-float) (sb-kernel:simd-pack double-float)) (sb-kernel:simd-pack double-float) (movable flusha...
4,664
Common Lisp
.lisp
125
33.152
74
0.557645
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
2616658b530d401bdd76f9a473d45977c5e402f0f2446f5665a93cbedf3bb2e1
20,936
[ -1 ]
20,937
mmmult4.lisp
i-kiwamu_cl3a/src/mmmult4.lisp
(in-package :cl-user) (defpackage cl3a.mmmult4 (:use :cl :alexandria :cl3a.utilities) (:export :dm*m :lm*m)) (in-package :cl3a.mmmult4) (declaim (ftype (function (integer &key (:l1 boolean)) integer) tile-size)) (defun tile-size (n &key l1) "See Lam et al. 1991 The cache performance and optimiza...
5,692
Common Lisp
.lisp
127
31.826772
86
0.468311
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
5f5a1ef719b22a190ee43e6c3bbac24092a31c33027bdf0e5fde7ca4facfcd59
20,937
[ -1 ]
20,938
mmmult7.lisp
i-kiwamu_cl3a/src/mmmult7.lisp
(in-package :cl-user) (defpackage cl3a.mmmult7 (:use :cl :sb-ext :sb-c :alexandria :cl3a.utilities :cl3a.mmmult7vop) (:export :dm*m :gemm1 :gemm3)) (in-package :cl3a.mmmult7) (declaim (ftype (function ((simple-array double-float (*)) fixnum) (simd-pack double-f...
6,455
Common Lisp
.lisp
139
33.597122
98
0.487704
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
3801730c9595195ce08430bc3f6591954ba7d15c5912ea9338edabb56f1c5210
20,938
[ -1 ]
20,939
mvmult.lisp
i-kiwamu_cl3a/src/mvmult.lisp
(in-package :cl-user) (defpackage cl3a.mvmult (:use :cl :sb-ext :sb-c :alexandria :cl3a.utilities :cl3a.utilities_vop :cl3a.mvmult_vop) (:export :sm*v :dm*v)) (in-package :cl3a.mvmult) (declaim (ftype (function ((simple-array double-float (* *)) (simple-array double-float (*)) ...
2,450
Common Lisp
.lisp
57
31.508772
91
0.490582
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
ab1e842ccd32f41392f8d591fd5da16cb932fd1f70f867dd91033410c6fdfd5e
20,939
[ -1 ]
20,940
transpose.lisp
i-kiwamu_cl3a/src/transpose.lisp
(in-package :cl-user) (defpackage cl3a.transpose (:use :cl :alexandria) (:export :tpose/double-float :tpose/long-float)) (in-package :cl3a.transpose) (declaim (ftype (function ((simple-array double-float (* *))) (simple-array double-float (* *))) tpose/double-float)) (def...
3,942
Common Lisp
.lisp
99
25.808081
69
0.444647
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
e65f8b2660ba0ac10c67aef7c5affcd93ccedcfbdd6869ce573c30b57afb0233
20,940
[ -1 ]
20,941
mmmult_Goto2_vop.lisp
i-kiwamu_cl3a/src/mmmult_Goto2_vop.lisp
(in-package :cl-user) (defpackage cl3a.mmmult_Goto2_vop (:use :cl :sb-ext :sb-c :sb-vm) (:export :dgebp-reg-ker)) (in-package :cl3a.mmmult_Goto2_vop) (defknown dgebp-reg-ker (fixnum (simple-array double-float (* *)) fixnum (simple-array double-float (* *)) fixnum) (sb-kernel:simd-pack double-float) ...
2,285
Common Lisp
.lisp
63
31.333333
70
0.641211
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
54a8220e54e9bf80c826cc3e85002efb57d25820e86cd9c799839e3a99d28175
20,941
[ -1 ]
20,942
mmmult8_vop.lisp
i-kiwamu_cl3a/src/mmmult8_vop.lisp
(in-package :cl-user) (defpackage cl3a.mmmult8_vop (:use :cl :sb-ext :sb-c :sb-vm) (:export :dgebp-reg-ker)) (in-package :cl3a.mmmult8_vop) (defknown dgebp-reg-ker (fixnum (simple-array double-float (*)) fixnum (simple-array double-float (*)) fixnum) (simd-pack-256 double-float) (movable flu...
2,337
Common Lisp
.lisp
65
30.861538
70
0.640742
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
29897e9493dfd5ce7cfff02e53b66b961157104574c33d70e454ad8935605e33
20,942
[ -1 ]
20,943
mmmult_Goto2.lisp
i-kiwamu_cl3a/src/mmmult_Goto2.lisp
(in-package :cl-user) (defpackage cl3a.mmmult_Goto2 (:use :cl :alexandria :cl3a.utilities :cl3a.mmmult_Goto2_vop) (:export :dm*m)) (in-package :cl3a.mmmult_Goto2) (declaim (ftype (function (fixnum fixnum fixnum fixnum (simple-array double-float (* *)) (simple-...
4,342
Common Lisp
.lisp
102
31.509804
65
0.513469
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
0ac0fbacac33cd71d97cb4143736bc821ec00d368c074ec8f10b18000a701476
20,943
[ -1 ]
20,944
norm.lisp
i-kiwamu_cl3a/src/norm.lisp
(in-package :cl-user) (defpackage cl3a.norm (:use :cl :cl3a.typedef :cl3a.dotprod) (:export :snorm :dnorm)) (in-package :cl3a.norm) (declaim (ftype (function ((simple-array single-float (*))) single-float) snorm)) (defun snorm (va) "Euclidean norm of vector" (declare ...
758
Common Lisp
.lisp
23
26.73913
59
0.596443
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
4ecc221085886bf7636a456bbdbf7cd24e0fccd10e58a7a5e0635c6f7865037a
20,944
[ -1 ]
20,945
mmmult5.lisp
i-kiwamu_cl3a/src/mmmult5.lisp
(in-package :cl-user) (defpackage cl3a.mmmult5 (:use :cl :alexandria :cl3a.utilities) (:export :dm*m :lm*m)) (in-package :cl3a.mmmult5) (declaim (ftype (function (integer &key (:l1 boolean)) integer) tile-size)) (defun tile-size (n &key l1) "See Lam et al. 1991 The cache performance and optimiza...
6,168
Common Lisp
.lisp
138
31.644928
85
0.460631
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
c647a7b9a809b23fe450d6921b7a7cc2e86534c2ef0947e3a1c6613e9ea26439
20,945
[ -1 ]
20,946
mmmult10.lisp
i-kiwamu_cl3a/src/mmmult10.lisp
(in-package :cl-user) (defpackage cl3a.mmmult10 (:use :cl :sb-ext :sb-c :alexandria :cl3a.utilities_vop :cl3a.utilities :cl3a.mmmult10_vop) (:export :dm*m)) (in-package :cl3a.mmmult10) (eval-when (:compile-toplevel :load-toplevel :execute) (defconstant +mc+ (the fixnum 512)) (defconstant +pc+ (the fixnum 256))...
13,896
Common Lisp
.lisp
331
32.081571
103
0.501846
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
4c60220bbcb6d26f75ecdf549f153471b61904c6437442a95e608901c80a852a
20,946
[ -1 ]
20,947
utilities.lisp
i-kiwamu_cl3a/src/utilities.lisp
(in-package :cl-user) (defpackage cl3a.utilities (:use :cl :alexandria :cl3a.utilities_vop) (:export :int3 :make-int3 :int3-i :int3-k :int3-j :int3-p :setf-int3-i :setf-int3-k :setf-int3-j :+cache-line+ :+L1-size+ :+L2-size+ :+L3-size+ :+asso...
4,986
Common Lisp
.lisp
128
29.539063
101
0.545023
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
78a033de871e80da80ad5b4995570d19758dc085a2eff54198320001c8e7cbfc
20,947
[ -1 ]
20,948
mmmult1.lisp
i-kiwamu_cl3a/src/mmmult1.lisp
(in-package :cl-user) (defpackage cl3a.mmmult (:use :cl :alexandria :cl3a.utilities) (:export :dm*m :lm*m)) (in-package :cl3a.mmmult) (declaim (ftype (function (integer &key (:l1 boolean)) integer) tile-size)) (defun tile-size (n &key l1) "See Lam et al. 1991 The cache performance and optimizati...
4,583
Common Lisp
.lisp
102
31.794118
88
0.46689
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
bfebec4b178bf2ae412729009fea4b0137bed63ce6fdef649d139468e5e58bf6
20,948
[ -1 ]
20,949
add_vector.lisp
i-kiwamu_cl3a/src/add_vector.lisp
(in-package :cl-user) (defpackage cl3a.add-vector (:use :cl :alexandria :cl3a.utilities :cl3a.utilities_vop) (:export :dv+v)) (in-package :cl3a.add-vector) (declaim (ftype (function (double-float (simple-array double-float (*)) double-float (simple-array double-float (*)) ...
2,228
Common Lisp
.lisp
59
26.830508
71
0.466051
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
27c9df6d1384683e4db67d6a6e8b4675344fafbd1c45282088e51e27b424b52f
20,949
[ -1 ]
20,950
cl3a.lisp
i-kiwamu_cl3a/src/cl3a.lisp
(in-package :cl-user) (defpackage :cl3a (:use :cl :cl3a.typedef :cl3a.dotprod :cl3a.norm :cl3a.add-vector :cl3a.rotate :cl3a.mvmult :cl3a.mmmult10) (:export :vec :make-vec-init :convert-simple-array-to-vec :eltype-of :vec-length :vecref :mat :make-mat-i...
603
Common Lisp
.lisp
20
20.85
67
0.533448
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
f678fbaabb70000d1da3f4b702247cc2597676201ed7922de12b40f35edafe4e
20,950
[ -1 ]
20,951
mmmult9_vop.lisp
i-kiwamu_cl3a/src/mmmult9_vop.lisp
(in-package :cl-user) (defpackage cl3a.mmmult9_vop (:use :cl :sb-ext :sb-c :sb-vm) (:export :dgebp-reg-ker :dgebp-reg-ker4)) (in-package :cl3a.mmmult9_vop) (defknown dgebp-reg-ker (fixnum (simple-array double-float (*)) fixnum (simple-array double-float (*)) fixnum) (simd-pack-256 double-float) ...
6,749
Common Lisp
.lisp
179
32.446927
71
0.642977
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
03190bbe34b4601b071c5ce995ab86cdd681c672897b779faccd2fa835249542
20,951
[ -1 ]
20,952
mmmult2.lisp
i-kiwamu_cl3a/src/mmmult2.lisp
(in-package :cl-user) (defpackage cl3a.mmmult2 (:use :cl :alexandria :cl3a.utilities) (:export :dm*m :lm*m)) (in-package :cl3a.mmmult2) (eval-when (:compile-toplevel :load-toplevel :execute) (defparameter +mc+ (the fixnum 1024)) (defparameter +kc+ (the fixnum 32)) (defparameter +mr+ (the fixnum 4)) (defpa...
5,546
Common Lisp
.lisp
118
35.881356
94
0.504433
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
6e2360411fb648142f1315a993fc0b1e03a7e10a750a9c5212dd78da292e50e0
20,952
[ -1 ]
20,953
dotprod_vop.lisp
i-kiwamu_cl3a/src/dotprod_vop.lisp
(in-package :cl-user) (defpackage cl3a.dotprod_vop (:use :cl :sb-ext :sb-c :sb-vm) (:export :dpi8-ps :dpi8-avx2-ps :dpi8-pd :dpi8-avx2-pd :dp16-avx2-pd)) (in-package :cl3a.dotprod_vop) (defknown dpi8-ps ((simple-array single-float (*)) (simple-array single-float (*)) fixnum) ...
9,297
Common Lisp
.lisp
237
31.265823
86
0.58927
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
6fec27613b6f949cd0301fe6962c67d25dd0ca3e1b52172a19f7d8fba00557c4
20,953
[ -1 ]
20,954
rotate.lisp
i-kiwamu_cl3a/src/rotate.lisp
(in-package :cl-user) (defpackage cl3a.rotate (:use :cl :alexandria :cl3a.utilities :cl3a.utilities_vop) (:export :srotate :drotate)) (in-package :cl3a.rotate) (declaim (ftype (function ((simple-array double-float (*)) (simple-array double-float (*)) (double-f...
3,266
Common Lisp
.lisp
85
26.011765
62
0.444759
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
8a872940087193e74c6631051dbc39860fe76159512414b32ba14880f1adcff6
20,954
[ -1 ]
20,955
mmmult10_vop.lisp
i-kiwamu_cl3a/src/mmmult10_vop.lisp
(in-package :cl-user) (defpackage cl3a.mmmult10_vop (:use :cl :sb-ext :sb-c :sb-vm) (:export :incf12-Caux-ker :dgebp-1-nr-ker :dgebp-mr-nr-ker)) (in-package :cl3a.mmmult10_vop) (defknown incf12-Caux-ker ((simple-array double-float (*)) fixnum (simple-array double-float (*)) fixnum) (simple-array doub...
12,791
Common Lisp
.lisp
352
29.809659
72
0.615694
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
55dc455f0bc43d8480bd1cc79c8523d3456b5b61906bf2f43d2e1aba8a21a8db
20,955
[ -1 ]
20,956
mmmult6.lisp
i-kiwamu_cl3a/src/mmmult6.lisp
(in-package :cl-user) (defpackage cl3a.mmmult6 (:use :cl :alexandria :cl3a.utilities) (:export :dm*m :tile-size)) (in-package :cl3a.mmmult6) (declaim (ftype (function (integer &key (:l1 boolean)) integer) tile-size)) (defun tile-size (n &key l1) "See Lam et al. 1991 The cache performance and opt...
4,748
Common Lisp
.lisp
102
33.352941
88
0.47466
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
0665184b9789509b0978b0422de479ea5aaefc5c459557c66b071adb22202c48
20,956
[ -1 ]
20,957
dotprod.lisp
i-kiwamu_cl3a/src/dotprod.lisp
(in-package :cl-user) (defpackage cl3a.dotprod (:use :cl :sb-ext :sb-c :alexandria :cl3a.typedef :cl3a.utilities :cl3a.utilities_vop :cl3a.dotprod_vop) (:export :sv*v :dv*v)) (in-package :cl3a.dotprod) (declaim (ftype (function ((vec double-float) (vec double-float)) ...
2,275
Common Lisp
.lisp
57
30.385965
76
0.535682
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
adf8102de94989e99ece28a9c73715174a416d84e2ae4fee0bc19d4fc79a88e4
20,957
[ -1 ]
20,958
utilities_vop.lisp
i-kiwamu_cl3a/src/utilities_vop.lisp
(in-package :cl-user) (defpackage cl3a.utilities_vop (:use :cl :sb-ext :sb-c :sb-vm) (:export :aref8-ps :aref4-pd :aset8-ps :aset4-pd :f8*-ps :f8*-ss :f4*-pd :f4*-sd :f8+-ps :f8+-ss :f4+-pd :f4+-sd :setzero8-ps :setzero4-pd :prefetcht0 ...
14,003
Common Lisp
.lisp
405
28.562963
88
0.618031
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
2040d3b2a0f828fb10bb81188de7568943e12b4650f72646d379a93cdfe8f96c
20,958
[ -1 ]
20,959
mmmult8.lisp
i-kiwamu_cl3a/src/mmmult8.lisp
(in-package :cl-user) (defpackage cl3a.mmmult8 (:use :cl :sb-ext :sb-c :alexandria :cl3a.utilities :cl3a.mmmult8_vop) (:export :dm*m)) (in-package :cl3a.mmmult8) (declaim (ftype (function (integer (simple-array double-float (* *)) integer (simple-array double-...
8,165
Common Lisp
.lisp
195
30.641026
72
0.495476
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
96c2efa7552c23204d54aeb635c5e9b187d7ab4e391407a166e6129ef4cc3972
20,959
[ -1 ]
20,960
mmmult_Goto.lisp
i-kiwamu_cl3a/src/mmmult_Goto.lisp
(in-package :cl-user) (defpackage cl3a.mmmult_Goto (:use :cl :alexandria :cl3a.utilities) (:export :gemm1 :gemm3 :dm*m)) (in-package :cl3a.mmmult_Goto) (declaim (ftype (function ((simple-array double-float (*)) fixnum) (sb-kernel:simd-pack double-float)) ...
11,639
Common Lisp
.lisp
265
31.8
74
0.492291
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
0e32d51ebf32d42ca76013a271a21477efec5696033a2729c8f6e2dd1a760739
20,960
[ -1 ]
20,961
mvmult_vop.lisp
i-kiwamu_cl3a/src/mvmult_vop.lisp
(in-package :cl-user) (defpackage cl3a.mvmult_vop (:use :cl :sb-ext :sb-c :sb-vm) (:export :mvi2x4-pd :mvi2x8-pd)) (in-package :cl3a.mvmult_vop) (defknown mvi2x4-pd (fixnum fixnum fixnum (simple-array double-float (*)) (simple-array double-float (*))) (sb-kernel:simd-pack double-float) (mova...
6,316
Common Lisp
.lisp
150
36.08
124
0.581248
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
c97f2c0c1aefd0f591670279c98c42756b7a43523e0b8e2aaa6eed6205d30e3a
20,961
[ -1 ]
20,962
naive-funcs.lisp
i-kiwamu_cl3a/t/naive-funcs.lisp
(in-package :cl-user) (defpackage naive-funcs (:use :cl :cl3a) (:nicknames naive) (:export :dv*v-naive :sv*v-naive :dnorm-naive :dv+v-naive :drotate-naive :dm*v-naive :dm*m-naive)) (in-package #:naive-funcs) (declaim (ftype (function ((vec double...
4,044
Common Lisp
.lisp
102
29.333333
71
0.509929
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
f18946faa739fd348e2ce2799044ee61166e6ad7f22f2c9f9fd02979a771e5f1
20,962
[ -1 ]
20,963
cl3a-test.lisp
i-kiwamu_cl3a/t/cl3a-test.lisp
(in-package :cl-user) (defpackage cl3a-test (:use :cl :rove :cl3a :naive)) (in-package #:cl3a-test) (defun equal-vector (va vb) (let* ((na (length va)) (nb (length vb)) (n (min na nb)) (test (= na nb))) (declare (type integer na nb n) (type boolean test)) (when test...
6,600
Common Lisp
.lisp
174
29.166667
85
0.550874
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
e1e316f75d6162ea7bdcba0373ff529cb822deefdea91a61dab306fc5e0ebeb0
20,963
[ -1 ]
20,964
cl3a.asd
i-kiwamu_cl3a/cl3a.asd
(defsystem "cl3a" :description "Common Lisp Library of Linear Algebra" :version "0.4" :author "Kiwamu Ishikura" :license "GPL" :depends-on ("alexandria") :components ((:module "src" :components ((:file "cl3a" :depends-on ("typedef" "d...
2,400
Common Lisp
.asd
47
32.617021
94
0.447469
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
30a5d927a18897e904b99020ba0c0fdd2ffa11a7a81228b6ff4300afa35408fe
20,964
[ -1 ]
20,965
bench-cl3a.ros
i-kiwamu_cl3a/bench/mvmult/bench-cl3a.ros
#!/bin/sh #|-*- mode:lisp -*-|# #| exec ros -Q -- $0 "$@" |# #+sbcl (sb-posix:chdir "../../") #+ccl (ccl:cwd "../") (ql:quickload "cl3a" :silent t) #+sbcl (sb-posix:chdir "./bench/mvmult") #+ccl (ccl:cwd "./bench/mvmult") (defun run-bench (n m) (declare (type fixnum n m)) (let ((ma (make-array (list n n) :eleme...
1,084
Common Lisp
.cl
32
29.53125
70
0.586042
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
23f52bb6a383ec76b9721677906d092b0c6ff2475e9139e2e805beb4fc75e47d
20,965
[ -1 ]
20,966
bench-cl3a-512-1000.ros
i-kiwamu_cl3a/bench/mvmult/bench-cl3a-512-1000.ros
#!/bin/sh #|-*- mode:lisp -*-|# #| exec ros -Q -- $0 "$@" |# #+sbcl (sb-posix:chdir "../../") #+ccl (ccl:cwd "../") (ql:quickload "cl3a" :silent t) #+sbcl (sb-posix:chdir "./bench/mvmult") #+ccl (ccl:cwd "./bench/mvmult") (defun run-bench () (let ((ma (make-array (list 512 512) :element-type 'double-float)) ...
964
Common Lisp
.cl
28
30.178571
70
0.598925
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
9d1a5bdff47be55f4d6879f4c714f5c71f5181ec0b51e062c9b6c87a200b1753
20,966
[ -1 ]
20,967
bench-cl3a.ros
i-kiwamu_cl3a/bench/mmmult/bench-cl3a.ros
#!/bin/sh #|-*- mode:lisp -*-|# #| exec ros -Q -- $0 "$@" |# #+sbcl (sb-posix:chdir "../../") #+ccl (ccl:cwd "../") (ql:quickload "cl3a" :silent t) #+sbcl (sb-posix:chdir "./bench/mmmult") #+ccl (ccl:cwd "./bench/mmmult") (defun run-bench (n m) (declare (type fixnum n m)) (let ((ma (make-array (list n n) ...
1,126
Common Lisp
.cl
34
27.176471
70
0.550645
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
4554a40f4edd3fdf985786008ee6c4db3eee196aa5aea5dfeef82b6afaf70051
20,967
[ -1 ]
20,968
bench-cl3a.ros
i-kiwamu_cl3a/bench/dotprod/bench-cl3a.ros
#!/bin/sh #|-*- mode:lisp -*-|# #| exec ros -Q -- $0 "$@" |# #+sbcl (sb-posix:chdir "../../") #+ccl (ccl:cwd "../") (ql:quickload "cl3a" :silent t) #+sbcl (sb-posix:chdir "./bench/dotprod") #+ccl (ccl:cwd "./bench/dotprod") (defun run-bench (n m) (declare (type fixnum n m)) (let ((va (cl3a:make-vec-init n 'doub...
786
Common Lisp
.cl
25
27.96
51
0.590728
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
fecf71813f83c2854b9d0e03a3ca524194b897ff0c6e8669762a6e2f9e5811c6
20,968
[ -1 ]
20,970
qlfile.lock
i-kiwamu_cl3a/qlfile.lock
("quicklisp" . (:class qlot.source.ql:source-ql-all :initargs (:project-name "quicklisp" :%version :latest) :version "2018-04-30")) ("alexandria" . (:class qlot.source.ql:source-ql :initargs (:project-name "alexandria" :%version :latest) :version "ql-2019-01-07"))
275
Common Lisp
.l
8
32.125
58
0.700375
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
46fd5592aa554505c6783577d2f7a22cb2d9447e10909360137ce1a1e1b2f425
20,970
[ -1 ]
20,971
.travis.yml
i-kiwamu_cl3a/.travis.yml
language: common-lisp sudo: required env: global: - PATH=$HOME/.roswell/bin:$PATH - ROSWELL_INSTALL_DIR=$HOME/.roswell matrix: - LISP=sbcl-bin # - LISP=ccl-bin # - LISP=clisp # - LISP=abcl install: # Install Roswell - curl -L https://raw.githubusercontent.com/snmsts/roswell/release/scr...
445
Common Lisp
.l
20
19.05
99
0.693587
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
d827a82b2422f044f82a6bf0e888be5a5115197b85736245ae5f3b6c513a02e2
20,971
[ -1 ]
21,001
bench-blas.f03
i-kiwamu_cl3a/bench/mvmult/bench-blas.f03
program main implicit none integer :: n, m character(len=20) :: argv call openblas_set_num_threads(1) call get_command_argument(1, argv) read (argv, *) n call get_command_argument(2, argv) read (argv, *) m call perf(n, m) end program main subroutine perf(n, m) implicit none integer, parameter ::...
868
Common Lisp
.l
32
23.75
59
0.608434
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
f81931781cbba0f92f5a07e8e09393f7363aef1d97a3410168270bf0f0acc292
21,001
[ -1 ]
21,002
Makefile
i-kiwamu_cl3a/bench/mvmult/Makefile
CLTARGET = bench-cl3a FTARGET = bench-blas CPPTARGET = bench-eigen ROS = ros FC = gfortran BLASINC = /usr/local/opt/openblas/include BLASLIB = /usr/local/opt/openblas/lib FFLAGS = -O3 -fimplicit-none -fbounds-check -lopenblas -L$(BLASLIB) -I$(BLASINC) CPP = clang++ EIGENINC = /usr/local/include/eigen3/ CPPFLAGS = -O...
700
Common Lisp
.l
26
25.307692
80
0.697885
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
f4320f606314b9d0f840dddeccad8b98b7ccf2bdacaa4f34abd000856c1a887e
21,002
[ -1 ]
21,005
bench-blas.f03
i-kiwamu_cl3a/bench/mmmult/bench-blas.f03
program main implicit none integer :: n, m character(len=20) :: argv call openblas_set_num_threads(1) call get_command_argument(1, argv) read (argv, *) n call get_command_argument(2, argv) read (argv, *) m call perf(n, m) end program main subroutine perf(n, m) implicit none integer, parameter ::...
882
Common Lisp
.l
32
24.1875
67
0.603081
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
f76fb9f899d95459c8799ee9d3552da37e53460b75f06914fc9482169c314f5e
21,005
[ -1 ]
21,006
Makefile
i-kiwamu_cl3a/bench/mmmult/Makefile
CLTARGET = bench-cl3a FTARGET = bench-blas CPPTARGET = bench-eigen ROS = ros FC = gfortran BLASINC = /usr/local/opt/openblas/include BLASLIB = /usr/local/opt/openblas/lib FFLAGS = -O3 -fimplicit-none -fbounds-check -lopenblas -L$(BLASLIB) -I$(BLASINC) CPP = clang++ EIGENINC = /usr/local/Cellar/eigen/3.3.4/include/ei...
719
Common Lisp
.l
26
26.038462
80
0.698972
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
62c07b1a6869ca42a23d9b3040b3ae2acb727b8986c9dffbdddd855386cf1f0e
21,006
[ -1 ]
21,008
bench-blas.f03
i-kiwamu_cl3a/bench/dotprod/bench-blas.f03
program main implicit none integer :: n, m character(len=20) :: argv call openblas_set_num_threads(1) call get_command_argument(1, argv) read (argv, *) n call get_command_argument(2, argv) read (argv, *) m call perf(n, m) end program main subroutine perf(n, m) implicit none integer, parameter ::...
859
Common Lisp
.l
33
22.727273
56
0.614355
i-kiwamu/cl3a
2
0
0
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
35c3e083a4efe4c0b571e3069d7153389b74f0a5f6f3391a0fc46be5e002af2b
21,008
[ -1 ]
21,027
package.lisp
keithj_deoxybyte-unix/test/package.lisp
;;; ;;; Copyright (c) 2009-2013 Keith James. All rights reserved. ;;; ;;; This file is part of deoxybyte-unix. ;;; ;;; This program is free software: you can redistribute it and/or modify ;;; it under the terms of the GNU General Public License as published by ;;; the Free Software Foundation, either version 3 of the L...
1,059
Common Lisp
.lisp
24
42.666667
73
0.73501
keithj/deoxybyte-unix
2
0
1
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
db7951196dc4c345d4d137e6893e600da4d9c1af842fb70b11f7d40692191d2b
21,027
[ -1 ]
21,028
deoxybyte-unix-test.lisp
keithj_deoxybyte-unix/test/deoxybyte-unix-test.lisp
;;; ;;; Copyright (c) 2009-2013 Keith James. All rights reserved. ;;; ;;; This file is part of deoxybyte-unix. ;;; ;;; This program is free software: you can redistribute it and/or modify ;;; it under the terms of the GNU General Public License as published by ;;; the Free Software Foundation, either version 3 of the L...
5,486
Common Lisp
.lisp
129
34.426357
77
0.616738
keithj/deoxybyte-unix
2
0
1
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
70b2d5c1384983d2e465c5c66ceb4d1acfc63c594917df0e6b322def1e1926de
21,028
[ -1 ]
21,029
package.lisp
keithj_deoxybyte-unix/src/package.lisp
;;; ;;; Copyright (c) 2009-2013 Keith James. All rights reserved. ;;; ;;; This file is part of deoxybyte-unix. ;;; ;;; This program is free software: you can redistribute it and/or modify ;;; it under the terms of the GNU General Public License as published by ;;; the Free Software Foundation, either version 3 of the L...
2,747
Common Lisp
.lisp
91
27.10989
73
0.714717
keithj/deoxybyte-unix
2
0
1
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
8ddf115c1d0a939993e130605ca9282fb934ba31228ca866f44bda87cdf49c8c
21,029
[ -1 ]
21,030
memory-map.lisp
keithj_deoxybyte-unix/src/memory-map.lisp
;;; ;;; Copyright (c) 2009-2013 Keith James. All rights reserved. ;;; ;;; This file is part of deoxybyte-unix. ;;; ;;; This program is free software: you can redistribute it and/or modify ;;; it under the terms of the GNU General Public License as published by ;;; the Free Software Foundation, either version 3 of the L...
12,057
Common Lisp
.lisp
265
36.022642
80
0.614783
keithj/deoxybyte-unix
2
0
1
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
1b864692003c8f3651217b1ce064c24bb6a2e1e191996b1e9319f50047ba9bc8
21,030
[ -1 ]
21,031
ccl.lisp
keithj_deoxybyte-unix/src/ccl.lisp
;;; ;;; Copyright (c) 2013 Keith James. All rights reserved. ;;; ;;; This file is part of deoxybyte-unix. ;;; ;;; This program is free software: you can redistribute it and/or modify ;;; it under the terms of the GNU General Public License as published by ;;; the Free Software Foundation, either version 3 of the Licens...
1,304
Common Lisp
.lisp
29
41.655172
74
0.710692
keithj/deoxybyte-unix
2
0
1
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
d331180d8adf178d01f37c3c1ca1b70b41093024c1e0c16fe60f61564b8e3e8f
21,031
[ -1 ]
21,032
conditions.lisp
keithj_deoxybyte-unix/src/conditions.lisp
;;; ;;; Copyright (c) 2009-2013 Keith James. All rights reserved. ;;; ;;; This file is part of deoxybyte-unix. ;;; ;;; This program is free software: you can redistribute it and/or modify ;;; it under the terms of the GNU General Public License as published by ;;; the Free Software Foundation, either version 3 of the L...
1,743
Common Lisp
.lisp
38
41.052632
76
0.688014
keithj/deoxybyte-unix
2
0
1
GPL-3.0
9/19/2024, 11:28:00 AM (Europe/Amsterdam)
30c745d8890f9d6adaf5bdbfd7758639da5d276a1451ab0d0daa15aadd923a02
21,032
[ -1 ]