Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for add_function (0.12 sec)

  1. tensorflow/compiler/jit/xla_cluster_util_test.cc

          {{{"var"},
            "VariableV2",
            {},
            {{"dtype", DT_FLOAT}, {"shape", TensorShape({})}}},
           {{"r"}, "Identity", {"var"}, {{"T", DT_FLOAT}}}});
      *fdef_lib->add_function() = make_ref_float;
    }
    
    void AddRegularFunctionFunctionDef(FunctionDefLibrary* fdef_lib) {
      Tensor seven(DT_FLOAT, {});
      seven.scalar<float>()() = 7;
      FunctionDef make_regular_float = FunctionDefHelper::Define(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      noinline.mutable_signature()->set_name("NoInlineFn");
      AddAttr("_noinline", static_cast<bool>(true), noinline.mutable_attr());
    
      FunctionDefLibrary flib;
      *flib.add_function() = compilable;
      *flib.add_function() = uncompilable;
      *flib.add_function() = noinline;
      FunctionLibraryDefinition flib_def(OpRegistry::Global(), flib);
    
      std::unique_ptr<Graph> graph(new Graph(&flib_def));
      {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph_test.cc

      FunctionDef empty_function =
          tensorflow::FunctionDefHelper::Create("empty", {}, {}, {}, {}, {});
    
      tensorflow::FunctionDefLibrary fdef;
      *(fdef.add_function()) = empty_function;
      tensorflow::FunctionLibraryDefinition flib_def(
          tensorflow::OpRegistry::Global(), fdef);
    
      OpInputList guaranteed_constants;
      NameAttrList function;
      function.set_name("empty");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:08:57 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/mlir_graph_optimization_pass_test.cc

      // so we define the `graph_` by the following `flib` in this test point
      // instead of the way we do in the Init method.
      FunctionDefLibrary flib;
      *flib.add_function() = XTimesTwo();
      FunctionLibraryDefinition flib_def(OpRegistry::Global(), flib);
      graph_ = std::make_unique<Graph>(flib_def);
    
      GraphDef original_graph_def;
      graph_->ToGraphDef(&original_graph_def);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 08:25:30 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

    }
    
    TEST(LegalizeTFTest, RecordsStreamzForNoMlirFallback) {
      FunctionDef my_func =
          tensorflow::FunctionDefHelper::Create("empty", {}, {}, {}, {}, {});
    
      tensorflow::FunctionDefLibrary fdef;
      *(fdef.add_function()) = my_func;
      tensorflow::FunctionLibraryDefinition flib_def(
          tensorflow::OpRegistry::Global(), fdef);
    
      OpInputList guaranteed_constants;
      NameAttrList function;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_xla_computations_pass_test.cc

    }
    
    TEST(EncapsulateXlaComputations, BuildXlaLaunchOp) {
      std::unique_ptr<Graph> body_graph = MakeBodyGraph();
      FunctionDefLibrary flib;
      TF_ASSERT_OK(GraphToFunctionDef(*body_graph, "launch0", flib.add_function()));
    
      FunctionLibraryDefinition flib_def(OpRegistry::Global(), flib);
    
      std::unique_ptr<Graph> graph = MakeOuterGraph(flib_def, "launch0");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 18:03:15 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/resource_operation_safety_analysis_test.cc

          /*function_name=*/name, /*in_def=*/{}, /*out_def=*/{"out: float"},
          /*attr_def*/
          {}, /*node_def=*/{FunctionDefHelper::Const("one", 1.0f)},
          /*ret_def=*/{{"out", "out:output:0"}});
      *flib_def.add_function() = std::move(func);
      return flib_def;
    }
    
    Node* MakeCall(Graph* graph, const string& callee_name, const string& node_name,
                   Status* status) {
      NodeDef call_node;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 28 16:53:59 UTC 2020
    - 18.7K bytes
    - Viewed (0)
  8. tensorflow/cc/tools/freeze_saved_model_test.cc

      SavedModelBundle saved_model_bundle;
      GraphDef graph_def;
      graph_def.mutable_versions()->set_producer(1234);
      graph_def.mutable_versions()->set_min_consumer(1234);
      *graph_def.mutable_library()->add_function() = test::function::NonZero();
      TF_ASSERT_OK(
          AddGraphDefToSavedModelBundle(graph_def, "", &saved_model_bundle));
    
      GraphDef frozen_graph_def;
      std::unordered_set<string> inputs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 13:30:31 UTC 2022
    - 21.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DIF_DETECT                         DI_FUNCTION = 0x0000000F
    	DIF_INSTALLWIZARD                  DI_FUNCTION = 0x00000010
    	DIF_DESTROYWIZARDDATA              DI_FUNCTION = 0x00000011
    	DIF_PROPERTYCHANGE                 DI_FUNCTION = 0x00000012
    	DIF_ENABLECLASS                    DI_FUNCTION = 0x00000013
    	DIF_DETECTVERIFY                   DI_FUNCTION = 0x00000014
    	DIF_INSTALLDEVICEFILES             DI_FUNCTION = 0x00000015
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/impl/KtDeclarationRendererForDebug.kt

            singleTypeParameterRenderer = KaSingleTypeParameterSymbolRenderer.WITHOUT_BOUNDS
            samConstructorRenderer = KaSamConstructorSymbolRenderer.AS_FUNCTION
            typeRenderer = KaTypeRendererForDebug.WITH_QUALIFIED_NAMES
            declarationTypeApproximator = KaRendererTypeApproximator.NO_APPROXIMATION
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 16:12:19 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top