summaryrefslogtreecommitdiff
path: root/tests/java_api/LatencyBenchmark/src/com/example/android/rs/computebench/compute_benchmark.rscript
diff options
context:
space:
mode:
Diffstat (limited to 'tests/java_api/LatencyBenchmark/src/com/example/android/rs/computebench/compute_benchmark.rscript')
-rw-r--r--tests/java_api/LatencyBenchmark/src/com/example/android/rs/computebench/compute_benchmark.rscript29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/java_api/LatencyBenchmark/src/com/example/android/rs/computebench/compute_benchmark.rscript b/tests/java_api/LatencyBenchmark/src/com/example/android/rs/computebench/compute_benchmark.rscript
new file mode 100644
index 00000000..c6d1ea9b
--- /dev/null
+++ b/tests/java_api/LatencyBenchmark/src/com/example/android/rs/computebench/compute_benchmark.rscript
@@ -0,0 +1,29 @@
+// Copyright (C) 2012 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+#pragma version(1)
+#pragma rs java_package_name(com.example.android.rs.latencybench)
+
+rs_script empty_kern;
+rs_allocation in, out;
+int iters = 1000000;
+
+void root(const uint32_t *ain, uint32_t *aout) {
+
+}
+
+void emptyKernelLauncher() {
+ for (int i = 0; i < iters; i++)
+ rsForEach(empty_kern, in, out);
+}