Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 137 for UNIMPLEMENTED (0.19 sec)

  1. tensorflow/c/eager/c_api_unified_experimental_graph.cc

        return absl::OkStatus();
      }
    
      Status RegisterFunction(AbstractFunction* func) override {
        return errors::Unimplemented(
            "Registering graph functions has not been implemented yet.");
      }
    
      Status RemoveFunction(const string& func) override {
        return errors::Unimplemented(
            "GraphContext::RemoveFunction has not been implemented yet.");
      }
      // For LLVM style RTTI.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/internal/saved_model_api.cc

      std::string saved_model_dir(dirname);
      std::unique_ptr<tensorflow::SavedModelAPI> result;
    
      if (tensorflow::unwrap(ctx)->UsesTFRT()) {
        status->status = tensorflow::errors::Unimplemented(
            "TFRT SavedModel implementation will be added in the future");
      } else {
        std::unique_ptr<tensorflow::TFSavedModelAPI> saved_model;
        status->status = tensorflow::TFSavedModelAPI::Load(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 04 00:45:47 UTC 2020
    - 4.7K bytes
    - Viewed (0)
  3. test/fixedbugs/issue9608.go

    // This has to be done as a package rather than as a file,
    // because run.go runs files with 'go run', which passes the
    // -complete flag to compiler, causing it to complain about
    // the intentionally unimplemented function fail.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 06 19:05:47 UTC 2015
    - 478 bytes
    - Viewed (0)
  4. tensorflow/cc/experimental/libtf/function.cc

        for (const auto& t : signature.tuple()) {
          if (t.type() != TaggedValue::Type::TENSOR_SPEC) {
            break;
          }
        }
        return ::tensorflow::OkStatus();
      }
      return tensorflow::errors::Unimplemented(
          "Only functions with inputs/outputs containing a single tensor or a tuple"
          " of tensors are supported right now.");
    }
    
    Status VerifySupportedArgs(TaggedValue args) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/ops/gen/cpp/views/attr_view.cc

        case AttrValue::kList:
          if (attr_.full_type() == "list(string)" &&
              attr_value.list().s_size() == 0) {
            return "{}";
          }
          LOG(WARNING) << "Unimplemented: default value of list-typed attribute.";
          return "/* UNIMPLEMENTED */";
        case AttrValue::kShape:
        case AttrValue::kTensor:
        case AttrValue::kFunc:
        case AttrValue::kPlaceholder:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

          continue;
        }
        if (mlir::isa<mlir::AffineMapAttr>(attr)) {
          // AffineMapAttr is not implemented.
          return errors::Unimplemented("AffineMap attribute (needed for '",
                                       name_strref, "') unimplemented");
        }
        TF_RETURN_IF_ERROR(
            llvm::TypeSwitch<mlir::Attribute, Status>(attr)
                .Case<mlir::BoolAttr, mlir::IntegerAttr, mlir::FloatAttr,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. test/fixedbugs/issue9608.dir/issue9608.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func fail() // unimplemented, to test dead code elimination
    
    // Test dead code elimination in if statements
    func init() {
    	if false {
    		fail()
    	}
    	if 0 == 1 {
    		fail()
    	}
    }
    
    // Test dead code elimination in ordinary switch statements
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 05:12:39 UTC 2016
    - 1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/s390x/asm.go

    		ldr.Errorf(s, "unimplemented S390x relocation: %v", r.Type()-objabi.ElfRelocOffset)
    		return false
    
    	case objabi.ElfRelocOffset + objabi.RelocType(elf.R_390_GLOB_DAT):
    		ldr.Errorf(s, "unimplemented S390x relocation: %v", r.Type()-objabi.ElfRelocOffset)
    		return false
    
    	case objabi.ElfRelocOffset + objabi.RelocType(elf.R_390_JMP_SLOT):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/convert_attr.cc

            TF_ASSIGN_OR_RETURN(auto attr, ConvertTensorProto(item, builder));
            attrs.push_back(attr);
          }
          if (!value.list().func().empty()) {
            return tensorflow::errors::Unimplemented(
                absl::StrCat("Attribute ", value.DebugString()));
          }
          return builder->getArrayAttr(llvm::ArrayRef(attrs.begin(), attrs.end()));
        }
        case AttrValue::VALUE_NOT_SET:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. pkg/test/echo/proto/echo_grpc.pb.go

    	return nil, status.Errorf(codes.Unimplemented, "method Echo not implemented")
    }
    func (UnimplementedEchoTestServiceServer) ForwardEcho(context.Context, *ForwardEchoRequest) (*ForwardEchoResponse, error) {
    	return nil, status.Errorf(codes.Unimplemented, "method ForwardEcho not implemented")
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 26 01:14:28 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top