Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 120 for UNIMPLEMENTED (0.53 sec)

  1. tensorflow/compiler/jit/variable_info_util.cc

          // locks we have already acquired will be released when the VariableInfo
          // objects are destroyed.
          // TODO(b/128495870) Add support for passing aliased resource variables.
          return errors::Unimplemented("Duplicate variable passed to XLA cluster");
        }
        if (variables[i]->read_only()) {
          VLOG(4) << "Acquiring reader lock for variable "
                  << reinterpret_cast<void*>(variable);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/device_executable_persistor_test.cc

                                             DefaultXlaOptions().device_type);
    
      MockXlaCompilerClient mock_client;
      EXPECT_CALL(mock_client, SerializeExecutable(_))
          .WillOnce(Return(errors::Unimplemented("Unimplemented.")));
      EXPECT_CALL(mock_client, BuildSerializedExecutable(_, _))
          .WillOnce(Return(serialized_xla_executable_));
    
      TF_ASSERT_OK_AND_ASSIGN(auto executable, BuildSampleExecutable());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  3. src/net/fd_windows.go

    		0, rsan, rsan, &lrsa, &llen, &rrsa, &rlen)
    	lsa, _ := lrsa.Sockaddr()
    	rsa, _ := rrsa.Sockaddr()
    
    	netfd.setAddr(netfd.addrFunc()(lsa), netfd.addrFunc()(rsa))
    	return netfd, nil
    }
    
    // Unimplemented functions.
    
    func (fd *netFD) dup() (*os.File, error) {
    	// TODO: Implement this, perhaps using internal/poll.DupCloseOnExec.
    	return nil, syscall.EWINDOWS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 16:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. src/runtime/sys_linux_ppc64x.s

    TEXT runtime·access(SB),$0-20
    	MOVD	R0, 0(R0) // unimplemented, only needed for android; declared in stubs_linux.go
    	MOVW	R0, ret+16(FP) // for vet
    	RET
    
    TEXT runtime·connect(SB),$0-28
    	MOVD	R0, 0(R0) // unimplemented, only needed for android; declared in stubs_linux.go
    	MOVW	R0, ret+24(FP) // for vet
    	RET
    
    TEXT runtime·socket(SB),$0-20
    	MOVD	R0, 0(R0) // unimplemented, only needed for android; declared in stubs_linux.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/stream_executor/stream_executor.cc

                                      uint64 size) override {
        // TODO(annarev): figure out if we should support memzero/memset
        // functionality by allocating on host and then copying to device.
        return tsl::errors::Unimplemented(
            "SynchronousMemZero is not supported by pluggable device.");
      }
      absl::Status SynchronousMemcpy(DeviceMemoryBase* gpu_dst,
                                     const void* host_src, uint64 size) override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json_test.go

    }
    
    func (testEncodableDuplicateTag) DeepCopyObject() runtime.Object {
    	panic("unimplemented")
    }
    
    type testEncodableTagMatchesUntaggedName struct {
    	metav1.TypeMeta `json:",inline"`
    
    	A       int
    	TaggedA int `json:"A"`
    }
    
    func (testEncodableTagMatchesUntaggedName) DeepCopyObject() runtime.Object {
    	panic("unimplemented")
    }
    
    type staticTextMarshaler int
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:55:02 UTC 2024
    - 40K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.cc

        case DT_UINT64:
          ConvertUIntElementsAttr(dense_attr, output->mutable_uint64_val(),
                                  output->mutable_tensor_content());
          break;
        default:
          return errors::Unimplemented(absl::StrCat("Unimplemented data type ",
                                                    DataTypeString(output_dtype)));
      }
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/dra/plugin/noderesources.go

    		stream, err := pluginInstance.NodeListAndWatchResources(ctx, new(drapb.NodeListAndWatchResourcesRequest))
    		if err != nil {
    			switch {
    			case status.Convert(err).Code() == codes.Unimplemented:
    				// The plugin simply doesn't provide node resources.
    				active.cancel(errors.New("plugin does not support node resource reporting"))
    			default:
    				// This is a problem, report it and retry.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/stream_executor/stream_executor_test.cc

      };
      StreamExecutor* executor = GetExecutor(0);
      TF_ASSERT_OK_AND_ASSIGN(auto stream, executor->CreateStream());
      std::function<absl::Status()> callback = []() -> absl::Status {
        return tsl::errors::Unimplemented("Unimplemented");
      };
      ASSERT_FALSE(stream->DoHostCallbackWithStatus(callback).ok());
    }
    
    TEST_F(StreamExecutorTest, DeviceDescription) {
      static const char* hardware_name = "TestName";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 19:54:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. tensorflow/cc/framework/fuzzing/cc_op_fuzz_gen.cc

        // Skip if it has default value (TODO(unda, b/249345399): add our custom
        // values)
        if (api_def_attr.has_default_value()) continue;
        // TODO(unda, b/253432797): handle unimplemented input attribute types
        if (unhandled_attr_types.find(attr.type()) != unhandled_attr_types.end()) {
          std::cout << "NOT fuzzing: " << op_info.graph_op_def.name()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 27 16:26:51 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top