Skip to content

Commit

Permalink
Relocated ArrayFireWrapper into test folder, under cpp
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
ggcrunchy committed Dec 22, 2015
1 parent bdaf733 commit b0d9c80
Show file tree
Hide file tree
Showing 86 changed files with 277 additions and 461 deletions.
381 changes: 0 additions & 381 deletions ArrayFireWrapper/ArrayFireWrapper.cpp

This file was deleted.

4 changes: 2 additions & 2 deletions scripts/lib/af_lib.lua → lib/af_lib.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
--- Library entry point.

-- Modules --
require("lib.impl.array")
require("impl.array")

-- Exports --
local M = {}
Expand All @@ -26,7 +26,7 @@ for _, v in ipairs{
"misc.program",
"misc.imports"
} do
require("lib." .. v).Add(M)
require(v).Add(M)
end

-- Export the module.
Expand Down
Loading

0 comments on commit b0d9c80

Please sign in to comment.