Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for rtype_String (0.8 sec)

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

      VLOG(1) << "XlaLocalLaunchOpBase::Compute "
              << Canonicalize(function_.name(), AttrSlice(&function_.attr()));
      xla_launch_counter->GetCell(platform_info_.device_type().type_string())
          ->IncrementBy(1);
    
      std::vector<const Tensor*> inputs = InputsFromContext(ctx);
      std::vector<XlaCompiler::Argument> xla_compiler_args;
      const XlaCompiler::CompilationResult* compilation_result;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/library/cost_test.go

    	expr, err := cel.TypeToExprType(element.Type())
    	if err != nil {
    		return nil
    	}
    	switch expr.GetPrimitive() {
    	case exprpb.Type_STRING:
    		return &checker.SizeEstimate{Min: 0, Max: 12}
    	case exprpb.Type_BYTES:
    		return &checker.SizeEstimate{Min: 0, Max: 12}
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

                               std::vector<int>* output_permutation,
                               NodeDef* call_def) {
            Graph* graph = graph_ptr->get();
            for (const Node* n : graph->nodes()) {
              if (n->type_string() == "_Arg" &&
                  absl::StartsWith(n->name(), "const")) {
                ++guaranteed_consts;
                EXPECT_TRUE(HasGuaranteeConstAttr(*n));
              } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  4. tensorflow/c/c_api.cc

    const char* TF_OperationName(TF_Operation* oper) {
      return oper->node.name().c_str();
    }
    
    const char* TF_OperationOpType(TF_Operation* oper) {
      return oper->node.type_string().c_str();
    }
    
    const char* TF_OperationDevice(TF_Operation* oper) {
      return oper->node.requested_device().c_str();
    }
    
    int TF_OperationNumOutputs(TF_Operation* oper) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top