Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for op_nodes (0.6 sec)

  1. tensorflow/c/c_api_function.cc

        std::vector<const Node*>* body_nodes)
        TF_EXCLUSIVE_LOCKS_REQUIRED(fn_body->mu) {
      if (num_opers == -1) {
        for (const Node* node : fn_body->graph.op_nodes()) {
          const auto& iter = input_nodes.find(node);
          if (iter == input_nodes.end()) {
            // This node is not referenced in inputs. Add it to the body.
            body_nodes->push_back(node);
          } else {
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 13.6K bytes
    - Viewed (2)
  2. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt

    import org.objectweb.asm.ClassReader.SKIP_FRAMES
    import org.objectweb.asm.FieldVisitor
    import org.objectweb.asm.Opcodes.ACC_ABSTRACT
    import org.objectweb.asm.Opcodes.ACC_PUBLIC
    import org.objectweb.asm.Opcodes.ACC_STATIC
    import org.objectweb.asm.Opcodes.ACC_SYNTHETIC
    import org.objectweb.asm.Opcodes.ACC_VARARGS
    import org.objectweb.asm.Type
    import org.objectweb.asm.TypePath
    import org.objectweb.asm.signature.SignatureReader
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Tue Feb 06 19:56:10 GMT 2024
    - 20.8K bytes
    - Viewed (0)
  3. doc/asm.html

    <code>softfloat</code>) is made available to assembly code by predefining either
    <code>GOMIPS64_hardfloat</code> or <code>GOMIPS64_softfloat</code>.
    </p>
    
    <h3 id="unsupported_opcodes">Unsupported opcodes</h3>
    
    <p>
    The assemblers are designed to support the compiler so not all hardware instructions
    are defined for all architectures: if the compiler doesn't generate it, it might not be there.
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/arch/arch.go

    	for i, s := range obj.Anames {
    		instructions[s] = obj.As(i)
    	}
    	for i, s := range ppc64.Anames {
    		if obj.As(i) >= obj.A_ARCHSPECIFIC {
    			instructions[s] = obj.As(i) + obj.ABasePPC64
    		}
    	}
    	// The opcodes generated by x/arch's ppc64map are listed in
    	// a separate slice, add them too.
    	for i, s := range ppc64.GenAnames {
    		instructions[s] = obj.As(i) + ppc64.AFIRSTGEN
    	}
    	// Annoying aliases.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Mar 21 06:51:28 GMT 2023
    - 21.3K bytes
    - Viewed (0)
  5. ChangeLog.md

    - [`KT-62147`](https://youtrack.jetbrains.com/issue/KT-62147) [Kotlin/Wasm] Nothing typed when expression cause a backend error
    - [`KT-59720`](https://youtrack.jetbrains.com/issue/KT-59720) K/Wasm: update to final opcodes
    - [`KT-60834`](https://youtrack.jetbrains.com/issue/KT-60834) K/Wasm: investigate consequences of stopping using `br_on_cast_fail`
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Dec 21 17:48:12 GMT 2023
    - 268.7K bytes
    - Viewed (1)
Back to top