Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 113 for nextch (0.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_functional_to_executor.cc

          loc, func.getFunctionType().getResults(),
          tf_executor::ControlType::get(&getContext()), ArrayRef<Value>());
      // Create Fetch.
      ValueRange to_fetch = island.getResults();
      if (to_fetch.size() != 1) {
        // Drop control result for fetch.
        to_fetch = to_fetch.drop_back();
      }
      builder.create<tf_executor::FetchOp>(loc, to_fetch);
      // Build Island.
      island.getBody().push_back(new Block);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/version.go

    // kubernetesReleaseVersionDefault is helper function that can fetch
    // available version information from release servers based on
    // label names, like "stable" or "latest".
    //
    // If argument is already semantic version string, it
    // will return same string.
    //
    // In case of labels, it tries to fetch from release
    // servers and then return actual semantic version.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:50:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/convert_launch_func_to_tf_call.mlir

          // CHECK: tf_executor.yield %[[CALL_OUTPUT]]
          tf_executor.yield %3 : tensor<?xf32>
        }
        tf_executor.fetch %1#0 : tensor<?xf32>
      }
      func.return %0 : tensor<?xf32>
    }
    
    func.func @_func(%arg0: tensor<?xf32>) -> tensor<?xf32> {
      func.return %arg0 : tensor<?xf32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/tests/test_graph_tfvariable_sequential_updates.config.pbtxt

    # Text form of tensorflow.tf2xla.Config proto.
    fetch {
      id { node_name: "result" }
    }
    
    variable {
      node_name: "x"
      type: DT_FLOAT
    }
    
    variable {
      node_name: "y"
      type: DT_FLOAT
      readonly: true
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 10:45:51 UTC 2019
    - 199 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_sumdb_proxy.txt

    env sumdb=$GOSUMDB
    env proxy=$GOPROXY
    env GOPROXY GONOPROXY GOSUMDB GONOSUMDB
    
    # basic fetch (through proxy) works
    cp go.mod.orig go.mod
    go get rsc.io/fortune@v1.0.0 # note: must use test proxy, does not exist in real world
    rm $GOPATH/pkg/mod/cache/download/sumdb # rm sumdb cache but NOT package download cache
    rm go.sum
    
    # can fetch by explicit URL
    cp go.mod.orig go.mod
    env GOSUMDB=$sumdb' '$proxy/sumdb-direct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/tests/test_graph_tfmatmul.config.pbtxt

    feed {
      id { node_name: "x_hold" }
      shape {
        dim { size: 2 }
        dim { size: 3 }
      }
    }
    feed {
      id { node_name: "y_hold" }
      shape {
        dim { size: 3 }
        dim { size: 2 }
      }
    }
    fetch {
      id { node_name: "x_y_prod" }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 16 02:38:25 UTC 2017
    - 272 bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/tests/test_graph_tfsplits.config.pbtxt

    feed {
      id { node_name: "x" }
      shape {
        dim { size: 2 }
        dim { size: 2 }
      }
    }
    feed {
      id { node_name: "y" }
      shape {
        dim { size: 2 }
        dim { size: 2 }
      }
    }
    fetch {
      id { node_name: "result" }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 16 02:38:25 UTC 2017
    - 260 bytes
    - Viewed (0)
  8. releasenotes/notes/jwks-cluster.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: security
    releaseNotes:
      - |
        **Fixed** an issue where gateways cannot fetch JWKS from `jwksUri` in RequestAuthentication 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 10:45:06 UTC 2023
    - 296 bytes
    - Viewed (0)
  9. .github/workflows/codeql-analysis.yml

        steps:
        - name: Checkout repository
          uses: actions/checkout@v2
          with:
            # We must fetch at least the immediate parents so that if this is
            # a pull request then we can checkout the head.
            fetch-depth: 2
    
        # If this run was triggered by a pull request event, then checkout
        # the head of the pull request instead of the merge commit.
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Fri Oct 02 13:24:14 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/empty-main.mlir

    // RUN: tf-opt -tf-executor-graph-pruning %s  | FileCheck %s --check-prefix=CONTROL
    
    // CONTROL-LABEL: func @main
    // CONTROL-NEXT:    return
    
    // EXECUTOR-LABEL: func @main
    // EXECUTOR-NEXT:    tf_executor.graph {
    // EXECUTOR-NEXT:      tf_executor.fetch
    // EXECUTOR-NEXT:    }
    // EXECUTOR-NEXT:    return
    
    func.func @main() {
      func.return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 342 bytes
    - Viewed (0)
Back to top