Skip to content

Commit b0d9c80

Browse files
committed
Relocated ArrayFireWrapper into test folder, under cpp
Put Lua tests in lua directory, likewise lib folder for Lua library parts Fixed up require() paths for new locations Fixed up include directories in ArrayFireWrapper, likewise Also now adding two parts to Lua path in ArrayFireWrapper Fixed dumb issue with elements() method Fixed some tests Removed commented-out stuff for some wrapper stuff (separate project)
1 parent bdaf733 commit b0d9c80

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+277
-461
lines changed

ArrayFireWrapper/ArrayFireWrapper.cpp

Lines changed: 0 additions & 381 deletions
This file was deleted.

scripts/lib/af_lib.lua renamed to lib/af_lib.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
--- Library entry point.
22

33
-- Modules --
4-
require("lib.impl.array")
4+
require("impl.array")
55

66
-- Exports --
77
local M = {}
@@ -26,7 +26,7 @@ for _, v in ipairs{
2626
"misc.program",
2727
"misc.imports"
2828
} do
29-
require("lib." .. v).Add(M)
29+
require(v).Add(M)
3030
end
3131

3232
-- Export the module.

0 commit comments

Comments
 (0)