Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 237 for GetVector (0.2 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/transforms/pick_subgraphs.cc

              func_impls,
          llvm::SetVector<Operation*>* unprocessed_subgraphs,
          SmallVector<func::CallOp, 4>* output_subgraphs);
    
      void ProcessSubgraph(func::CallOp current_graph,
                           llvm::SetVector<Operation*>* unprocessed_subgraphs);
    
      bool PickSubgraphs(
          llvm::SetVector<Operation*>* all_subgraphs,
          ArrayRef<func::CallOp> output_subgraphs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 15:10:02 UTC 2022
    - 19.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      return LogicalResult::success();
    }
    
    LogicalResult FindCoreTPUOps(
        llvm::SetVector<Operation*>& core_tpu_ops,
        const llvm::SetVector<Operation*>& forward_pass_ops,
        const llvm::SetVector<Operation*>& backward_pass_ops,
        const llvm::SetVector<Operation*>& merged_set,
        func::FuncOp loop_body_func) {
      // Find all of the Ops that are part of the forward/backward pass but aren't
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  3. src/math/rand/default_test.go

    func TestDefaultRace(t *testing.T) {
    	// Skip the test in short mode, but even in short mode run
    	// the test if we are using the race detector, because part
    	// of this is to see whether the race detector reports any problems.
    	if testing.Short() && !race.Enabled {
    		t.Skip("skipping starting another executable in short mode")
    	}
    
    	const env = "GO_RAND_TEST_HELPER_CODE"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 07 23:39:35 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. src/runtime/norace_test.go

    // license that can be found in the LICENSE file.
    
    // The file contains tests that cannot run under race detector for some reason.
    //
    //go:build !race
    
    package runtime_test
    
    import (
    	"runtime"
    	"testing"
    )
    
    // Syscall tests split stack between Entersyscall and Exitsyscall under race detector.
    func BenchmarkSyscall(b *testing.B) {
    	benchmarkSyscall(b, 0, 1)
    }
    
    func BenchmarkSyscallWork(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 983 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/common/outline_operations.h

    llvm::SmallVector<Value> AccumulateOperandsDefinedAbove(
        const llvm::SetVector<Operation*>& partition_ops);
    
    // Similar to `AccumulateOperandsDefinedAbove()`, computes the Value(s) that are
    // defined within a Subgraph and referenced in a descendant Operation. These
    // Values(s) are to be returned by the new raised function.
    llvm::SmallVector<Value> AccumulateResultsDefinedWithin(
        const llvm::SetVector<Operation*>& partition_ops);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 18:49:43 UTC 2022
    - 6K bytes
    - Viewed (0)
  6. src/race.bash

    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    # race.bash tests the standard library under the race detector.
    # https://golang.org/doc/articles/race_detector.html
    
    set -e
    
    function usage {
    	echo 'race detector is only supported on linux/amd64, linux/ppc64le, linux/arm64, linux/s390x, freebsd/amd64, netbsd/amd64, openbsd/amd64, darwin/amd64, and darwin/arm64' 1>&2
    	exit 1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 04 14:17:20 UTC 2022
    - 919 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/while_loop_outline.cc

    limitations under the License.
    ==============================================================================*/
    
    #include <string>
    
    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/SetVector.h"
    #include "llvm/Support/Casting.h"
    #include "llvm/Support/CommandLine.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassDetector.java

            .add("Lorg/testng/annotations/AfterGroups;")
            .add("Lorg/testng/annotations/Factory;")
            .build();
    
        TestNGTestClassDetector(final TestFrameworkDetector detector) {
            super(detector);
        }
    
        @Override
        protected boolean ignoreNonStaticInnerClass() {
            return false;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestFramework.java

        }
    
        @Override
        public TestNGDetector getDetector() {
            return detector;
        }
    
        @Override
        public void close() throws IOException {
            // Clear expensive state from the test framework to avoid holding on to memory
            // This should probably be a part of the test task and managed there.
            detector = null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestFramework.java

        }
    
        @Override
        public JUnitDetector getDetector() {
            return detector;
        }
    
        @Override
        public void close() throws IOException {
            // Clear expensive state from the test framework to avoid holding on to memory
            // This should probably be a part of the test task and managed there.
            detector = null;
        }
    
        private void validateOptions() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top