Skip to content

Commit

Permalink
Update sdk to 3.0.100-preview3-010431 (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
ycrumeyrolle authored and gfoidl committed Mar 8, 2019
1 parent 996a506 commit 705e9c0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .azure/pipelines/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ variables:
CI_BUILD_NUMBER: $(Build.BuildId)
BRANCH_NAME: $(Build.SourceBranchName)
TAG_NAME: $(Build.SourceBranchName)
SDK_VERSION: 3.0.100-preview-009844
SDK_VERSION: 3.0.100-preview3-010431

jobs:
- template: jobs/build_and_test.yml
Expand Down
6 changes: 3 additions & 3 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "3.0.100-preview-009844"
}
"sdk": {
"version": "3.0.100-preview3-010431"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public void Only_one_zero_and_one___true()
Vector256<sbyte> left = s_one;
Vector256<sbyte> right = s_one;

left = left.WithElement(index: 3, 0);
left = left.WithElement(index: 3, (sbyte)0);

Vector256<sbyte> res = Avx2Helper.LessThan(left, right);

Expand All @@ -96,7 +96,7 @@ public void One_4_in_5s_and_5s___true()
Vector256<sbyte> left = Vector256.Create((sbyte)5);
Vector256<sbyte> right = Vector256.Create((sbyte)5);

left = left.WithElement(index: 7, 4);
left = left.WithElement(index: 7, (sbyte)4);

Vector256<sbyte> res = Avx2Helper.LessThan(left, right);

Expand Down

0 comments on commit 705e9c0

Please sign in to comment.