Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,942 for Tconstants (0.21 sec)

  1. tensorflow/compiler/jit/ops/xla_ops.cc

    #include "tensorflow/core/framework/op.h"
    #include "tensorflow/core/framework/shape_inference.h"
    
    namespace tensorflow {
    
    using shape_inference::InferenceContext;
    
    REGISTER_OP("XlaLaunch")
        .Input("constants: Tconstants")
        .Attr("Tconstants: list(type) >= 0")
        .Input("args: Targs")
        .Attr("Targs: list(type) >= 0")
        .Input("resources: Nresources * resource")
        .Attr("Nresources: int >= 0")
        .Output("results: Tresults")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 09:08:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

      retvals.reserve(num_retvals);
      for (Node* n : graph->nodes()) {
        if (n->type_string() == "_Arg") {
          // Check if this is a guaranteed constant.
          if (is_guaranteed_constant(*n)) {
            return errors::InvalidArgument(
                "Guaranteed constants are not supported (", n->name(), ")");
          }
          args.push_back(n);
        } else if (n->type_string() == "_Retval") {
          retvals.push_back(n);
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/kernels/xla_ops.cc

                            ctx->GetAttr("Tconstants", &constant_types));
      std::vector<int> constants(constant_types.size());
      std::iota(constants.begin(), constants.end(), 0);
      return constants;
    }
    
    std::vector<int> ResourcesVector(OpKernelConstruction* ctx) {
      DataTypeVector constant_types;
      OP_REQUIRES_OK_RETURN(ctx, std::vector<int>(),
                            ctx->GetAttr("Tconstants", &constant_types));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  4. cni/pkg/constants/constants.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package constants
    
    // Command line arguments
    const (
    	// Install
    	MountedCNINetDir     = "mounted-cni-net-dir"
    	CNINetDir            = "cni-net-dir"
    	CNIConfName          = "cni-conf-name"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/constants/constants.go

    		``)
    )
    
    const (
    	DefaultProxyUID    = "1337"
    	DefaultProxyUIDInt = int64(1337)
    )
    
    // Constants used in environment variables
    const (
    	EnvoyUser = "ENVOY_USER"
    )
    
    // Constants for syscall
    const (
    	// sys/socket.h
    	SoOriginalDst = 80
    )
    
    const (
    	DefaultIptablesProbePortUint = 15002
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/util/constants.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package util
    
    import (
    	"regexp"
    
    	"istio.io/istio/pkg/config/constants"
    )
    
    const (
    	DefaultClusterLocalDomain  = "svc." + constants.DefaultClusterLocalDomain
    	ExportToNamespaceLocal     = "."
    	ExportToAllNamespaces      = "*"
    	IstioProxyName             = "istio-proxy"
    	IstioOperator              = "istio-operator"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 28 04:57:33 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/Constants.java

     */
    package org.codelibs.fess.crawler;
    
    import java.nio.charset.Charset;
    import java.nio.charset.StandardCharsets;
    
    /**
     * @author shinsuke
     *
     */
    public final class Constants {
        public static final String GET_METHOD = "GET";
    
        public static final String HEAD_METHOD = "HEAD";
    
        public static final String POST_METHOD = "POST";
    
        public static final int OK_STATUS = 0;
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/tests/fold-constants-to-subgraph.mlir

    // Test for partial folding: only fold i32 constants.
    // RUN: tac-opt-all-backends -tfl-fold-constants-to-subgraph='fold-all-constants=false' %s -split-input-file -verify-diagnostics | FileCheck --check-prefix=PARTIAL %s
    
    // Test for fold all constants.
    // RUN: tac-opt-all-backends -tfl-fold-constants-to-subgraph='fold-all-constants=true' %s -split-input-file -verify-diagnostics | FileCheck --check-prefix=ALL %s
    
    module {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/core/revived_types/constant.h

    class Constant : public TensorHandleConvertible {
     public:
      static Status Create(ImmediateExecutionContext* ctx,
                           AbstractTensorInterface* tensor,
                           std::unique_ptr<Constant>* output);
    
      // RevivedConstant is movable, but not copyable.
      Constant(Constant&& other) = default;
      Constant& operator=(Constant&& other) = default;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 19:43:25 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/revived_types/constant.cc

    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    
    Constant::Constant(ImmediateTensorHandlePtr handle)
        : TensorHandleConvertible(std::move(handle)) {}
    
    Status Constant::Create(ImmediateExecutionContext* ctx,
                            AbstractTensorInterface* tensor,
                            std::unique_ptr<Constant>* output) {
      ImmediateExecutionTensorHandle* handle = ctx->CreateLocalHandle(tensor);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 23 19:44:24 UTC 2020
    - 1.8K bytes
    - Viewed (0)
Back to top