Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for isExternal (0.12 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

      // of constructing the table is offset by the number of queries.
      SymbolTable symbol_table(module);
      for (auto function : module.getOps<FuncOp>()) {
        if (function.isExternal())
          return errors::FailedPrecondition("External functions not supported");
    
        if (function.getName() == entry_func_id &&
            !configs.export_entry_func_to_flib) {
          entry_func.emplace(function);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

      });
    
      auto& side_effect_analysis = getAnalysis<mlir::TF::SideEffectAnalysis>();
      for (auto func : getOperation().getOps<mlir::func::FuncOp>())
        if (!func.isExternal() &&
            failed(FormClustersInFunction(
                func, side_effect_analysis.GetAnalysisForFunc(func),
                strict_clusters_)))
          return signalPassFailure();
    }
    }  // anonymous namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loadelf/ldelf.go

    				// TODO(minux): correctly handle __i686.get_pc_thunk.bx without
    				// set dupok generally. See https://golang.org/cl/5823055
    				// comment #5 for details.
    				if s != 0 && elfsym.other == 2 {
    					if !l.IsExternal(s) {
    						l.MakeSymbolUpdater(s)
    					}
    					l.SetAttrDuplicateOK(s, true)
    					l.SetAttrVisibilityHidden(s, true)
    				}
    			}
    
    		case elf.STB_LOCAL:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. tensorflow/cc/experimental/libtf/tests/function_test.cc

      args.tuple().emplace_back(TaggedValue(x));
      args.tuple().emplace_back(TaggedValue(x));
      StatusOr<TaggedValue> v = tf_function.Execute(ctx_.get(), args);
      ASSERT_TRUE(tensorflow::errors::IsInternal(v.status())) << v.status();
      ASSERT_TRUE(
          absl::StrContains(v.status().message(), "Shape and dtype of tensor"));
      ASSERT_TRUE(absl::StrContains(v.status().message(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 21:44:52 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top