-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
set_col() fails #143
Comments
@polarathene I believe you misunderstood what column means here. Given that your input is [1 3 1 1], there are three columns in the Array and each column has single element. Therefore, the I agree that an example in the functions documentation would definitely and we have an open issue for the same. |
If there were 5 rows of 3 columns( |
Yes, that is correct. Array with dimensions [ M N O P ]
M is number of element in a column Thus the naming convention of |
I was familiar with row and col, I noticed slice but it didn't click to me that it was related to these two like that for some reason :) I guess the new docs will mention the 3 together like you just did. I put together an example for using // Showcases usage of `set_col()` and `col()`
fn col_example() {
let range_a: Vec<u8> = (1..16).collect();
let range_b: Vec<u8> = (20..26).collect();
let range_c: Vec<u8> = (30..41).collect();
// The arrays columns must have the same size(number of rows)
let dims_a = Dim4::new(&[5, 3, 1, 1]);
let dims_b = Dim4::new(&[5, 1, 1, 1]);
let dims_c = Dim4::new(&[5, 2, 1, 1]);
let mut range_a_af = af::Array::new(&range_a, dims_a);
let range_b_af = af::Array::new(&range_b, dims_b);
let range_c_af = af::Array::new(&range_c, dims_c);
af_print!("range_a_af:", range_a_af);
// [5 3 1 1]
// 1 6 11
// 2 7 12
// 3 8 13
// 4 9 14
// 5 10 15
af_print!("range_b_af:", range_b_af);
// [5 1 1 1]
// 20
// 21
// 22
// 23
// 24
af_print!("range_c_af:", range_c_af);
// [5 2 1 1]
// 30 35
// 31 36
// 32 37
// 33 38
// 34 39
// `range_b_af` only contains 1 column of 5 rows. To replace the first
// column in `range_a_af`(0):
range_a_af = set_col(&range_a_af, &range_b_af, 0);
af_print!("1st column replaced: ", range_a_af);
// [5 3 1 1]
// 20 6 11
// 21 7 12
// 22 8 13
// 23 9 14
// 24 10 15
// Take the 2nd column from `range_c_af`(1) and replace the 3rd column
// in `range_a_af`(2):
range_a_af = set_col(&range_a_af, &col(&range_c_af, 1), 2);
af_print!("3rd column replaced: ", range_a_af);
// [5 3 1 1]
// 20 6 35
// 21 7 36
// 22 8 37
// 23 9 38
// 24 10 39
} |
Rust docs for
|
@polarathene My bad, I guessed it is |
I've not contributed rust docs before. Is the docs contained within the source? Or did you want the larger snippet in the examples? Happy to send a PR. |
Documentation would be part of source code. You can look at the example written for shift to get an idea of how to write an example. Also, once you write a test - the command |
set_col()
docs could do with an example.It is not clear what the expected array for
new_col
should look like. I have tried dims[3, 1, 1, 1]
and[1, 3, 1 ,1]
, both times an error was thrown about incorrect size.This throws the following error:
This might be due to the indexing bug that @9prady9 fixed here. Either that or I've misunderstood how to use this method.
The text was updated successfully, but these errors were encountered: