Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 191 for Grappler (0.11 sec)

  1. tensorflow/c/experimental/grappler/BUILD

    )
    
    cc_library(
        name = "grappler_hdrs",
        hdrs = ["grappler.h"],
        visibility = ["//tensorflow:internal"],
        deps = [
            "//tensorflow/c:c_api",
            "//tensorflow/c:c_api_macros",
            "//tensorflow/c:tf_status_headers",
        ],
    )
    
    cc_library(
        name = "grappler",
        srcs = ["grappler.cc"],
        hdrs = [
            "grappler.h",
            "grappler_internal.h",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/upgrade_graph.cc

    #include "tensorflow/core/common_runtime/device_factory.h"
    #include "tensorflow/core/common_runtime/device_mgr.h"
    #include "tensorflow/core/grappler/clusters/virtual_cluster.h"
    #include "tensorflow/core/grappler/grappler_item.h"
    #include "tensorflow/core/grappler/grappler_item_builder.h"
    #include "tensorflow/core/grappler/optimizers/meta_optimizer.h"
    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    
    namespace tensorflow {
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 14:33:47 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/function/function.h

    struct TfrtFunctionCompileOptions : public TfrtCompileOptions {
      // Currently only SavedModel API inference uses the tpu_fuse_ops option
      TfrtFunctionCompileOptions() {
        tpu_fuse_ops = false;
        // Currently grappler is not correctly applied in the eager execution of TF
        // functions, as it may sometimes remove arguments and results.
        enable_grappler = false;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 04:50:20 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. istioctl/pkg/util/configdump/wrapper.go

    		return msg.ProtoReflect().Type(), nil
    	}
    	return typ, nil
    }
    
    // Wrapper is a wrapper around the Envoy ConfigDump
    // It has extra helper functions for handling any/struct/marshal protobuf pain
    type Wrapper struct {
    	*admin.ConfigDump
    }
    
    // UnmarshalJSON is a custom unmarshaller to handle protobuf pain
    func (w *Wrapper) UnmarshalJSON(b []byte) error {
    	cd := &admin.ConfigDump{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-main/src/main/proguard/wrapper.pro

    # Keep class names
    -dontobfuscate
    
    # Entry point
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 147 bytes
    - Viewed (0)
  6. .mvn/wrapper/maven-wrapper.properties

    distributionSha256Sum=83aaf914c785c9faed661f223000a92d1de9553f5c82d3b4362e66d9c031625f
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 21:44:53 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. gradle/wrapper/gradle-wrapper.properties

    distributionBase=GRADLE_USER_HOME
    distributionPath=wrapper/dists
    distributionUrl=https\://services.gradle.org/distributions-snapshots/gradle-8.9-20240529002035+0000-bin.zip
    networkTimeout=10000
    validateDistributionUrl=true
    zipStoreBase=GRADLE_USER_HOME
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 280 bytes
    - Viewed (0)
  8. .github/workflows/gradle-wrapper-validation.yml

    name: "Validate Gradle Wrapper"
    on: [push, pull_request]
    
    permissions:
      contents: read
    
    jobs:
      validation:
        name: "Validation"
        runs-on: ubuntu-latest
        steps:
          - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 16:25:39 UTC 2024
    - 348 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/wrapper.go

    Jefftree <******@****.***> 1705698827 -0500
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_wrapper_basics.adoc

    [[gradle_wrapper_basics]]
    = Gradle Wrapper Basics
    
    The **recommended way to execute any Gradle build** is with the Gradle Wrapper.
    
    image::gradle-basic-2.png[]
    
    The _Wrapper_ script invokes a declared version of Gradle, downloading it beforehand if necessary.
    
    image::wrapper-workflow.png[]
    
    The Wrapper is available as a `gradlew` or `gradlew.bat` file.
    
    The Wrapper provides the following benefits:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:34:59 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top