From: Michael Orlitzky Date: Wed, 7 Sep 2011 01:39:14 +0000 (-0400) Subject: 4x, completely uncached. X-Git-Tag: 0.0.1~149^2~3 X-Git-Url: https://gitweb.michael.orlitzky.com/?p=spline3.git;a=commitdiff_plain;h=769784e81d7fb70a131cd0523ff41e1cb56f4768 4x, completely uncached. --- diff --git a/src/Grid.hs b/src/Grid.hs index 893fe5c..fcdeb5e 100644 --- a/src/Grid.hs +++ b/src/Grid.hs @@ -27,9 +27,8 @@ import Cube (Cube(Cube), import Examples import FunctionValues import Point (Point) -import PolynomialArray (PolynomialArray) import ScaleFactor -import Tetrahedron (Tetrahedron, c, number, polynomial, v0, v1, v2, v3) +import Tetrahedron (Tetrahedron, c, polynomial, v0, v1, v2, v3) import ThreeDimensional import Values (Values3D, dims, empty3d, zoom_shape) @@ -133,15 +132,15 @@ find_containing_cube g p = {-# INLINE zoom_lookup #-} -zoom_lookup :: Grid -> PolynomialArray -> ScaleFactor -> a -> (R.DIM3 -> Double) -zoom_lookup g polynomials scale_factor _ = - zoom_result g polynomials scale_factor +zoom_lookup :: Grid -> ScaleFactor -> a -> (R.DIM3 -> Double) +zoom_lookup g scale_factor _ = + zoom_result g scale_factor {-# INLINE zoom_result #-} -zoom_result :: Grid -> PolynomialArray -> ScaleFactor -> R.DIM3 -> Double -zoom_result g polynomials (sfx, sfy, sfz) (R.Z R.:. m R.:. n R.:. o) = - (polynomials ! (i, j, k, (number t))) p +zoom_result :: Grid -> ScaleFactor -> R.DIM3 -> Double +zoom_result g (sfx, sfy, sfz) (R.Z R.:. m R.:. n R.:. o) = + f p where offset = (h g)/2 m' = (fromIntegral m) / (fromIntegral sfx) - offset @@ -150,15 +149,14 @@ zoom_result g polynomials (sfx, sfy, sfz) (R.Z R.:. m R.:. n R.:. o) = p = (m', n', o') :: Point cube = find_containing_cube g p -- Figure out i,j,k without importing those functions. - Cube _ i j k _ _ = cube t = find_containing_tetrahedron cube p - + f = polynomial t -zoom :: Grid -> PolynomialArray -> ScaleFactor -> Values3D -zoom g polynomials scale_factor +zoom :: Grid -> ScaleFactor -> Values3D +zoom g scale_factor | xsize == 0 || ysize == 0 || zsize == 0 = empty3d | otherwise = - R.force $ R.traverse arr transExtent (zoom_lookup g polynomials scale_factor) + R.force $ R.traverse arr transExtent (zoom_lookup g scale_factor) where arr = function_values g (xsize, ysize, zsize) = dims arr diff --git a/src/Main.hs b/src/Main.hs index 4040276..8a1efdb 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -9,10 +9,7 @@ import Data.Array.Repa ( import System.Environment (getArgs) -import Cube (tetrahedron) -import Grid (cube_at, make_grid, zoom) -import PolynomialArray (make_polynomial_array) -import Tetrahedron (polynomial) +import Grid (make_grid, zoom) import Values (read_values_3d, write_values_1d) mri_shape :: DIM3 @@ -30,13 +27,5 @@ main = do mridata <- read_values_3d mri_shape in_file let g = make_grid 1 mridata - let polynomials = make_polynomial_array (255,255,0,23) - [ ((i,j,k,tet), polynomial t) | i <- [0..255], - j <- [0..255], - k <- [0], - tet <- [0..23], - let c = cube_at g i j k, - let t = tetrahedron c tet ] - - let output = zoom g polynomials (8,8,1) + let output = zoom g (4,4,1) write_values_1d output out_file diff --git a/src/PolynomialArray.hs b/src/PolynomialArray.hs deleted file mode 100644 index 2cf96dd..0000000 --- a/src/PolynomialArray.hs +++ /dev/null @@ -1,26 +0,0 @@ --- | The PolynomialArray module contains one type, 'PolynomialArray', --- and a smart constructor for it. The array is essentially a hash; --- the unique keys can be thought of as a cube/tetrahedron pair, and --- the associated value is the polynomial function over that --- tetrahedron. Rather than define 'Ord' instances and a proper map, --- we just use the indices i,j,k along with the tetrahedron number --- as the keys. -module PolynomialArray ( - PolynomialArray, - make_polynomial_array - ) -where - -import RealFunction(RealFunction) -import Point (Point) - -import Data.Array (Array, array) - -type PolynomialArray = - Array (Int,Int,Int,Int) (RealFunction Point) - -make_polynomial_array :: (Int, Int, Int, Int) -> - [( (Int,Int,Int,Int), (RealFunction Point) )] -> - PolynomialArray -make_polynomial_array (max_i, max_j, max_k, max_tetrahedron_number) = - array ( (0,0,0,0), (max_i,max_j,max_k, max_tetrahedron_number) )