Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 153 for _encapsulate (0.27 sec)

  1. tensorflow/compiler/jit/xla_cluster_util.h

    #include "tensorflow/core/common_runtime/optimization_registry.h"
    #include "tensorflow/core/graph/algorithm.h"
    
    namespace tensorflow {
    
    // The attribute that marks nodes to be grouped into functions by the
    // encapsulate subgraphs pass.
    extern const char* const kXlaClusterAttr;
    
    // The attribute that marks certain inputs to a Node as required to be a
    // constant at compile time.  If this attribute is present then the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. internal/s3select/sql/record.go

    	SelectFmtCSV
    	// SelectFmtJSON - JSON format
    	SelectFmtJSON
    	// SelectFmtSIMDJSON - SIMD JSON format
    	SelectFmtSIMDJSON
    	// SelectFmtParquet - Parquet format
    	SelectFmtParquet
    )
    
    // WriteCSVOpts - encapsulates options for Select CSV output
    type WriteCSVOpts struct {
    	FieldDelimiter rune
    	Quote          rune
    	QuoteEscape    rune
    	AlwaysQuote    bool
    }
    
    // Record - is a type containing columns and their values.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

      call_def->set_op(absl::StrCat(call_def->op(), "_", fingerprint));
      return absl::OkStatus();
    }
    
    }  // namespace
    
    /*static*/ Status EncapsulateXlaComputationsPass::Encapsulate(
        std::unique_ptr<Graph>* graph, FunctionLibraryDefinition* flib_def) {
      // Check for undeclared outputs before Encapsulation, so we can give a better
      // error message.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass.h

        const RewriteSubgraphFn& rewrite_subgraph_fn, bool reuse_existing_functions,
        std::unique_ptr<Graph>* graph_out, FunctionLibraryDefinition* library);
    
    // The attribute that marks function calls produced by the encapsulate
    // subgraphs pass and that should in turn be compiled via XlaLaunch operators.
    extern const char* const kXlaCompiledKernelAttr;
    
    // Does `node` have the kXlaCompiledKernelAttr attribute?
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 12 03:59:36 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/build/BuildState.java

    import org.gradle.initialization.IncludedBuildSpec;
    import org.gradle.internal.DisplayName;
    import org.gradle.util.Path;
    
    import java.io.File;
    import java.util.function.Function;
    
    /**
     * Encapsulates the identity and state of a particular build in a build tree.
     *
     * Implementations are not yet entirely thread-safe, but should be.
     */
    public interface BuildState {
        DisplayName getDisplayName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 17:48:01 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. pkg/kubelet/types/types.go

    import (
    	"net/http"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/cri-client/pkg/logs"
    )
    
    // TODO: Reconcile custom types in kubelet/types and this subpackage
    
    // HTTPDoer encapsulates http.Do functionality
    type HTTPDoer interface {
    	Do(req *http.Request) (*http.Response, error)
    }
    
    // Timestamp wraps around time.Time and offers utilities to format and parse
    // the time using RFC3339Nano
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/jvm/component/internal/JvmSoftwareComponentInternal.java

         * suites should be accessed via {@link #getFeatures()}.
         */
        NamedDomainObjectContainer<TestSuite> getTestSuites();
    
        /**
         * Get the feature which encapsulates all logic and domain objects for building the production software product.
         *
         * <p>This is a legacy API. Plugins should support components with multiple features by calling {@link #getFeatures()}.</p>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 21:17:58 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycleExecutor.java

        // <plugin/> block in a Maven POM. We have to do some wiggling to pull the sources of information
        // together and this really shows the problem of constructing a sensible default configuration but
        // it's all encapsulated here so it appears normalized to the POM builder.
    
        // We are going to take the project packaging and find all plugin in the default lifecycle and create
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:09 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/google/AbstractMultimapTester.java

            .sampleValues();
      }
    
      @Override
      protected Collection<Entry<K, V>> actualContents() {
        return multimap.entries();
      }
    
      // TODO: dispose of this once collection is encapsulated.
      @Override
      @CanIgnoreReturnValue
      protected M resetContainer(M newContents) {
        multimap = super.resetContainer(newContents);
        return multimap;
      }
    
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. src/crypto/internal/hpke/hpke_test.go

    				pub,
    				info,
    			)
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			expectedEncap := mustDecodeHex(t, setup["enc"])
    			if !bytes.Equal(encap, expectedEncap) {
    				t.Errorf("unexpected encapsulated key, got: %x, want %x", encap, expectedEncap)
    			}
    			expectedSharedSecret := mustDecodeHex(t, setup["shared_secret"])
    			if !bytes.Equal(context.sharedSecret, expectedSharedSecret) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top