Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,595 for junctions (0.19 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_import.h

    // returned value are function name -> alias mappings. `function_aliases` is
    // the function alias mapping of the original function. The original function's
    // name is retrieved by looking at the "tf._original_func_name" string attribute
    // attached to a `func::FuncOp`.
    void UpdateFunctionAliases(
        absl::flat_hash_map<FunctionName, FunctionAlias>& function_aliases,
        ModuleOp module_op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-resource-args.pbtxt

      }
    }
    node {
      name: "func_call"
      op: "test_func_name"
      input: "x"
      input: "x"
      attr {
        key: "_disable_call_shape_inference"
        value {
          b: true
        }
      }
    }
    library {
      function {
        signature {
          name: "test_func_name"
          input_arg {
            name: "a_0"
            type: DT_RESOURCE
          }
          input_arg {
            name: "a_1"
            type: DT_RESOURCE
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.h

    // are stored. This value will be fed to the "file_prefix" tensor to restore the
    // variables.
    // * `function_aliases` maps the actual function name to the function alias.
    // This associates the quantized functions to the original functions' aliases.
    // If there were no function aliases in the input model, this should be empty.
    // * `asset_file_defs` include information about the assets, if any, that are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. testing/architecture-test/src/test/java/org/gradle/architecture/test/PublicApiCorrectnessTest.java

    import com.tngtech.archunit.core.domain.JavaClass;
    import com.tngtech.archunit.junit.AnalyzeClasses;
    import com.tngtech.archunit.junit.ArchTest;
    import com.tngtech.archunit.lang.ArchRule;
    import kotlin.Pair;
    import kotlin.jvm.functions.Function1;
    import kotlin.reflect.KClass;
    import kotlin.reflect.KProperty;
    import org.gradle.api.NamedDomainObjectCollection;
    import org.gradle.api.Plugin;
    import org.gradle.api.Task;
    import org.gradle.api.specs.Spec;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/unfreeze_constants.cc

      }
    
      return session_init_op;
    }
    
    // Create the initializer function right after the SessionInitializer op.
    // Returns the newly created initializer function. The initializer function's
    // initializer_type is set to "restore_op" since it essentially serves as a
    // variable restoration function.
    func::FuncOp CreateInitializerFunc(ModuleOp module_op) {
      SessionInitializerOp session_init_op =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 16 15:04:53 UTC 2023
    - 14K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api.go

    	// function scopes which in turn enclose statement and function literal scopes.
    	// Note that even though package-level functions are declared in the package
    	// scope, the function scopes are embedded in the file scope of the file
    	// containing the function declaration.
    	//
    	// The Scope of a function contains the declarations of any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/encapsulate_subgraphs_pass.h

    // 'group_attribute', splits those subgraphs into functions, and replaces
    // the originals with function calls.
    //
    // 'group_attribute' must be a string valued-attribute that names the new
    // functions to introduce.
    //
    // If 'rewrite_subgraph_fn' is set, it is applied to each subgraph before
    // function conversion.
    //
    // If 'reuse_existing_functions' is set, use an existing function with the
    // same name, if any.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 12 03:59:36 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/function-resource-args-handle-info.mlir

    Tres Popp <******@****.***> 1648211118 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:28:56 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    			tSign, argOk := t.(*types.Signature)
    			// Argument should be a function
    			if !argOk {
    				pass.ReportRangef(expr, "argument to Fuzz must be a function")
    				return false
    			}
    			// ff Argument function should not return
    			if tSign.Results().Len() != 0 {
    				pass.ReportRangef(expr, "fuzz target must not return any value")
    			}
    			// ff Argument function should have 1 or more argument
    			if tSign.Params().Len() == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/hash/Hashing.java

        checkArgument(!list.isEmpty(), "number of hash functions (%s) must be > 0", list.size());
        return new ConcatenatedHashFunction(list.toArray(new HashFunction[0]));
      }
    
      private static final class ConcatenatedHashFunction extends AbstractCompositeHashFunction {
    
        private ConcatenatedHashFunction(HashFunction... functions) {
          super(functions);
          for (HashFunction function : functions) {
            checkArgument(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 32.3K bytes
    - Viewed (0)
Back to top