Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for Macro (0.33 sec)

  1. tensorflow/compiler/aot/tfcompile.bzl

    """Build macro that compiles a TensorFlow graph into a cc_library.
    
    To use from your BUILD file, add the following line to load the macro:
    
    load("//tensorflow/compiler/aot:tfcompile.bzl", "tf_library")
    
    Then call the macro like this:
    
    tf_library(
        name = "test_graph_tfmatmul",
        config = "test_graph_tfmatmul.config.pbtxt",
        cpp_class = "MatMulComp",
        graph = ":test_graph_tfmatmul.pb",
    )
    """
    
    load(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  2. maven-embedder/src/test/java/org/apache/maven/cli/CLIManagerDocumentationTest.java

    /**
     * Pseudo test to generate documentation fragment about supported CLI options. TODO such documentation generation code
     * should not be necessary as unit test but should be run during site generation (Velocity? Doxia macro?)
     */
    class CLIManagerDocumentationTest {
        private static final String LS = System.lineSeparator();
    
        private static class OptionComparator implements Comparator<Option> {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/constant_fold.cc

      };
    
      int64_t results_size = get_size(inst->getResultTypes());
      int64_t operands_size = get_size(inst->getOperandTypes());
    
      constexpr int kSizeFactor = 2;
    // TODO(b/233827625): Remove TF_DISABLE_CONSTANT_FOLDING macro.
    #ifdef TF_DISABLE_CONSTANT_FOLDING
      constexpr int64_t kResultsSizeThreshold = 0;
    #else
      constexpr int64_t kResultsSizeThreshold = (1 << 23);  // 1 MB
    #endif
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. src/internal/goexperiment/flags.go

    // enabled.
    //
    // - For each experiment x (in camel case), this package contains a
    // boolean constant x and an integer constant xInt.
    //
    // - In runtime assembly, the macro GOEXPERIMENT_x is defined if
    // experiment x (lower case) is enabled.
    //
    // In the toolchain, the set of experiments enabled for the current
    // build should be accessed via objabi.Experiment.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 16:19:47 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

            withLibraryDependencies<DependencyRemovalByNameRule>(
                "org.spockframework:spock-core",
                setOf("groovy-groovysh", "groovy-json", "groovy-macro", "groovy-nio", "groovy-sql", "groovy-templates", "groovy-test", "groovy-xml")
            )
            withLibraryDependencies<DependencyRemovalByNameRule>("cglib:cglib", setOf("ant"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/BUILD

        mlir_components = "Bridge",
        tags = [
            "manual",
        ],
    )
    
    # Utility library for benchmark binaries, used by the *_benchmark rules that are
    # added by the tfcompile bazel macro.
    cc_library(
        name = "benchmark",
        srcs = ["benchmark.cc"],
        hdrs = ["benchmark.h"],
        visibility = ["//visibility:public"],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/accesslog.go

    	// Logging them by default on the console may be an issue as the base64 encoded string is bound to be a big one.
    	// But end users can certainly configure it on their own via the meshConfig using the %FILTER_STATE% macro.
    	envoyWasmStateToLog = []string{"wasm.upstream_peer", "wasm.upstream_peer_id", "wasm.downstream_peer", "wasm.downstream_peer_id"}
    
    	// accessLogBuilder is used to set accessLog to filters
    	accessLogBuilder = newAccessLogBuilder()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. pilot/pkg/model/telemetry_logging.go

    	// Logging them by default on the console may be an issue as the base64 encoded string is bound to be a big one.
    	// But end users can certainly configure it on their own via the meshConfig using the %FILTER_STATE% macro.
    	envoyWasmStateToLog = []string{"wasm.upstream_peer", "wasm.upstream_peer_id", "wasm.downstream_peer", "wasm.downstream_peer_id"}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/shell.go

    }
    
    func (e *cmdError) ImportPath() string {
    	return e.importPath
    }
    
    var cgoLine = lazyregexp.New(`\[[^\[\]]+\.(cgo1|cover)\.go:[0-9]+(:[0-9]+)?\]`)
    var cgoTypeSigRe = lazyregexp.New(`\b_C2?(type|func|var|macro)_\B`)
    
    // run runs the command given by cmdline in the directory dir.
    // If the command fails, run prints information about the failure
    // and returns a non-nil error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  10. src/cmd/cgo/gcc.go

    	// badVoidPointerTypedef handles the "void *" HANDLE type, but other
    	// handles are defined as
    	//
    	// struct <name>__{int unused;}; typedef struct <name>__ *name;
    	//
    	// by the DECLARE_HANDLE macro in STRICT mode. The macro is declared in
    	// the Windows ntdef.h header,
    	//
    	// https://github.com/tpn/winsdk-10/blob/master/Include/10.0.16299.0/shared/ntdef.h#L779
    	if goos != "windows" {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top