Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 64 for UNIMPLEMENTED (0.15 sec)

  1. src/runtime/sys_linux_loong64.s

    TEXT runtime·access(SB),$0-20
    	MOVV	R0, 2(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
    	MOVV	R0, 2(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
    	MOVV	R0, 2(R0) // unimplemented, only needed for android; declared in stubs_linux.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 14.2K 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/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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. tensorflow/compiler/mlir/lite/python/saved_model_to_tfl_flatbuffer.cc

          saved_model_exported_names.begin(), saved_model_exported_names.end());
      absl::Span<std::string> exported_names(exported_names_in_vector);
    
      if (exported_names.empty()) {
        return errors::Unimplemented("Need at least one exported name.");
      }
    
      tensorflow::GraphImportConfig specs;
      specs.upgrade_legacy = true;
    
      std::vector<std::string> custom_opdefs(toco_flags.custom_opdefs().begin(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top