Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for UNIMPLEMENTED (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tensorflow/compiler/jit/rearrange_function_argument_pass_test.cc

            *fbody = new_fbody.get();
            fbodies.push_back(std::move(new_fbody));
            return absl::OkStatus();
          },
          g.get(), &fld);
      EXPECT_EQ(status.code(), error::UNIMPLEMENTED);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/JavaObjectSerializationCodecTest.kt

                assertThat(
                    it.value,
                    equalTo<Any>("42")
                )
            }
        }
    
        @Test
        fun `unimplemented serialization feature problems link to the Java serialization section`() {
            val exception = assertThrows(UnsupportedOperationException::class.java) {
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_device_context.cc

                                                  Device* device,
                                                  Tensor* output_tensor,
                                                  StatusCallback done) const {
      done(errors::Unimplemented("XLA->XLA same-device copies not implemented."));
    }
    
    void XlaDeviceContext::CopyCPUTensorToDevice(const Tensor* cpu_tensor,
                                                 Device* device,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. pilot/pkg/leaderelection/leaderelection_test.go

    	return true
    }
    
    func (w *fakeDefaultWatcher) GetDefault() string {
    	return w.defaultRevision
    }
    
    func (w *fakeDefaultWatcher) AddHandler(handler revisions.DefaultHandler) {
    	panic("unimplemented")
    }
    
    func TestLeaderElection(t *testing.T) {
    	client := fake.NewSimpleClientset()
    	watcher := &fakeDefaultWatcher{}
    	// First pod becomes the leader
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    	case AddrPostIndex:
    		return fmt.Sprintf("[%s],%s", R, X)
    	case AddrPostReg:
    		post := Reg(X0) + Reg(m.imm)
    		postR := post.String()
    		return fmt.Sprintf("[%s], %s", R, postR)
    	}
    	return fmt.Sprintf("unimplemented!")
    }
    
    // A MemExtend is a memory reference made up of a base R and index expression X.
    // The effective memory address is R or R+X depending on Index, Extend and Amount.
    type MemExtend struct {
    	Base   RegSP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

        ImmediateExecutionContext* context, std::unique_ptr<TFSavedModelAPI>* out) {
      // TODO(bmzhao): Add support for loading a TF1 SavedModel.
      if (tags) {
        return errors::Unimplemented(
            "Loading saved models with explicit tags will be supported in the "
            "future");
      }
    
      SavedModelV2Bundle bundle;
      TF_RETURN_IF_ERROR(SavedModelV2Bundle::Load(directory, &bundle));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_platform_info.cc

        // the situation for us.
        const Status& status = compiler_for_platform.status();
        if (status.code() == error::NOT_FOUND) {
          return errors::Unimplemented("Could not find compiler for platform ",
                                       platform.value()->Name(), ": ",
                                       status.ToString());
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 17:23:27 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top