Skip to content

Commit

Permalink
disable non-async hdf5 shuffling test on windows as memcpy is not
Browse files Browse the repository at this point in the history
available
  • Loading branch information
pluskid committed Mar 25, 2015
1 parent b179219 commit f213e1e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/layers/hdf5-data.jl
Expand Up @@ -122,7 +122,10 @@ function test_hdf5_data_layer_shuffle(backend::Backend, batch_size, async, n, T)
rm(h5fn)
end
function test_hdf5_data_layer_shuffle(backend::Backend, batch_size, n, T)
test_hdf5_data_layer_shuffle(backend, batch_size, false, n, T)
# do not run (non-async) HDF5 data layer shuffling on windows, because it is implemented
# with memmap, which is not working properly on Windows.
@windows? nothing : test_hdf5_data_layer_shuffle(backend, batch_size, false, n, T)

test_hdf5_data_layer_shuffle(backend, batch_size, true, n, T)
end

Expand Down

0 comments on commit f213e1e

Please sign in to comment.