Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 190 for LOGICAL (0.18 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/lowering_passes.td

    def InputLoweringMetricsPass : Pass<"input-lowering-metrics-pass", "mlir::func::FuncOp"> {
    
      let summary = "Collects various metrics about the input to the lowering "
                    "portion of the bridge. This is a logical no-op.";
    
      let description = [{
        Gathers metrics about the input MLIR to Phase 2 of the TFXLA Bridge, which
        does a strict semantic lowering from Tensorflow ops to XLA HLO.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 19:49:04 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/FileReference.java

     */
    package org.gradle.plugins.ide.eclipse.model;
    
    import java.io.File;
    
    /**
     * A reference to a file in eclipse.
     */
    public interface FileReference {
        /**
         * Returns the logical path for the file.
         */
        String getPath();
    
        /**
         * Returns the target file.
         */
        File getFile();
    
        /**
         * Returns the jar URL of the file
         */
        String getJarURL();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/ide/problems-api/src/main/java/org/gradle/problems/buildtree/ProblemDiagnosticsFactory.java

     */
    @ServiceScope(Scope.BuildTree.class)
    public interface ProblemDiagnosticsFactory {
        /**
         * Creates a new stream of problems. Each problem stream produces diagnostics for some logical set of problems, applying limits to
         * the number of stack traces captured. Each stream has its own limits.
         */
        ProblemStream newStream();
    
        /**
         * Creates a new stream of problems without any limits.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-application/src/test/groovy/org/gradle/api/internal/plugins/WindowsStartScriptGeneratorTest.groovy

            Writer destination = new StringWriter()
    
            when:
            generator.generateScript(details, destination)
    
            then:
            destination.toString().contains(/set DEFAULT_JVM_OPTS="-Dfoo=b\"ar baz" "-Xi\"\"nt" "-Xpatho\\\"logical"/)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/lif/lif.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build solaris
    
    // Package lif provides basic functions for the manipulation of
    // logical network interfaces and interface addresses on Solaris.
    //
    // The package supports Solaris 11 or above.
    package lif
    
    import (
    	"syscall"
    )
    
    type endpoint struct {
    	af int
    	s  uintptr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 950 bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/outbuf_darwin.go

    	stat, err := out.f.Stat()
    	if err != nil {
    		return err
    	}
    	// F_PEOFPOSMODE allocates from the end of the file, so we want the size difference.
    	// Apparently, it uses the end of the allocation, instead of the logical end of the
    	// file.
    	cursize := uint64(stat.Sys().(*syscall.Stat_t).Blocks * 512) // allocated size
    	if size <= cursize {
    		return nil
    	}
    
    	store := &syscall.Fstore_t{
    		Flags:   syscall.F_ALLOCATEALL,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 13 15:50:02 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

          old_parallel_execute, new_parallel_execute);
    
      // Extract inputs for each block of the parallel_execute op. The i-th
      // element in the list represents the input lists to TPU computation for
      // i-th logical core.
      llvm::SmallVector<llvm::SmallVector<mlir::Value, 4>, 4> input_list;
      builder->setInsertionPoint(*new_parallel_execute);
      auto result = tensorflow::ExtractInputsForLogicalDevices(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    		{name: "SRL", argLength: 2, reg: gp21, asm: "SRL"},                   // arg0 >> (aux1 & 63), logical right shift
    		{name: "SRLW", argLength: 2, reg: gp21, asm: "SRLW"},                 // arg0 >> (aux1 & 31), logical right shift of 32 bit value, sign extended to 64 bits
    		{name: "SLLI", argLength: 1, reg: gp11, asm: "SLLI", aux: "Int64"},   // arg0 << auxint, shift amount 0-63, logical left shift
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/counter/doc.go

    //     "foo" as the "chart name" and "bar" as the "bucket name".
    //
    //   - The '/' character should partition counter names into a hierarchy. The
    //     root of this hierarchy should identify the logical entity that "owns"
    //     the counter. This could be an application, such as "gopls" in the case
    //     of "gopls/client:vscode", or a shared library, such as "crash" in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. pkg/apis/rbac/types.go

    	Kind string
    	// Name is the name of resource being referenced
    	Name string
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.
    type Role struct {
    	metav1.TypeMeta
    	// Standard object's metadata.
    	metav1.ObjectMeta
    
    	// Rules holds all the PolicyRules for this Role
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 24 20:35:20 UTC 2023
    - 7.8K bytes
    - Viewed (0)
Back to top