Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for rtype_String (0.19 sec)

  1. tensorflow/compiler/jit/compilability_check_util.cc

      //    create convolutions too large for CuDNN to handle.
      return node.type_string() == "SelfAdjointEigV2" ||
             node.type_string() == "Svd" || node.type_string() == "Qr" ||
             node.type_string() == "MatrixInverse" ||
             node.type_string() == "MatrixSolve" ||
             node.type_string() == "ResizeBilinearGrad";
    }
    
    bool RecursiveCompilabilityChecker::IsCompilableNode(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/flags.h

          xla_launch_allowed_devices_.insert(device_type.type_string());
        }
    
        bool IsEnabledInXlaLaunchForDevice(const DeviceType& device_type) const {
          if (!enabled_for_gpu_ && device_type.type_string() == "GPU") return false;
          return enabled_for_all_ ||
                 (enabled_for_xla_launch_ &&
                  xla_launch_allowed_devices_.contains(device_type.type_string()));
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_cluster_util.cc

                              return name_attr_pair.second.has_func();
                            });
    }
    bool IsShapeConsumerOp(const Node& node) {
      return node.type_string() == "Shape" || node.type_string() == "Rank" ||
             node.type_string() == "Size";
    }
    
    namespace {
    struct ClusterInfo {
      int size;
    
      // Maps op names to the number of times they appear in the cluster.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

      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)
  5. tensorflow/compiler/jit/shape_inference.cc

                    << context->DebugString(handle);
          }
        }
    
        int index = -1;
        if (n->type_string() == "_Arg") {
          // NOTE: during runtime, Placeholder ops will be replaced as `_Arg` ops.
          // And Args must have `index` attribute.
          TF_RETURN_IF_ERROR(GetNodeAttr(n->attrs(), "index", &index));
        } else if (n->type_string() == "Placeholder") {
          // Use custom attribute (prefixed with `_`) `_index` for placeholders as
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/extract_outside_compilation_pass_test.cc

      int num_send_from_host = 0, num_recv_at_host = 0;
      std::vector<Node *> send_recv_nodes;
      for (Node *n : host_graph->nodes()) {
        if (n->type_string() == "_XlaSendFromHost") {
          num_send_from_host++;
          send_recv_nodes.push_back(n);
        } else if (n->type_string() == "_XlaRecvAtHost") {
          num_recv_at_host++;
          send_recv_nodes.push_back(n);
        }
      }
      EXPECT_EQ(num_send_from_host, 1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 41K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_device.cc

              << op_kernel->type_string();
      ShowXlaDeviceDeprecationWarning(jit_device_name_.type_string());
      op_kernel->Compute(context);
    }
    
    void XlaDevice::ComputeAsync(AsyncOpKernel* op_kernel, OpKernelContext* context,
                                 AsyncOpKernel::DoneCallback done) {
      ShowXlaDeviceDeprecationWarning(jit_device_name_.type_string());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/compilability_check_util.h

        const XlaResourceOpInfo* op_info =
            GetResourceOpInfoForOp(node.type_string());
        return op_info && op_info->resource_kind() == XlaResourceKind::kStack;
      }
    
      bool IsTensorArrayOp(const Node& node) const {
        const XlaResourceOpInfo* op_info =
            GetResourceOpInfoForOp(node.type_string());
        return op_info && op_info->resource_kind() == XlaResourceKind::kTensorArray;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/node_matchers.cc

      bool MatchAndExplain(
          const Node* node,
          ::testing::MatchResultListener* listener) const override {
        if (op && node->type_string() != *op) {
          if (listener->IsInterested()) {
            *listener << "\nexpected op " << *op << " but found "
                      << node->type_string();
          }
          return false;
        }
    
        if (assigned_device && node->assigned_device_name() != *assigned_device) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 03 16:15:20 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/resource_operation_safety_analysis.cc

      }
      if (should_ignore) {
        *out_resource_op_kind = std::nullopt;
        return absl::OkStatus();
      }
    
      const XlaResourceOpInfo* op_info = GetResourceOpInfoForOp(n.type_string());
      if (op_info) {
        *out_resource_op_kind = op_info->kind();
        return absl::OkStatus();
      }
    
      // We conservatively assume that functions will both read and write resource
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top