Skip to content

Instantly share code, notes, and snippets.

/minmax.cs Secret

Created October 11, 2017 18:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/5eb20b3977a5b46eef7b3b4b493e5c22 to your computer and use it in GitHub Desktop.
Save anonymous/5eb20b3977a5b46eef7b3b4b493e5c22 to your computer and use it in GitHub Desktop.
Sample code to find the minimum and maximum of two vectors
/*
Copyright 2017 Intel Corporation.
The source code, information and material ("Material") contained herein
is owned by Intel Corporation or its suppliers or licensors, and title
to such Material remains with Intel Corporation or its suppliers or
licensors. The Material contains proprietary information of Intel or its
suppliers and licensors. The Material is protected by worldwide
copyright laws and treaty provisions. No part of the Material may be
used, copied, reproduced, modified, published, uploaded, posted,
transmitted, distributed or disclosed in any way without Intel's prior
express written permission. No license under any patent, copyright or
other intellectual property rights in the Material is granted to or
conferred upon you, either expressly, by implication, inducement,
estoppel or otherwise. Any license under such intellectual property
rights must be express and approved by Intel in writing.
Unless otherwise agreed by Intel in writing, you may not remove or alter
this notice or any other notice embedded in Materials by Intel or
Intel's suppliers or licensors in any way.
*/
using System;
using System.Numerics;
using System.Collections.Generic;
using System.Linq;
using static System.Console;
using System.Diagnostics;
namespace MinMax
{
class Program
{
private static readonly Stopwatch watch = new Stopwatch();
private const int arraysize = 4096 * 4096;
static int[] GetDataArray(int size) => Enumerable.Range(1, size).Select(x => x * x).ToArray();
static void Main(string[] args)
{
WriteLine("Generating test data...");
var testData = GetDataArray(arraysize);
WriteLine("Test data generated, testing to start...");
long elapsed = 0;
watch.Restart();
for (var i = 0; i < 1000; i++)
{
VectorMinMax(testData);
}
elapsed = watch.ElapsedMilliseconds;
WriteLine($"Time: {elapsed} ms");
WriteLine("Testing complete");
}
static void VectorMinMax(int[] input)
{
var length = Vector<int>.Count;
var minvector = new Vector<int>(int.MaxValue);
var maxvector = new Vector<int>(int.MinValue);
var index = input.Length - length;
for (var i = 0; i < index; i += length)
{
var inputVector = new Vector<int>(input, i);
minvector = Vector.Min(inputVector, minvector);
maxvector = Vector.Max(inputVector, maxvector);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment