Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for add_function (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/callables/KtSamConstructorSymbolRenderer.kt

                symbol: KaSamConstructorSymbol,
                declarationRenderer: KaDeclarationRenderer,
                printer: PrettyPrinter,
            ) {
                printer {}
            }
        }
    
        public object AS_FUNCTION : KaSamConstructorSymbolRenderer {
            override fun renderSymbol(
                analysisSession: KaSession,
                symbol: KaSamConstructorSymbol,
                declarationRenderer: KaDeclarationRenderer,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    		}
    		symbolizeOneMapping(m, locs, f, addFunction)
    		f.Close()
    	}
    
    	if missingBinaries {
    		ui.PrintErr("Some binary filenames not available. Symbolization may be incomplete.\n" +
    			"Try setting PPROF_BINARY_PATH to the search path for local binaries.")
    	}
    	return nil
    }
    
    func symbolizeOneMapping(m *profile.Mapping, locs []*profile.Location, obj plugin.ObjFile, addFunction func(*profile.Function) *profile.Function) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativePreCompiledHeaderIntegrationTest.groovy

        }
    
        def renameSourceFile(SourceFile sourceFile, String name) {
            return new SourceFile(sourceFile.path, name, sourceFile.content)
        }
    
        def addFunction(SourceFile sourceFile) {
            return new SourceFile(sourceFile.path, sourceFile.name, sourceFile.content + """
                // Extra function to ensure library has different size
                int otherFunction() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  10. tensorflow/c/eager/c_api_test.cc

          "    }",
          &def));
      return def.SerializeAsString();
    }
    
    // a + a
    string AddFunction() {
      tensorflow::FunctionDef def;
      CHECK(tensorflow::protobuf::TextFormat::ParseFromString(
          "    signature {"
          "      name: 'AddFunction'"
          "      input_arg {"
          "        name: 'a'"
          "        type: DT_FLOAT"
          "      }"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
Back to top